]> pere.pagekite.me Git - homepage.git/blob - blog/tags/debian edu/debian edu.rss
06d7fbcbb6f606b419859a98142994cdc4b6d4db
[homepage.git] / blog / tags / debian edu / debian edu.rss
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
3 <channel>
4 <title>Petter Reinholdtsen - Entries tagged debian edu</title>
5 <description>Entries tagged debian edu</description>
6 <link>http://people.skolelinux.org/pere/blog/</link>
7
8
9 <item>
10 <title>Speeding up the Debian installer using eatmydata and dpkg-divert</title>
11 <link>http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</guid>
13 <pubDate>Tue, 16 Sep 2014 14:00:00 +0200</pubDate>
14 <description>&lt;p&gt;The &lt;a href=&quot;https://www.debian.org/&quot;&gt;Debian&lt;/a&gt; installer could be
15 a lot quicker. When we install more than 2000 packages in
16 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; using
17 tasksel in the installer, unpacking the binary packages take forever.
18 A part of the slow I/O issue was discussed in
19 &lt;a href=&quot;https://bugs.debian.org/613428&quot;&gt;bug #613428&lt;/a&gt; about too
20 much file system sync-ing done by dpkg, which is the package
21 responsible for unpacking the binary packages. Other parts (like code
22 executed by postinst scripts) might also sync to disk during
23 installation. All this sync-ing to disk do not really make sense to
24 me. If the machine crash half-way through, I start over, I do not try
25 to salvage the half installed system. So the failure sync-ing is
26 supposed to protect against, hardware or system crash, is not really
27 relevant while the installer is running.&lt;/p&gt;
28
29 &lt;p&gt;A few days ago, I thought of a way to get rid of all the file
30 system sync()-ing in a fairly non-intrusive way, without the need to
31 change the code in several packages. The idea is not new, but I have
32 not heard anyone propose the approach using dpkg-divert before. It
33 depend on the small and clever package
34 &lt;a href=&quot;https://packages.qa.debian.org/eatmydata&quot;&gt;eatmydata&lt;/a&gt;, which
35 uses LD_PRELOAD to replace the system functions for syncing data to
36 disk with functions doing nothing, thus allowing programs to live
37 dangerous while speeding up disk I/O significantly. Instead of
38 modifying the implementation of dpkg, apt and tasksel (which are the
39 packages responsible for selecting, fetching and installing packages),
40 it occurred to me that we could just divert the programs away, replace
41 them with a simple shell wrapper calling
42 &quot;eatmydata&amp;nbsp;$program&amp;nbsp;$@&quot;, to get the same effect.
43 Two days ago I decided to test the idea, and wrapped up a simple
44 implementation for the Debian Edu udeb.&lt;/p&gt;
45
46 &lt;p&gt;The effect was stunning. In my first test it reduced the running
47 time of the pkgsel step (installing tasks) from 64 to less than 44
48 minutes (20 minutes shaved off the installation) on an old Dell
49 Latitude D505 machine. I am not quite sure what the optimised time
50 would have been, as I messed up the testing a bit, causing the debconf
51 priority to get low enough for two questions to pop up during
52 installation. As soon as I saw the questions I moved the installation
53 along, but do not know how long the question were holding up the
54 installation. I did some more measurements using Debian Edu Jessie,
55 and got these results. The time measured is the time stamp in
56 /var/log/syslog between the &quot;pkgsel: starting tasksel&quot; and the
57 &quot;pkgsel: finishing up&quot; lines, if you want to do the same measurement
58 yourself. In Debian Edu, the tasksel dialog do not show up, and the
59 timing thus do not depend on how quickly the user handle the tasksel
60 dialog.&lt;/p&gt;
61
62 &lt;p&gt;&lt;table&gt;
63
64 &lt;tr&gt;
65 &lt;th&gt;Machine/setup&lt;/th&gt;
66 &lt;th&gt;Original tasksel&lt;/th&gt;
67 &lt;th&gt;Optimised tasksel&lt;/th&gt;
68 &lt;th&gt;Reduction&lt;/th&gt;
69 &lt;/tr&gt;
70
71 &lt;tr&gt;
72 &lt;td&gt;Latitude D505 Main+LTSP LXDE&lt;/td&gt;
73 &lt;td&gt;64 min (07:46-08:50)&lt;/td&gt;
74 &lt;td&gt;&lt;44 min (11:27-12:11)&lt;/td&gt;
75 &lt;td&gt;&gt;20 min 18%&lt;/td&gt;
76 &lt;/tr&gt;
77
78 &lt;tr&gt;
79 &lt;td&gt;Latitude D505 Roaming LXDE&lt;/td&gt;
80 &lt;td&gt;57 min (08:48-09:45)&lt;/td&gt;
81 &lt;td&gt;34 min (07:43-08:17)&lt;/td&gt;
82 &lt;td&gt;23 min 40%&lt;/td&gt;
83 &lt;/tr&gt;
84
85 &lt;tr&gt;
86 &lt;td&gt;Latitude D505 Minimal&lt;/td&gt;
87 &lt;td&gt;22 min (10:37-10:59)&lt;/td&gt;
88 &lt;td&gt;11 min (11:16-11:27)&lt;/td&gt;
89 &lt;td&gt;11 min 50%&lt;/td&gt;
90 &lt;/tr&gt;
91
92 &lt;tr&gt;
93 &lt;td&gt;Thinkpad X200 Minimal&lt;/td&gt;
94 &lt;td&gt;6 min (08:19-08:25)&lt;/td&gt;
95 &lt;td&gt;4 min (08:04-08:08)&lt;/td&gt;
96 &lt;td&gt;2 min 33%&lt;/td&gt;
97 &lt;/tr&gt;
98
99 &lt;tr&gt;
100 &lt;td&gt;Thinkpad X200 Roaming KDE&lt;/td&gt;
101 &lt;td&gt;19 min (09:21-09:40)&lt;/td&gt;
102 &lt;td&gt;15 min (10:25-10:40)&lt;/td&gt;
103 &lt;td&gt;4 min 21%&lt;/td&gt;
104 &lt;/tr&gt;
105
106 &lt;/table&gt;&lt;/p&gt;
107
108 &lt;p&gt;The test is done using a netinst ISO on a USB stick, so some of the
109 time is spent downloading packages. The connection to the Internet
110 was 100Mbit/s during testing, so downloading should not be a
111 significant factor in the measurement. Download typically took a few
112 seconds to a few minutes, depending on the amount of packages being
113 installed.&lt;/p&gt;
114
115 &lt;p&gt;The speedup is implemented by using two hooks in
116 &lt;a href=&quot;https://www.debian.org/devel/debian-installer/&quot;&gt;Debian
117 Installer&lt;/a&gt;, the pre-pkgsel.d hook to set up the diverts, and the
118 finish-install.d hook to remove the divert at the end of the
119 installation. I picked the pre-pkgsel.d hook instead of the
120 post-base-installer.d hook because I test using an ISO without the
121 eatmydata package included, and the post-base-installer.d hook in
122 Debian Edu can only operate on packages included in the ISO. The
123 negative effect of this is that I am unable to activate this
124 optimization for the kernel installation step in d-i. If the code is
125 moved to the post-base-installer.d hook, the speedup would be larger
126 for the entire installation.&lt;/p&gt;
127
128 &lt;p&gt;I&#39;ve implemented this in the
129 &lt;a href=&quot;https://packages.qa.debian.org/debian-edu-install&quot;&gt;debian-edu-install&lt;/a&gt;
130 git repository, and plan to provide the optimization as part of the
131 Debian Edu installation. If you want to test this yourself, you can
132 create two files in the installer (or in an udeb). One shell script
133 need do go into /usr/lib/pre-pkgsel.d/, with content like this:&lt;/p&gt;
134
135 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
136 #!/bin/sh
137 set -e
138 . /usr/share/debconf/confmodule
139 info() {
140 logger -t my-pkgsel &quot;info: $*&quot;
141 }
142 error() {
143 logger -t my-pkgsel &quot;error: $*&quot;
144 }
145 override_install() {
146 apt-install eatmydata || true
147 if [ -x /target/usr/bin/eatmydata ] ; then
148 for bin in dpkg apt-get aptitude tasksel ; do
149 file=/usr/bin/$bin
150 # Test that the file exist and have not been diverted already.
151 if [ -f /target$file ] ; then
152 info &quot;diverting $file using eatmydata&quot;
153 printf &quot;#!/bin/sh\neatmydata $bin.distrib \&quot;\$@\&quot;\n&quot; \
154 &gt; /target$file.edu
155 chmod 755 /target$file.edu
156 in-target dpkg-divert --package debian-edu-config \
157 --rename --quiet --add $file
158 ln -sf ./$bin.edu /target$file
159 else
160 error &quot;unable to divert $file, as it is missing.&quot;
161 fi
162 done
163 else
164 error &quot;unable to find /usr/bin/eatmydata after installing the eatmydata pacage&quot;
165 fi
166 }
167
168 override_install
169 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
170
171 &lt;p&gt;To clean up, another shell script should go into
172 /usr/lib/finish-install.d/ with code like this:
173
174 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
175 #! /bin/sh -e
176 . /usr/share/debconf/confmodule
177 error() {
178 logger -t my-finish-install &quot;error: $@&quot;
179 }
180 remove_install_override() {
181 for bin in dpkg apt-get aptitude tasksel ; do
182 file=/usr/bin/$bin
183 if [ -x /target$file.edu ] ; then
184 rm /target$file
185 in-target dpkg-divert --package debian-edu-config \
186 --rename --quiet --remove $file
187 rm /target$file.edu
188 else
189 error &quot;Missing divert for $file.&quot;
190 fi
191 done
192 sync # Flush file buffers before continuing
193 }
194
195 remove_install_override
196 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
197
198 &lt;p&gt;In Debian Edu, I placed both code fragments in a separate script
199 edu-eatmydata-install and call it from the pre-pkgsel.d and
200 finish-install.d scripts.&lt;/p&gt;
201
202 &lt;p&gt;By now you might ask if this change should get into the normal
203 Debian installer too? I suspect it should, but am not sure the
204 current debian-installer coordinators find it useful enough. It also
205 depend on the side effects of the change. I&#39;m not aware of any, but I
206 guess we will see if the change is safe after some more testing.
207 Perhaps there is some package in Debian depending on sync() and
208 fsync() having effect? Perhaps it should go into its own udeb, to
209 allow those of us wanting to enable it to do so without affecting
210 everyone.&lt;/p&gt;
211
212 &lt;p&gt;Update 2014-09-24: Since a few days ago, enabling this optimization
213 will break installation of all programs using gnutls because of
214 &lt;a href=&quot;https://bugs.debian.org/702711&quot;&gt;bug #702711. An updated
215 eatmydata package in Debian will solve it.&lt;/p&gt;
216 </description>
217 </item>
218
219 <item>
220 <title>Debian Edu interview: Bernd Zeitzen</title>
221 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</link>
222 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</guid>
223 <pubDate>Thu, 31 Jul 2014 08:30:00 +0200</pubDate>
224 <description>&lt;p&gt;The complete and free “out of the box” software solution for
225 schools, &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
226 Skolelinux&lt;/a&gt;, is used quite a lot in Germany, and one of the people
227 involved is Bernd Zeitzen, who show up on the project mailing lists
228 from time to time with interesting questions and tips on how to adjust
229 the setup. I managed to interview him this summer.&lt;/p&gt;
230
231 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
232
233 &lt;p&gt;My name is Bernd Zeitzen and I&#39;m married with Hedda, a self
234 employed physiotherapist. My former profession is tool maker, but I
235 haven&#39;t worked for 30 years in this job. 30 years ago I started to
236 support my wife and become her officeworker and a few years later the
237 administrator for a small computer network, today based on Ubuntu
238 Server (Samba, OpenVPN). For her daily work she has to use Windows
239 Desktops because the software she needs to organize her business only
240 works with Windows . :-(&lt;/p&gt;
241
242 &lt;p&gt;In 1988 we started with one PC and DOS, then I learned to use
243 Windows 98, 2000, XP, …, 8, Ubuntu, MacOSX. Today we are running a
244 Linux server with 6 Windows clients and 10 persons (teacher of
245 children with special needs, speech therapist, occupational therapist,
246 psychologist and officeworkers) using our Samba shares via OpenVPN to
247 work with the documentations of our patients.&lt;/p&gt;
248
249 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
250 project?&lt;/strong&gt;&lt;/p&gt;
251
252 &lt;p&gt;Two years ago a friend of mine asked me, if I want to get a job in
253 his school (&lt;a href=&quot;http://www.gymnasium-harsewinkel.de/&quot;&gt;Gymnasium
254 Harsewinkel&lt;/a&gt;). They started with Skolelinux / Debian Edu and they
255 were looking for people to give support to the teachers using the
256 software and the network and teaching the pupils increasing their
257 computer skills in optional lessons. I&#39;m spending 4-6 hours a week
258 with this job.&lt;/p&gt;
259
260 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
261 Edu?&lt;/strong&gt;&lt;/p&gt;
262
263 &lt;p&gt;The independence.&lt;/p&gt;
264
265 &lt;p&gt;First: Every person is allowed to use, share and develop the
266 software. Even if you are poor, you are allowed to use the software
267 included in Skolelinux/Debian Edu and all the other Free Software.&lt;/p&gt;
268
269 &lt;p&gt;Second: The software runs on old machines and this gives us the
270 possibility to recycle computers, weeded out from offices. The
271 servers and desktops are running for more than two years and they are
272 working reliable. &lt;/p&gt;
273
274 &lt;p&gt;We have two servers (one tjener and one terminal server), 45
275 workstations in three classrooms and seven laptops as a mobile
276 solution for all classrooms. These machines are all booting from the
277 terminal server. In the moment we are installing 30 laptops as mobile
278 workstations. Then the pupils have the possibility to work with these
279 machines in their classrooms. Internet access is realized by a WLAN
280 router, connected to the schools network. This is all done without a
281 dedicated system administrator or a computer science teacher.&lt;/p&gt;
282
283 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
284 Edu?&lt;/strong&gt;&lt;/p&gt;
285
286 &lt;p&gt;Teachers and pupils are Windows users. &amp;lt;Irony on&amp;gt; And Linux
287 isn&#39;t cool. It&#39;s software for freaks using the command line. &amp;lt;Irony
288 off&amp;gt; They don&#39;t realize the stability of the system. &lt;/p&gt;
289
290 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
291
292 &lt;p&gt;Firefox, Thunderbird, LibreOffice, Ubuntu Server 12.04 (Samba,
293 Apache, MySQL, Joomla!, … and Skolelinux / Debian Edu)&lt;/p&gt;
294
295 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
296 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
297
298 &lt;p&gt;In Germany we have the situation: every school is free to decide
299 which software they want to use. This decision is influenced by
300 teachers who learned to use Windows and MS Office. They buy a PC with
301 Windows preinstalled and an additional testing version of MS
302 Office. They don&#39;t know about the possibility to use Free Software
303 instead. Another problem are the publisher of school books. They
304 develop their software, added to the school books, for Windows.&lt;/p&gt;
305 </description>
306 </item>
307
308 <item>
309 <title>From English wiki to translated PDF and epub via Docbook</title>
310 <link>http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</link>
311 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</guid>
312 <pubDate>Tue, 17 Jun 2014 11:30:00 +0200</pubDate>
313 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
314 project&lt;/a&gt; provide an instruction manual for teachers, system
315 administrators and other users that contain useful tips for setting up
316 and maintaining a Debian Edu installation. This text is about how the
317 text processing of this manual is handled in the project.&lt;/p&gt;
318
319 &lt;p&gt;One goal of the project is to provide information in the native
320 language of its users, and for this we need to handle translations.
321 But we also want to make sure each language contain the same
322 information, so for this we need a good way to keep the translations
323 in sync. And we want it to be easy for our users to improve the
324 documentation, avoiding the need to learn special formats or tools to
325 contribute, and the obvious way to do this is to make it possible to
326 edit the documentation using a web browser. We also want it to be
327 easy for translators to keep the translation up to date, and give them
328 help in figuring out what need to be translated. Here is the list of
329 tools and the process we have found trying to reach all these
330 goals.&lt;/p&gt;
331
332 &lt;p&gt;We maintain the authoritative source of our manual in the
333 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;Debian
334 wiki&lt;/a&gt;, as several wiki pages written in English. It consist of one
335 front page with references to the different chapters, several pages
336 for each chapter, and finally one &quot;collection page&quot; gluing all the
337 chapters together into one large web page (aka
338 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/AllInOne&quot;&gt;the
339 AllInOne page&lt;/a&gt;). The AllInOne page is the one used for further
340 processing and translations. Thanks to the fact that the
341 &lt;a href=&quot;http://moinmo.in/&quot;&gt;MoinMoin&lt;/a&gt; installation on
342 wiki.debian.org support exporting pages in
343 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;the Docbook format&lt;/a&gt;, we can fetch
344 the list of pages to export using the raw version of the AllInOne
345 page, loop over each of them to generate a Docbook XML version of the
346 manual. This process also download images and transform image
347 references to use the locally downloaded images. The generated
348 Docbook XML files are slightly broken, so some post-processing is done
349 using the &lt;tt&gt;documentation/scripts/get_manual&lt;/tt&gt; program, and the
350 result is a nice Docbook XML file (debian-edu-wheezy-manual.xml) and
351 a handfull of images. The XML file can now be used to generate PDF, HTML
352 and epub versions of the English manual. This is the basic step of
353 our process, making PDF (using dblatex), HTML (using xsltproc) and
354 epub (using dbtoepub) version from Docbook XML, and the resulting files
355 are placed in the debian-edu-doc-en binary package.&lt;/p&gt;
356
357 &lt;p&gt;But English documentation is not enough for us. We want translated
358 documentation too, and we want to make it easy for translators to
359 track the English original. For this we use the
360 &lt;a href=&quot;http://packages.qa.debian.org/p/poxml.html&quot;&gt;poxml&lt;/a&gt; package,
361 which allow us to transform the English Docbook XML file into a
362 translation file (a .pot file), usable with the normal gettext based
363 translation tools used by those translating free software. The pot
364 file is used to create and maintain translation files (several .po
365 files), which the translations update with the native language
366 translations of all titles, paragraphs and blocks of text in the
367 original. The next step is combining the original English Docbook XML
368 and the translation file (say debian-edu-wheezy-manual.nb.po), to
369 create a translated Docbook XML file (in this case
370 debian-edu-wheezy-manual.nb.xml). This translated (or partly
371 translated, if the translation is not complete) Docbook XML file can
372 then be used like the original to create a PDF, HTML and epub version
373 of the documentation.&lt;/p&gt;
374
375 &lt;p&gt;The translators use different tools to edit the .po files. We
376 recommend using
377 &lt;a href=&quot;http://www.kde.org/applications/development/lokalize/&quot;&gt;lokalize&lt;/a&gt;,
378 while some use emacs and vi, others can use web based editors like
379 &lt;a href=&quot;http://pootle.translatehouse.org/&quot;&gt;Poodle&lt;/a&gt; or
380 &lt;a href=&quot;https://www.transifex.com/&quot;&gt;Transifex&lt;/a&gt;. All we care about
381 is where the .po file end up, in our git repository. Updated
382 translations can either be committed directly to git, or submitted as
383 &lt;a href=&quot;https://bugs.debian.org/src:debian-edu-doc&quot;&gt;bug reports
384 against the debian-edu-doc package&lt;/a&gt;.&lt;/p&gt;
385
386 &lt;p&gt;One challenge is images, which both might need to be translated (if
387 they show translated user applications), and are needed in different
388 formats when creating PDF and HTML versions (epub is a HTML version in
389 this regard). For this we transform the original PNG images to the
390 needed density and format during build, and have a way to provide
391 translated images by storing translated versions in
392 images/$LANGUAGECODE/. I am a bit unsure about the details here. The
393 package maintainers know more.&lt;/p&gt;
394
395 &lt;p&gt;If you wonder what the result look like, we provide
396 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/&quot;&gt;the content
397 of the documentation packages on the web&lt;/a&gt;. See for example the
398 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/it/debian-edu-wheezy-manual.pdf&quot;&gt;Italian
399 PDF version&lt;/a&gt; or the
400 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/de/debian-edu-wheezy-manual.html&quot;&gt;German
401 HTML version&lt;/a&gt;. We do not yet build the epub version by default,
402 but perhaps it will be done in the future.&lt;/p&gt;
403
404 &lt;p&gt;To learn more, check out
405 &lt;a href=&quot;http://packages.qa.debian.org/d/debian-edu-doc.html&quot;&gt;the
406 debian-edu-doc package&lt;/a&gt;,
407 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;the
408 manual on the wiki&lt;/a&gt; and
409 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/Translations&quot;&gt;the
410 translation instructions&lt;/a&gt; in the manual.&lt;/p&gt;
411 </description>
412 </item>
413
414 <item>
415 <title>Debian Edu interview: Roger Marsal</title>
416 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</link>
417 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</guid>
418 <pubDate>Sun, 30 Mar 2014 11:40:00 +0200</pubDate>
419 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
420 keep gaining new users. Some weeks ago, a person showed up on IRC,
421 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt;, with a
422 wish to contribute, and I managed to get a interview with this great
423 contributor Roger Marsal to learn more about his background.&lt;/p&gt;
424
425 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
426
427 &lt;p&gt;My name is Roger Marsal, I&#39;m 27 years old (1986 generation) and I
428 live in Barcelona, Spain. I&#39;ve got a strong business background and I
429 work as a patrimony manager and as a real estate agent. Additionally,
430 I&#39;ve co-founded a British based tech company that is nowadays on the
431 last development phase of a new social networking concept.&lt;/p&gt;
432
433 &lt;p&gt;I&#39;m a Linux enthusiast that started its journey with Ubuntu four years
434 ago and have recently switched to Debian seeking rock solid stability
435 and as a necessary step to gain expertise.&lt;/p&gt;
436
437 &lt;p&gt;In a nutshell, I spend my days working and learning as much as I
438 can to face both my job, entrepreneur project and feed my Linux
439 hunger.&lt;/p&gt;
440
441 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
442 project?&lt;/strong&gt;&lt;/p&gt;
443
444 &lt;p&gt;I discovered the &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP&lt;/a&gt; advantages
445 with &quot;Ubuntu 12.04 alternate install&quot; and after a year of use I
446 started looking for an alternative. Even though I highly value and
447 respect the Ubuntu project, I thought it was necessary for me to
448 change to a more robust and stable alternative. As far as I was using
449 Debian on my personal laptop I thought it would be fine to install
450 Debian and configure an LTSP server myself. Surprised, I discovered
451 that the Debian project also supported a kind of Edubuntu equivalent,
452 and after having some pain I obtained a Debian Edu network up and
453 running. I just loved it.&lt;/p&gt;
454
455 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
456 Edu?&lt;/strong&gt;&lt;/p&gt;
457
458 &lt;p&gt;I found a main advantage in that, once you know &quot;the tips and
459 tricks&quot;, a new installation just works out of the box. It&#39;s the most
460 complete alternative I&#39;ve found to create an LTSP network. All the
461 other distributions seems to be made of plastic, Debian Edu seems to
462 be made of steel.&lt;/p&gt;
463
464 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
465 Edu?&lt;/strong&gt;&lt;/p&gt;
466
467 &lt;p&gt;I found two main disadvantages.&lt;/p&gt;
468
469 &lt;p&gt;I&#39;m not an expert but I&#39;ve got notions and I had to spent a considerable
470 amount of time trying to bring up a standard network topology. I&#39;m quite
471 stubborn and I just worked until I did but I&#39;m sure many people with few
472 resources (not big schools, but academies for example) would have switched
473 or dropped.&lt;/p&gt;
474
475 &lt;p&gt;It&#39;s amazing how such a complex system like Debian Edu has achieved
476 this out-of-the-box state. Even though tweaking without breaking gets
477 more difficult, as more factors have to be considered. This can
478 discourage many people too.&lt;/p&gt;
479
480 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
481
482 &lt;p&gt;I use Debian, Firefox, Okular, Inkscape, LibreOffice and
483 Virtualbox.&lt;/p&gt;
484
485
486 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
487 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
488
489 &lt;p&gt;I don&#39;t think there is a need for a particular strategy. The free
490 attribute in both &quot;freedom&quot; and &quot;no price&quot; meanings is what will
491 really bring free software to schools. In my experience I can think of
492 the &lt;a href=&quot;http://www.r-project.org/&quot;&gt;&quot;R&quot; statistical language&lt;/a&gt;; a
493 few years a ago was an extremely nerd tool for university people.
494 Today it&#39;s being increasingly used to teach statistics at many
495 different level of studies. I believe free and open software will
496 increasingly gain popularity, but I&#39;m sure schools will be one of the
497 first scenarios where this will happen.&lt;/p&gt;
498 </description>
499 </item>
500
501 <item>
502 <title>How to add extra storage servers in Debian Edu / Skolelinux</title>
503 <link>http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</link>
504 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</guid>
505 <pubDate>Wed, 12 Mar 2014 12:50:00 +0100</pubDate>
506 <description>&lt;p&gt;On larger sites, it is useful to use a dedicated storage server for
507 storing user home directories and data. The design for handling this
508 in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, is
509 to update the automount rules in LDAP and let the automount daemon on
510 the clients take care of the rest. I was reminded about the need to
511 document this better when one of the customers of
512 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt;, where I am
513 on the board of directors, asked about how to do this. The steps to
514 get this working are the following:&lt;/p&gt;
515
516 &lt;p&gt;&lt;ol&gt;
517
518 &lt;li&gt;Add new storage server in DNS. I use nas-server.intern as the
519 example host here.&lt;/li&gt;
520
521 &lt;li&gt;Add automoun LDAP information about this server in LDAP, to allow
522 all clients to automatically mount it on reqeust.&lt;/li&gt;
523
524 &lt;li&gt;Add the relevant entries in tjener.intern:/etc/fstab, because
525 tjener.intern do not use automount to avoid mounting loops.&lt;/li&gt;
526
527 &lt;/ol&gt;&lt;/p&gt;
528
529 &lt;p&gt;DNS entries are added in GOsa², and not described here. Follow the
530 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/GettingStarted&quot;&gt;instructions
531 in the manual&lt;/a&gt; (Machine Management with GOsa² in section Getting
532 started).&lt;/p&gt;
533
534 &lt;p&gt;Ensure that the NFS export points on the server are exported to the
535 relevant subnets or machines:&lt;/p&gt;
536
537 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
538 root@tjener:~# showmount -e nas-server
539 Export list for nas-server:
540 /storage 10.0.0.0/8
541 root@tjener:~#
542 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
543
544 &lt;p&gt;Here everything on the backbone network is granted access to the
545 /storage export. With NFSv3 it is slightly better to limit it to
546 netgroup membership or single IP addresses to have some limits on the
547 NFS access.&lt;/p&gt;
548
549 &lt;p&gt;The next step is to update LDAP. This can not be done using GOsa²,
550 because it lack a module for automount. Instead, use ldapvi and add
551 the required LDAP objects using an editor.&lt;/p&gt;
552
553 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
554 ldapvi --ldap-conf -ZD &#39;(cn=admin)&#39; -b ou=automount,dc=skole,dc=skolelinux,dc=no
555 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
556
557 &lt;p&gt;When the editor show up, add the following LDAP objects at the
558 bottom of the document. The &quot;/&amp;&quot; part in the last LDAP object is a
559 wild card matching everything the nas-server exports, removing the
560 need to list individual mount points in LDAP.&lt;/p&gt;
561
562 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
563 add cn=nas-server,ou=auto.skole,ou=automount,dc=skole,dc=skolelinux,dc=no
564 objectClass: automount
565 cn: nas-server
566 automountInformation: -fstype=autofs --timeout=60 ldap:ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
567
568 add ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
569 objectClass: top
570 objectClass: automountMap
571 ou: auto.nas-server
572
573 add cn=/,ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
574 objectClass: automount
575 cn: /
576 automountInformation: -fstype=nfs,tcp,rsize=32768,wsize=32768,rw,intr,hard,nodev,nosuid,noatime nas-server.intern:/&amp;
577 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
578
579 &lt;p&gt;The last step to remember is to mount the relevant mount points in
580 tjener.intern by adding them to /etc/fstab, creating the mount
581 directories using mkdir and running &quot;mount -a&quot; to mount them.&lt;/p&gt;
582
583 &lt;p&gt;When this is done, your users should be able to access the files on
584 the storage server directly by just visiting the
585 /tjener/nas-server/storage/ directory using any application on any
586 workstation, LTSP client or LTSP server.&lt;/p&gt;
587 </description>
588 </item>
589
590 <item>
591 <title>Debian Edu interview: Dominik George</title>
592 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</link>
593 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</guid>
594 <pubDate>Wed, 25 Dec 2013 13:40:00 +0100</pubDate>
595 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
596 project&lt;/a&gt; consist of both newcomers and old timers, and this time I
597 was able to get an interview with a newcomer in the project who showed
598 up on the IRC channel a few weeks ago to let us know about his
599 successful installation of Debian Edu Wheezy in his School. Say hello
600 to &lt;a href=&quot;https://www.ohloh.net/accounts/Natureshadow&quot;&gt;Dominik
601 George&lt;/a&gt;.&lt;/p&gt;
602
603 &lt;!-- http://www.dominik-george.de/images/foto.jpg --&gt;
604
605 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
606
607 &lt;p&gt;I am a 23 year-old student from Germany who has spent half of his
608 life with open source. In &quot;real life&quot;, I am, as already mentioned, a
609 student in the fields of Computer Science, Electrical Engineering,
610 Information Technologies and Anglistics. Due to my (only partially
611 voluntary) huge engagement in the open source world, these things are
612 a bit vacant right now however.&lt;/p&gt;
613
614 &lt;p&gt;I also have been working as a project teacher at a Gymasnium
615 (public school) for various years now. I took up that work some time
616 around 2005 when still attending that school myself and have continued
617 it until today. I also had been running the (kind of very advanced)
618 network of that school together with a team of very interested and
619 talented students in the age of 11 to 15 years, who took the chance to
620 learn a lot about open source and networking before I left the school
621 to help building another school&#39;s informational education concept from
622 scratch.&lt;/p&gt;
623
624 &lt;p&gt;That said, one might see me as a kind of &quot;glue&quot; between school kids
625 and the elderly of teachers as well as between the open source
626 ecosystem and the (even more complex) educational ecosystem.&lt;/p&gt;
627
628 &lt;p&gt;When I am not busy with open source or education, I like Geocaching
629 and cycling.&lt;/p&gt;
630
631 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
632 project?&lt;/strong&gt;&lt;/p&gt;
633
634 &lt;p&gt;I think that happened some time around 2009 when I first attended
635 &lt;a href=&quot;http://www.froscon.org&quot;&gt;FrOSCon&lt;/a&gt; and visited the project
636 booth. I think I wasn&#39;t too interested back then because I used to
637 have an attitude of disliking software that does too much stuff on its
638 own. Maybe I was too inexperienced to realise the upsides of an
639 &quot;out-of-the-box&quot; solution ;).&lt;/p&gt;
640
641 &lt;p&gt;The first time I actively talked to Skolelinux people was at
642 &lt;a href=&quot;http://www.openrheinruhr.de&quot;&gt;OpenRheinRuhr&lt;/a&gt; 2011 when the
643 BiscuIT project, a home-grewn software used by my school for various
644 really cool things from timetables and class contact lists to lunch
645 ordering, student ID card printing and project elections first got to
646 a stage where it could have been published. I asked the Skolelinux
647 guys running the booth if the project were interested in it and gave a
648 small demonstration, but there wasn&#39;t any real feedback and the guys
649 seemed rather uninterested.&lt;/p&gt;
650
651 &lt;p&gt;After I left the school where I developed the software, it got
652 mostly lost, but I am now reimplementing it for my new school. I have
653 reusability and compatibility in mind, and I hop there will be a new
654 basis for contributing it to the Skolelinux project ;)!&lt;/p&gt;
655
656 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
657 Edu?&lt;/strong&gt;&lt;/p&gt;
658
659 &lt;p&gt;The most important advantage seems to be that it &quot;just
660 works&quot;. After overcoming some minor (but still very annoying) glitches
661 in the installer, I got a fully functional, working school network,
662 without the month-long hassle I experienced when setting all that up
663 from scratch in earlier years. And above that, it rocked - I didn&#39;t
664 have any real hardware at hand, because the school was just founded
665 and has no money whatsoever, so I installed a combined server (main
666 server, terminal services and workstation) in a VM on my personal
667 notebook, bridging the LTSP network interface to the ethernet port,
668 and then PXE-booted the Windows notebooks that were lying around from
669 it. I could use 8 clients without any performance issues, by using a
670 tiny little VM on a tiny little notebook. I think that&#39;s enough to say
671 that it rocks!&lt;/p&gt;
672
673 &lt;p&gt;Secondly, there are marketing reasons. Life&#39;s bad, and so no
674 politician will ever permit a setup described as &quot;Debian, an universal
675 operating system, with some really cool educational tools&quot; while they
676 will be jsut fine with &quot;Skolelinux, a single-purpose solution for your
677 school network&quot;, even if both turn out to be the very same thing (yes,
678 this is unfair towards the Skolelinux project, and must not be taken
679 too seriously - you get the idea, anyway).&lt;/p&gt;
680
681 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
682 Edu?&lt;/strong&gt;&lt;/p&gt;
683
684 &lt;p&gt;I have not been involved with Skolelinux long enough to really
685 answer this question in a fair way. Thus, please allow me to put it in
686 other words: &quot;What do you expect from Skolelinux to keep liking it?&quot; I
687 can list a few points about that:&lt;/p&gt;
688
689 &lt;ul&gt;
690
691 &lt;li&gt;always strive to get all things integrated into Debian upstream
692 &lt;li&gt;be open to discussion about changes and the like, even with newcomers
693 &lt;li&gt;be helpful at being helpful ;)
694
695 &lt;/ul&gt;
696
697 &lt;p&gt;I&#39;m really sorry I cannot say much more about that :(!&lt;/p&gt;
698
699 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
700
701 &lt;p&gt;First of all, all software I use is free and open. I have abandoned
702 all non-free software (except for firmware on my darned phone) this
703 year.&lt;/p&gt;
704
705 &lt;p&gt;I run Debian GNU/Linux on all PC systems I use. On that, I mostly
706 run text tools. I use
707 &lt;a href=&quot;https://www.mirbsd.org/mksh.htm&quot;&gt;mksh&lt;/a&gt; as shell,
708 &lt;a href=&quot;https://www.mirbsd.org/jupp.htm&quot;&gt;jupp&lt;/a&gt; as very advanced
709 text editor (I even got the developer to help me write a script/macro
710 based full-featured student management software with the two),
711 &lt;a href=&quot;http://mcabber.com/&quot;&gt;mcabber&lt;/a&gt; for XMPP and
712 &lt;a href=&quot;http://www.irssi.org/&quot;&gt;irssi&lt;/a&gt; for IRC. For that overly
713 coloured world called the WWW, I use
714 &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Iceweasel
715 (Firefox)&lt;/a&gt;. Oh, and &lt;a href=&quot;http://www.mutt.org/&quot;&gt;mutt&lt;/a&gt; for
716 e-mail.&lt;/p&gt;
717
718 &lt;p&gt;However, while I am personally aware of the fact that text tools
719 are more efficient and powerful than anything else, I also use (or at
720 least operate) some tools that are suitable to bring open source to
721 kids. One of these things is &lt;a href=&quot;http://jappix.org/&quot;&gt;Jappix&lt;/a&gt;,
722 which I already introduced to some kids even before they got aware of
723 Facebook, making them see for themselves that they do not need
724 Facebook now ;).&lt;/p&gt;
725
726 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
727 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
728
729 &lt;p&gt;Well, that&#39;s a two-sided thing. One side is what I believe, and one
730 side is what I have experienced.&lt;/p&gt;
731
732 &lt;p&gt;I believe that the right strategy is showing them the benefits. But
733 that won&#39;t work out as long as the acceptance of free alternatives
734 grows globally. What I mean is that if all the kids are almost forced
735 to use Windows, Facebook, Skype, you name it at home, they will not
736 see why they would want to use alternatives at school. I have seen
737 students take seat in front of a fully-functional, modern Debian
738 desktop that could do anything their Windows at home could do, and
739 they jsut refused to use it because &quot;Linux sucks&quot;. It is something
740 that makes the council of our city spend around 600000 € to buy
741 software - not including hardware, mind you - for operating school
742 networks, and for installing a system that, as has been proved, does
743 not work. For those of you readers who are good at maths, have you
744 already found out how many lives could have been saved with that money
745 if we had instead used it to bring education to parts of the world
746 that need it? I have, and found it to be nothing less dramatic than
747 plain criminal.&lt;/p&gt;
748
749 &lt;p&gt;That said, the only feasible way appears to be the bottom up
750 method. We have to bring free software to kids and parents. I have
751 founded an association named
752 &lt;a href=&quot;https://www.teckids.org&quot;&gt;Teckids&lt;/a&gt; here in Germany that does
753 just that. We organise several events for kids and adolescents in the
754 area of free and open source software, for example the
755 &lt;a href=&quot;http://kids.froscon.org&quot;&gt;FrogLabs&lt;/a&gt;, which share staff with
756 Teckids and are the youth programme of
757 &lt;a href=&quot;http://www.froscon.org&quot;&gt;the Free and Open Source Software
758 Conference (FrOSCon)&lt;/a&gt;. We do a lot more than most other conferences
759 - this year, we first offered the FrogLabs as a holiday camp for kids
760 aged 10 to 16. It was a huge success, with approx. 30 kids taking part
761 and learning with and about free software through a whole weekend. All
762 of us had a lot of fun, and the results were really exciting.&lt;/p&gt;
763
764 &lt;p&gt;Apart from that, we are preparing a campaign that is supposed to bring
765 the message of free alternatives to stuff kids use every day to them and
766 their parents, e.g. the use of Jabber / Jappix instead of Facebook and
767 Skype. To make that possible, we are planning to get together a team of
768 clever kids who understand very well what their peers need and can bring
769 it across to them. So we will have a peer-driven network of adolescents
770 who teach each other and collect feedback from the community of minors.
771 We then take that feedback and our own experience to work closely with
772 open source projects, such as Skolelinux or Jappix, at improving their
773 software in a way that makes it more and more attractive for the target
774 group. At least I hope that we will have good cooperation with
775 Skolelinux in the future ;)!&lt;/p&gt;
776
777 &lt;p&gt;So in conclusion, what I believe is that, if it weren&#39;t for the world
778 being so bad, it should be very clear to the political decision makers
779 that the only way to go nowadays is free software for various reasons,
780 but I have learnt that the only way that seems to work is bottom up.&lt;/p&gt;
781
782 &lt;!--
783
784 &gt; * Who should be interviewed with this questions in the future?
785
786 That&#39;s probably the hardest question of them all, as I do not know the
787 community. However, I would be willing to do the following:
788
789 &lt;li&gt;Run an interview with a German headteacher who is very open to
790 free software, and also prefers it, but cannot really use it because
791 of the decision makers above;
792 &lt;li&gt;Run interviews with some kids, both with and without previous
793 knowledge about free software
794
795 If that is wanted, just let me know ;).
796
797 --&gt;
798 </description>
799 </item>
800
801 <item>
802 <title>Debian Edu interview: Klaus Knopper</title>
803 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</link>
804 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</guid>
805 <pubDate>Fri, 6 Dec 2013 09:50:00 +0100</pubDate>
806 <description>&lt;p&gt;It has been a while since I managed to publish the last interview,
807 but the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
808 Skolelinux&lt;/a&gt; community is still going strong, and yesterday we even
809 had a new school administrator show up on
810 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt; to share
811 his success story with installing Debian Edu at their school. This
812 time I have been able to get some helpful comments from the creator of
813 Knoppix, Klaus Knopper, who was involved in a Skolelinux project in
814 Germany a few years ago.&lt;/p&gt;
815
816 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
817
818 &lt;p&gt;I am Klaus Knopper. I have a master degree in electrical
819 engineering, and is currently professor in information management at
820 the university of applied sciences Kaiserslautern / Germany and
821 freelance Open Source software developer and consultant.&lt;/p&gt;
822
823 &lt;p&gt;All of this is pretty much of the work I spend my days with. Apart
824 from teaching, I&#39;m also conducting some more or less experimental
825 projects like the &lt;a href=&quot;http://www.knoppix.org&quot;&gt;Knoppix GNU/Linux live
826 system&lt;/a&gt; (Debian-based like Skolelinux),
827 &lt;a href=&quot;http://www.knopper.net/knoppix-adriane/index-en.html&quot;&gt;ADRIANE&lt;/a&gt;
828 (a blind-friendly talking desktop system) and
829 &lt;a href=&quot;http://www.knopper.net/linbo/index-en.html&quot;&gt;LINBO&lt;/a&gt;
830 (Linux-based network boot console, a fast remote install and repair
831 system supporting various operating systems).&lt;/p&gt;
832
833 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
834 project?&lt;/strong&gt;&lt;/p&gt;
835
836 &lt;p&gt;The credit for this have to go to Kurt Gramlich, who is the German
837 coordinator for Skolelinux. We were looking for an all-in-one open
838 source community-supported distribution for schools, and Kurt
839 introduced us to Skolelinux for this purpose.&lt;/p&gt;
840
841 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
842 Edu?&lt;/strong&gt;&lt;/p&gt;
843
844 &lt;ul&gt;
845 &lt;li&gt;Quick installation,&lt;/li&gt;
846 &lt;li&gt;works (almost) out of the box,&lt;/li&gt;
847 &lt;li&gt;contains many useful software packages for teaching and learning,&lt;/li&gt;
848 &lt;li&gt;is a purely community-based distro and not controlled by a
849 single company,&lt;/li&gt;
850 &lt;li&gt;has a large number of supporters and teachers who share their
851 experience and problem solutions.&lt;/li&gt;
852 &lt;/ul&gt;
853
854 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
855 Edu?&lt;/strong&gt;&lt;/p&gt;
856
857 &lt;ul&gt;
858 &lt;li&gt;Skolelinux is - as we had to learn - not easily upgradable to
859 the next version. Opposed to its genuine Debian base, upgrading to
860 a new version means a full new installation from scratch to get it
861 working again reliably.
862
863 &lt;li&gt;Skolelinux is based on Debian/stable, and therefore always a
864 little outdated in terms of program versions compared to Edubuntu or
865 similar educational Linux distros, which rather use Debian/testing
866 as their base.
867
868 &lt;li&gt;Skolelinux has some very self-opinionated and stubborn default
869 configuration which in my opinion adds unnecessary complexity and is
870 not always suitable for a schools needs, the preset network
871 configuration is actually a core definition feature of Skolelinux
872 and not easy to change, so schools sometimes have to change their
873 network configuration to make it &quot;Skolelinux-compatible&quot;.
874
875 &lt;li&gt;Some proposed extensions, which were made available as
876 contribution, like secure examination mode and lecture material
877 distribution and collection, were not accepted into the mainline
878 Skolelinux development and are now not easy to maintain in the
879 future because of Skolelinux somewhat undeterministic update
880 schemes.&lt;/li&gt;
881
882 &lt;li&gt;Skolelinux has only a very tiny number of base developers
883 compared to Debian.&lt;/li&gt;
884
885 &lt;/ul&gt;
886
887 &lt;p&gt;For these reasons and experience from our project, I would now
888 rather consider using plain Debian for schools next time, until
889 Skolelinux is more closely integrated into Debian and becomes
890 upgradeable without reinstallation.&lt;/p&gt;
891
892 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
893
894 &lt;p&gt;GNU/Linux with LXDE desktop, bash for interactive dialog and
895 programming, texlive for documentation and correspondence,
896 occasionally LibreOffice for document format conversion. Various
897 programming languages for teaching.&lt;/p&gt;
898
899 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
900 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
901
902 &lt;p&gt;Strong arguments are&lt;/p&gt;
903
904 &lt;ul&gt;
905
906 &lt;li&gt;Knowledge is free, and so should be methods and tools for
907 teaching and learning.&lt;/li&gt;
908
909 &lt;li&gt;Students can learn with and use the same software at school, at
910 home, and at their working place without running into license or
911 conversion problems.&lt;/li&gt;
912
913 &lt;li&gt;Closed source or proprietary software hides knowledge rather
914 than exposing it, and proprietary software vendors try to bind
915 customers to certain products. But teachers need to teach
916 science, not products.&lt;/li&gt;
917
918 &lt;li&gt;If you have everything you for daily work as open source, what
919 would you need proprietary software for?&lt;/li&gt;
920
921 &lt;/ul&gt;
922 </description>
923 </item>
924
925 <item>
926 <title>Skolelinux / Debian Edu 7.1 install and overview video from Marcelo Salvador</title>
927 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</link>
928 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</guid>
929 <pubDate>Tue, 8 Oct 2013 17:10:00 +0200</pubDate>
930 <description>&lt;p&gt;The other day I was pleased and surprised to discover that Marcelo
931 Salvador had published a
932 &lt;a href=&quot;https://www.youtube.com/watch?v=w-GgpdqgLFc&quot;&gt;video on
933 Youtube&lt;/a&gt; showing how to install the standalone Debian Edu /
934 Skolelinux profile. This is the profile intended for use at home or
935 on laptops that should not be integrated into the provided network
936 services (no central home directory, no Kerberos / LDAP directory etc,
937 in other word a single user machine). The result is 11 minutes long,
938 and show some user applications (seem to be rather randomly picked).
939 Missed a few of my favorites like celestia, planets and chromium
940 showing the &lt;a href=&quot;http://www.zygotebody.com/&quot;&gt;Zygote Body 3D model
941 of the human body&lt;/a&gt;, but I guess he did not know about those or find
942 other programs more interesting. :) And the video do not show the
943 advantages I believe is one of the most valuable featuers in Debian
944 Edu, its central school server making it possible to run hundreds of
945 computers without hard drives by installing one central
946 &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP server&lt;/a&gt;.&lt;/p&gt;
947
948 &lt;p&gt;Anyway, check out the video, embedded below and linked to above:&lt;/p&gt;
949
950 &lt;iframe width=&quot;420&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/w-GgpdqgLFc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
951
952 &lt;p&gt;Are there other nice videos demonstrating Skolelinux? Please let
953 me know. :)&lt;/p&gt;
954 </description>
955 </item>
956
957 <item>
958 <title>Finally, Debian Edu Wheezy is released today!</title>
959 <link>http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</link>
960 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</guid>
961 <pubDate>Sun, 29 Sep 2013 10:20:00 +0200</pubDate>
962 <description>&lt;p&gt;A few hours ago, the announcement for the first stable release of
963 Debian Edu Wheezy went out from the Debian publicity team. The
964 complete announcement text can be found at
965 &lt;a href=&quot;http://www.debian.org/News/2013/20130928&quot;&gt;the Debian News
966 section&lt;/a&gt;, translated to several languages. Please check it out.&lt;/p&gt;
967
968 &lt;p&gt;There is one minor known problem that we will fix very soon. One
969 can not install a amd64 Thin Client Server using PXE, as the /var/
970 partition is too small. A workaround is to extend the partition (use
971 lvresize + resize2fs in tty 2 while installing).&lt;/p&gt;
972 </description>
973 </item>
974
975 <item>
976 <title>Third and probably last beta release of Debian Edu Wheezy</title>
977 <link>http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</link>
978 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</guid>
979 <pubDate>Mon, 16 Sep 2013 21:30:00 +0200</pubDate>
980 <description>&lt;p&gt;The third wheezy based beta release of Debian Edu was wrapped up
981 today. This is the release announcement from Holger Levsen:&lt;/p&gt;
982
983 &lt;blockquote&gt;
984 &lt;p&gt;Hi,&lt;/p&gt;
985
986 &lt;p&gt;it is my pleasure to announce the third beta release (beta 2 for
987 short) of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
988 Skolelinux&lt;/a&gt; based on Debian Wheezy!&lt;/p&gt;
989
990 &lt;p&gt;Please test these images extensivly, if no new problems are found
991 we plan to do this final Debian Edu Wheezy release this coming
992 weekend. We are not aware of any major problems or blockers in beta2,
993 if you find something, please notify us immediately!&lt;/p&gt;
994
995 &lt;p&gt;(More about the remaining steps for the Edu Wheezy release in
996 another mail to the edu list tonight or tomorrow...)&lt;/p&gt;
997
998 &lt;p&gt;Noteworthy changes and software updates for Debian Edu 7.1+edu0~b2
999 compared to beta1:&lt;/p&gt;
1000
1001 &lt;ul&gt;
1002
1003 &lt;li&gt;The KDE proxy setup has been adjusted to use the provided wpad.dat. This
1004 also gets Chromium to use this proxy.&lt;/li&gt;
1005 &lt;li&gt;Install kdepim-groupware with KDE desktops to make sure korganizer
1006 understand ical/dav sources.&lt;/li&gt;
1007 &lt;li&gt;Increased default maximum size of /var/spool/squid and /skole/backup on the
1008 main server.&lt;/li&gt;
1009 &lt;li&gt;A source DVD image containing all source packages is now available as well.&lt;/li&gt;
1010 &lt;li&gt;Updates for chromium (29.0.1547.57-1~deb7u1), imagemagick
1011 (6.7.7.10-5+deb7u2), php5 (5.4.4-14+deb7u4), libmodplug
1012 (0.8.8.4-3+deb7u1+git20130828), tiff (4.0.2-6+deb7u2), linux-image
1013 (3.2.0-4-486_3.2.46-1+deb7u1).&lt;/li&gt;
1014
1015 &lt;/ul&gt;
1016
1017 &lt;p&gt;Where to get it:&lt;/p&gt;
1018
1019 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1020
1021 &lt;ul&gt;
1022 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&lt;/a&gt;&lt;/li&gt;
1023 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&lt;/a&gt;&lt;/li&gt;
1024 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso .&lt;/li&gt;
1025 &lt;/ul&gt;
1026
1027 &lt;p&gt;The SHA1SUM of this image is: 3a1c89f4666df80eebcd46c5bf5fedb866f9472f&lt;/p&gt;
1028
1029 &lt;p&gt;To download the multiarch USB stick ISO release you can use
1030 &lt;ul&gt;
1031 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&lt;/a&gt;&lt;/li&gt;
1032 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&lt;/a&gt;&lt;/li&gt;
1033 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso .&lt;/li&gt;
1034 &lt;/ul&gt;
1035
1036 &lt;p&gt;The SHA1SUM of this image is: 702d1718548f401c74bfa6df9f032cc3ee16597e&lt;/p&gt;
1037
1038 &lt;p&gt;The Source DVD image has the filename
1039 debian-edu-7.1+edu0~b2-source-DVD.iso and the SHA1SUM
1040 089eed8b3f962db47aae1f6a9685e9bb2fa30ca5 and is available the same way
1041 as the other isos.&lt;/p&gt;
1042
1043 &lt;p&gt;How to report bugs&lt;/p&gt;
1044
1045 &lt;p&gt;For information how to report bugs please see
1046 &lt;br&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;&lt;/p&gt;
1047
1048
1049 &lt;p&gt;About Debian Edu and Skolelinux&lt;/p&gt;
1050
1051 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
1052 on Debian providing an out-of-the box environment of a completely
1053 configured school network. Immediately after installation a school
1054 server running all services needed for a school network is set up just
1055 waiting for users and machines being added via GOsa², a comfortable
1056 Web-UI. A netbooting environment is prepared using PXE, so after
1057 initial installation of the main server from CD or USB stick all other
1058 machines can be installed via the network. The provided school server
1059 provides LDAP database and Kerberos authentication service,
1060 centralized home directories, DHCP server, web proxy and many other
1061 services. The desktop contains more than 60 educational software
1062 packages and more are available from the Debian archive, and schools
1063 can choose between KDE, Gnome, LXDE and Xfce desktop environment.&lt;/p&gt;
1064
1065 &lt;p&gt;This is the seventh test release based on Debian Wheezy. Basically
1066 this is an updated and slightly improved version compared to the
1067 Squeeze release.&lt;/p&gt;
1068
1069 &lt;p&gt;Notes for upgrades from Alpha Prereleases&lt;/p&gt;
1070
1071 &lt;p&gt;Alpha based installations should reinstall or downgrade the
1072 versions of gosa and libpam-mklocaluser to the ones used in this beta
1073 release. Both alpha and beta0 based installations should reinstall or
1074 deal with gosa.conf manually; there are two options: (1) Keep
1075 gosa.conf and edit this file as outlined on the mailing list. (2)
1076 Accept the new version of gosa.conf and replace both contained admin
1077 password placeholders with the password hashes found in the old one
1078 (backup copy!). In both cases all users need to change their password
1079 to make sure a password is set for CIFS access to their home
1080 directory.&lt;/p&gt;
1081
1082
1083 &lt;p&gt;cheers,
1084 &lt;br&gt; Holger&lt;/p&gt;
1085 &lt;/blockquote&gt;
1086 </description>
1087 </item>
1088
1089 <item>
1090 <title>Second beta release (beta 1) of Debian Edu/Skolelinux based on Debian Wheezy</title>
1091 <link>http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
1092 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
1093 <pubDate>Thu, 22 Aug 2013 09:30:00 +0200</pubDate>
1094 <description>&lt;p&gt;The second wheezy based beta release of Debian Edu was wrapped up
1095 today, slightly delayed because of some bugs in the initial Windows
1096 integration fixes . This is the release announcement:&lt;/p&gt;
1097
1098 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b1 released 2013-08-22&lt;/strong&gt;&lt;/p&gt;
1099
1100 &lt;p&gt;These are the release notes for Debian Edu / Skolelinux
1101 7.1+edu0~b1, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1102
1103 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1104
1105 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1106 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1107 out-of-the box environment of a completely configured school
1108 network. Immediately after installation a school server running all
1109 services needed for a school network is set up just waiting for users
1110 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1111 environment is prepared using PXE, so after initial installation of
1112 the main server from CD or USB stick all other machines can be
1113 installed via the network. The provided school server provides LDAP
1114 database and Kerberos authentication service, centralized home
1115 directories, DHCP server, web proxy and many other services. The
1116 desktop contains
1117 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1118 than 60 educational software packages&lt;/a&gt; and more are available from
1119 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1120 and Xfce desktop environment.&lt;/p&gt;
1121
1122 &lt;p&gt;This is the sixth test release based on Debian Wheezy. Basically this
1123 is an updated and slightly improved version compared to the Squeeze
1124 release.&lt;/p&gt;
1125
1126 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
1127 versions of gosa and libpam-mklocaluser to the ones used in this beta
1128 release. Both alpha and beta0 based installations should reinstall or
1129 deal with gosa.conf manually; there are two options: (1) Keep
1130 gosa.conf and edit this file as outlined
1131 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/08/msg00127.html&quot;&gt;on
1132 the mailing list&lt;/a&gt;. (2) Accept the new version of gosa.conf and
1133 replace both contained admin password placeholders with the password
1134 hashes found in the old one (backup copy!). In both cases every user
1135 need to change their their password to make sure a password is set for
1136 CIFS access to their home directory.&lt;/p&gt;
1137
1138 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1139
1140 &lt;ul&gt;
1141
1142 &lt;li&gt;Added ssh askpass packages to default installation, to ensure ssh
1143 work also without a attached tty.&lt;/li&gt;
1144 &lt;li&gt;Add the command-not-found package to the default installation to
1145 make it easier to figure out where to find missing command line
1146 tools. Please note, that the command &#39;update-command-not-found&#39;
1147 has to be run as root to actually make it useful (internet access
1148 required).&lt;/li&gt;
1149
1150 &lt;/ul&gt;
1151
1152 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1153
1154 &lt;ul&gt;
1155
1156 &lt;li&gt;Adjusted the USB stick ISO image build to include every tool
1157 needed for desktop=xfce installations.&lt;/li&gt;
1158 &lt;li&gt;Adjust thin-client-server task to work when installing from USB
1159 stick ISO image.&lt;/li&gt;
1160 &lt;li&gt;Made new grub artwork (changed png from indexed to RGB format).&lt;/li&gt;
1161 &lt;li&gt;Minor cleanup in the CUPS setup.&lt;/li&gt;
1162 &lt;li&gt;Make sure that bootstrapping of the Samba domain really happens
1163 during installation of the main server and adjust SID handling to
1164 cope with this.&lt;/li&gt;
1165 &lt;li&gt;Make Samba passwords changeable (again) via GOsa².&lt;/li&gt;
1166 &lt;li&gt;Fix generation of LM and NT password hashes via GOsa² to avoid
1167 empty password hashes.&lt;/li&gt;
1168 &lt;li&gt;Adapted Samba machine domain joining to latest change in the
1169 smbldap-tools Perl package, fixing bugs blocking Windows machines
1170 from joining the Samba domain.&lt;/li&gt;
1171
1172 &lt;/ul&gt;
1173
1174 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1175
1176 &lt;ul&gt;
1177
1178 &lt;li&gt;KDE fails to understand the wpad.dat file provided, causing it to
1179 not use the http proxy as it should.&lt;/li&gt;
1180 &lt;li&gt;Chromium also fails to use the proxy when using the KDE desktop
1181 (using the KDE configuration).&lt;/li&gt;
1182
1183 &lt;/ul&gt;
1184
1185 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1186
1187 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1188
1189 &lt;ul&gt;
1190
1191 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&lt;/a&gt;&lt;/li&gt;
1192
1193 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&lt;/a&gt;&lt;/li&gt;
1194
1195 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso .&lt;/li&gt;
1196
1197 &lt;/ul&gt;
1198
1199 &lt;p&gt;The MD5SUM of this image is: 1e357f80b55e703523f2254adde6d78b
1200 &lt;br&gt;The SHA1SUM of this image is: 7157f9be5fd27c7694d713c6ecfed61c3edda3b2&lt;/p&gt;
1201
1202 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1203
1204 &lt;ul&gt;
1205
1206 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&lt;/a&gt;&lt;/li&gt;
1207 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&lt;/a&gt;&lt;/li&gt;
1208 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso .&lt;/li&gt;
1209
1210 &lt;/ul&gt;
1211
1212 &lt;p&gt;The MD5SUM of this image is: 7a8408ead59cf7e3cef25afb6e91590b
1213 &lt;br&gt;The SHA1SUM of this image is: f1817c031f02790d5edb3bfa0dcf8451088ad119&lt;/p&gt;
1214
1215
1216 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1217
1218 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;
1219 </description>
1220 </item>
1221
1222 <item>
1223 <title>First beta release of Debian Edu/Skolelinux based on Debian Wheezy</title>
1224 <link>http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
1225 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
1226 <pubDate>Sat, 27 Jul 2013 20:30:00 +0200</pubDate>
1227 <description>&lt;p&gt;The first wheezy based beta release of Debian Edu was wrapped up
1228 today. This is the release announcement:&lt;/p&gt;
1229
1230 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b0 released
1231 2013-07-27&lt;/strong&gt;&lt;/p&gt;
1232
1233 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
1234 7.1+edu0~b0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1235
1236 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1237
1238 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1239 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1240 out-of-the box environment of a completely configured school
1241 network. Immediately after installation a school server running all
1242 services needed for a school network is set up just waiting for users
1243 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1244 environment is prepared using PXE, so after initial installation of
1245 the main server from CD, DVD or USB stick all other machines can be
1246 installed via the network. The provided school server provides LDAP
1247 database and Kerberos authentication service, centralized home
1248 directories, DHCP server, web proxy and many other services. The
1249 desktop contains
1250 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1251 than 60 educational software packages&lt;/a&gt; and more are available from
1252 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1253 and Xfce desktop environment.&lt;/p&gt;
1254
1255 &lt;p&gt;This is the fifth test release based on Debian Wheezy. Basically
1256 this is an updated and slightly improved version compared to the
1257 Squeeze release.&lt;/p&gt;
1258
1259 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
1260 versions of gosa and libpam-mklocaluser to the ones used in this beta
1261 release.&lt;/p&gt;
1262
1263 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1264
1265 &lt;ul&gt;
1266
1267 &lt;li&gt;Switched roaming workstation profiles from wicd to network-manager
1268 for network configuration, as wicd didn&#39;t work any more.&lt;/li&gt;
1269 &lt;li&gt;Changed version numbers of patched gosa and libpam-mklocaluser
1270 packages to make sure our locally patched versions will be replaced
1271 by the official packages when they are released from Debian. Those
1272 installing alpha version need to reinstall or manually downgrade gosa
1273 and libpam-mklocaluser.&lt;/li&gt;
1274 &lt;li&gt;Added bluetooth tools to the default desktop (bluedevil, blueman).&lt;/li&gt;
1275 &lt;li&gt;Added tools for sharing the desktop on KDE (krdc, krfb).&lt;/li&gt;
1276 &lt;li&gt;Added valgrind to the default installation for easier debugging of
1277 crash bugs.&lt;/li&gt;
1278
1279 &lt;/ul&gt;
1280
1281 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1282
1283 &lt;ul&gt;
1284
1285 &lt;li&gt;Fixed artwork package to work with gnome, no longer break
1286 desktop=gnome installations.&lt;/li&gt;
1287 &lt;li&gt;Adjusted installer to now work when forced to use a proxy with the
1288 netinst CD.&lt;/li&gt;
1289 &lt;li&gt;Fixed code detecting and setting/loading hardware specific
1290 setup/firmware to work more robust out of the box.&lt;/li&gt;
1291 &lt;li&gt;Adjusted Kerberos setup to detect realm and server settings at
1292 install time instead of dynamically at run time. This avoid a crash
1293 with krb5-auth-dialog on diskless workstations without a DNS name.&lt;/li&gt;
1294 &lt;li&gt;Worked around misfeature in network-manager not calling the dhclient
1295 exit hooks, causing automatic proxy configuration and automatic host
1296 name setting at run time to work again.&lt;/li&gt;
1297 &lt;li&gt;Fixed feature setting the default Iceweasel start page from URL
1298 fetched from LDAP, to allow schools to set the global default by
1299 updating the dc=skole,dc=skolelinux,dc=no LDAP object.&lt;/li&gt;
1300 &lt;li&gt;Changed default host name on all networked machines to be unique
1301 (generated from MAC or reverse DNS) after boot.&lt;/li&gt;
1302 &lt;li&gt;Adjusted partition sizes to make sure they are big enough.&lt;/li&gt;
1303
1304 &lt;/ul&gt;
1305
1306 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1307
1308 &lt;ul&gt;
1309
1310 &lt;li&gt;Grub is missing the new artwork.&lt;/li&gt;
1311 &lt;li&gt;KDE fail to understand the wpad.dat file provided, causing it to
1312 not use the http proxy as it should.&lt;/li&gt;
1313 &lt;li&gt;Chromium also fail to use the proxy.&lt;/li&gt;
1314
1315 &lt;/ul&gt;
1316
1317 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1318
1319 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1320
1321 &lt;ul&gt;
1322
1323 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&lt;/a&gt;&lt;/li&gt;
1324
1325 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&lt;/a&gt;&lt;/li&gt;
1326
1327 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso .&lt;/li&gt;
1328
1329 &lt;/ul&gt;
1330
1331 &lt;p&gt;The MD5SUM of this image is: 55d5de9765b6dccd5d9ec33cf1a07109
1332 &lt;br&gt;The SHA1SUM of this image is: 996a1d9517740e4d627d100de2d12b23dd545a3f&lt;/p&gt;
1333
1334 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1335
1336 &lt;ul&gt;
1337
1338 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&lt;/a&gt;&lt;/li&gt;
1339 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&lt;/a&gt;&lt;/li&gt;
1340 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso .&lt;/li&gt;
1341
1342 &lt;/ul&gt;
1343
1344 &lt;p&gt;The MD5SUM of this image is: d8f0818c51a78d357de794066f289f69
1345 &lt;br&gt;The SHA1SUM of this image is: 49185ca354e8d0543240423746924f76a6cee733&lt;/p&gt;
1346
1347
1348 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1349
1350 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;
1351 </description>
1352 </item>
1353
1354 <item>
1355 <title>July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</title>
1356 <link>http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</link>
1357 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</guid>
1358 <pubDate>Tue, 9 Jul 2013 10:40:00 +0200</pubDate>
1359 <description>&lt;p&gt;The upcoming Saturday, 2013-07-13, we are organising a combined
1360 Debian Edu developer gathering and Debian and Ubuntu bug squashing
1361 party in Oslo. It is organised by &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
1362 member assosiation NUUG&lt;/a&gt; and
1363 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;the Debian Edu / Skolelinux
1364 project&lt;/a&gt; together with &lt;a href=&quot;http://bitraf.no/&quot;&gt;the hack space
1365 Bitraf&lt;/a&gt;.&lt;/p&gt;
1366
1367 &lt;p&gt;It starts 10:00 and continue until late evening. Everyone is
1368 welcome, and there is no fee to participate. There is on the other
1369 hand limited space, and only room for 30 people. Please put your name
1370 on &lt;a href=&quot;http://wiki.debian.org/BSP/2013/07/13/no/Oslo&quot;&gt;the event
1371 wiki page&lt;/a&gt; if you plan to join us.&lt;/p&gt;
1372 </description>
1373 </item>
1374
1375 <item>
1376 <title>Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</title>
1377 <link>http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
1378 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
1379 <pubDate>Wed, 3 Jul 2013 14:00:00 +0200</pubDate>
1380 <description>&lt;p&gt;The fourth wheezy based alpha release of Debian Edu was wrapped up
1381 today. This is the release announcement:&lt;/p&gt;
1382
1383 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~alpha3 released
1384 2013-07-03&lt;/strong&gt;&lt;/p&gt;
1385
1386 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
1387 7.1+edu0~alpha3, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1388
1389 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1390
1391 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1392 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1393 out-of-the box environment of a completely configured school
1394 network. Immediately after installation a school server running all
1395 services needed for a school network is set up just waiting for users
1396 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1397 environment is prepared using PXE, so after initial installation of
1398 the main server from CD, DVD or USB stick all other machines can be
1399 installed via the network. The provided school server provides LDAP
1400 database and Kerberos authentication service, centralized home
1401 directories, DHCP server, web proxy and many other services. The
1402 desktop contains
1403 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1404 than 60 educational software packages&lt;/a&gt; and more are available from
1405 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1406 and Xfce desktop environment.&lt;/p&gt;
1407
1408 &lt;p&gt;This is the fourth test release based on Debian Wheezy. Basically
1409 this is an updated and slightly improved version compared to the
1410 Squeeze release.&lt;/p&gt;
1411
1412 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1413 &lt;ul&gt;
1414 &lt;li&gt;Dropped ispell dictionaries from our default installation.&lt;/li&gt;
1415 &lt;li&gt;Dropped menu-xdg from the KDE desktop option, to drop the Debian
1416 submenu. It was not included with Gnome, LXDE or Xfce, so this
1417 brings KDE in line with the others.&lt;/li&gt;
1418 &lt;li&gt;Dropped xdrawchem, xjig and xsok from our default installation as
1419 they don&#39;t have a desktop menu entry and thus won&#39;t show up in the
1420 menu now that menu-xdg was removed.&lt;/li&gt;
1421 &lt;li&gt;Removed the killer system to kill left behind processes on
1422 multi-user machines, as it was no longer able to understand when a
1423 X display was in use and killed the processes of the active users
1424 too.&lt;/li&gt;
1425 &lt;li&gt;Dropped the golearn (from goplay) package as the debtags in wheezy
1426 are too few to make the package useful.&lt;/li&gt;
1427 &lt;/ul&gt;
1428 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1429 &lt;ul&gt;
1430 &lt;li&gt;Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
1431 &lt;li&gt;Multi-arch i386/amd64 USB stick ISO available.&lt;/li&gt;
1432 &lt;li&gt;Got rid of ispell/wordlist related debconf questions that showed
1433 up for some language options.&lt;/li&gt;
1434 &lt;li&gt;Switched to using http.debian.net as APT source by default.&lt;/li&gt;
1435 &lt;li&gt;Fixed proxy configuration on Main Server installations.&lt;/li&gt;
1436 &lt;li&gt;Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
1437 d-i is doing it.&lt;/li&gt;
1438 &lt;li&gt;Made sure root and user passwords were not left behind in the
1439 debconf database after installation on Main Server installations.&lt;/li&gt;
1440 &lt;li&gt;Made Roaming Workstation dynamic setup more robust and added draft
1441 script setup-ad-client to hook a Roaming Workstation up to a
1442 Active Directory server instead of a Debian Edu Main Server.&lt;/li&gt;
1443 &lt;li&gt;Update system to install needed firmware packages during
1444 installation, to work properly in Wheezy.&lt;/li&gt;
1445 &lt;li&gt;Update system to handle hardware quirks (debian-edu-hwsetup).&lt;/li&gt;
1446 &lt;li&gt;Corrected PXE installation setup to properly pass selected desktop
1447 and keymap settings to PXE installation clients.&lt;/li&gt;
1448 &lt;li&gt;LTSP diskless workstations use sshfs by default, allowing them to
1449 work without adding them to DNS and NIS netgroups for NFS access.&lt;/li&gt;
1450 &lt;/ul&gt;
1451 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1452 &lt;ul&gt;
1453 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
1454 available yet (698840).&lt;/li&gt;
1455 &lt;li&gt;Artwork not enabled for all desktops.&lt;/li&gt;
1456 &lt;/ul&gt;
1457 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1458
1459 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1460 &lt;ul&gt;
1461 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&lt;/a&gt;&lt;/li&gt;
1462 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&lt;/a&gt;&lt;/li&gt;
1463 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .&lt;/li&gt;
1464 &lt;/ul&gt;
1465
1466 &lt;p&gt;The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
1467 &lt;br&gt;The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8&lt;/p&gt;
1468
1469 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1470 &lt;ul&gt;
1471 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&lt;/a&gt;&lt;/li&gt;
1472 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&lt;/a&gt;&lt;/li&gt;
1473 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .&lt;/li&gt;
1474 &lt;/ul&gt;
1475
1476 &lt;p&gt;The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
1477 &lt;br&gt;The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721&lt;/p&gt;
1478
1479 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1480
1481 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;&lt;/p&gt;
1482 </description>
1483 </item>
1484
1485 <item>
1486 <title>The value of a good distro wide test suite...</title>
1487 <link>http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</link>
1488 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</guid>
1489 <pubDate>Sat, 22 Jun 2013 07:00:00 +0200</pubDate>
1490 <description>&lt;p&gt;In the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
1491 Skolelinux&lt;/a&gt; project, we include a post-installation test suite,
1492 which check that services are running, working, and return the
1493 expected results. It runs automatically just after the first boot on
1494 test installations (using test ISOs), but not on production
1495 installations (using non-test ISOs). It test that the LDAP service is
1496 operating, Kerberos is responding, DNS is replying, file systems are
1497 online resizable, etc, etc. And it check that the PXE service is
1498 configured, which is the topic of this post.&lt;/p&gt;
1499
1500 &lt;p&gt;The last week I&#39;ve fixed the DVD and USB stick ISOs for our Debian
1501 Edu Wheezy release. These ISOs are supposed to be able to install a
1502 complete system without any Internet connection, but for that to
1503 happen all the needed packages need to be on them. Thanks to our test
1504 suite, I discovered that we had forgotten to adjust our PXE setup to
1505 cope with the new names and paths used by the netboot d-i packages.
1506 When Internet connectivity was available, the installer fall back to
1507 using wget to fetch d-i boot images, but when offline it require
1508 working packages to get it working. And the packages changed name
1509 from debian-installer-6.0-netboot-$arch to
1510 debian-installer-7.0-netboot-$arch, we no longer pulled in the
1511 packages during installation. Without our test suite, I suspect we
1512 would never have discovered this before release. Now it is fixed
1513 right after we got the ISOs operational.&lt;/p&gt;
1514
1515 &lt;p&gt;Another by-product of the test suite is that we can ask system
1516 administrators with problems getting Debian Edu to work, to run the
1517 test suite using &lt;tt&gt;/usr/sbin/debian-edu-test-install&lt;/tt&gt; and see if
1518 any errors are detected. This usually pinpoint the subsystem causing
1519 the problem.&lt;/p&gt;
1520
1521 &lt;p&gt;If you want to help us help kids learn how to share and create,
1522 please join us on
1523 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
1524 irc.debian.org&lt;/a&gt; and the
1525 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@&lt;/a&gt; mailing
1526 list.&lt;/p&gt;
1527 </description>
1528 </item>
1529
1530 <item>
1531 <title>Debian Edu interview: Victor Nițu</title>
1532 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</link>
1533 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</guid>
1534 <pubDate>Mon, 17 Jun 2013 10:50:00 +0200</pubDate>
1535 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
1536 Skolelinux&lt;/a&gt; distribution have users and contributors all around the
1537 globe. And a while back, an enterprising young man showed up on
1538 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;our IRC channel
1539 #debian-edu&lt;/a&gt; and started asking questions about how Debian Edu
1540 worked. We answered as good as we could, and even convinced him to
1541 help us with translations. And today I managed to get an interview
1542 with him, to learn more about him.&lt;/p&gt;
1543
1544 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1545
1546 &lt;p&gt;I&#39;m a 25 year old free software enthusiast, living in Romania,
1547 which is also my country of origin. Back in 2009, at a New Year&#39;s Eve
1548 party, I had a very nice &lt;strike&gt;beer&lt;/strike&gt; discussion with a
1549 friend, when we realized we have no organised Debian community in our
1550 country. A few days later, we put together the infrastructure for such
1551 community and even gathered a nice Debian-ish crowd. Since then, I
1552 began my quest as a free software hacker and activist and I am
1553 constantly trying to cover as much ground as possible on that
1554 field.&lt;/p&gt;
1555
1556 &lt;p&gt;A few years ago I founded a small web development company, which
1557 provided me the flexible schedule I needed so much for my
1558 activities. For the last 13 months, I have been the Technical Director
1559 of &lt;a href=&quot;http://ceata.org/&quot;&gt;Fundația Ceata&lt;/a&gt;, which is a free
1560 software activist organisation endorsed by the FSF and the FSFE, and
1561 the only one we have in our country.&lt;/p&gt;
1562
1563 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1564 project?&lt;/strong&gt;&lt;/p&gt;
1565
1566 &lt;p&gt;The idea of participating in the Debian Edu project was a surprise
1567 even to me, since I never used it before I began getting involved in
1568 it. This year I had a great opportunity to deliver a talk on
1569 educational software, and I knew immediately where to look. It was a
1570 love at first sight, since I was previously involved with some of the
1571 technologies the project incorporates, and I rapidly found a lot of
1572 ways to contribute.&lt;/p&gt;
1573
1574 &lt;p&gt;My first contributions consisted in translating the installer and
1575 configuration dialogs, then I found some bugs to squash (I still
1576 haven&#39;t fixed them yet though), and I even got my eyes on some other
1577 areas where I can prove myself helpful. Since the appetite for free
1578 software in my country is pretty low, I&#39;ll be happy to be the first
1579 one around here advocating for the project&#39;s adoption in educational
1580 environments, and maybe even get my hands dirty in creating a flavour
1581 for our own needs. I am not used to make very advanced plannings, so
1582 from now on, time will tell what I&#39;ll be doing next, but I think I
1583 have a pretty consistent starting point.&lt;/p&gt;
1584
1585 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
1586 Edu?&lt;/strong&gt;&lt;/p&gt;
1587
1588 &lt;p&gt;Not a long time ago, I was in the position of configuring and
1589 maintaining a LDAP server on some Debian derivative, and I must say it
1590 took me a while. A long time ago, I was maintaining a bigger
1591 Samba-powered infrastructure, and I must say I spent quite a lot of
1592 time on it. I have similar stories about many of the services included
1593 with Skolelinux, and the main advantage I see about it is the
1594 out-of-the box availability of them, making it quite competitive when
1595 it comes to managing a school&#39;s network, for example.&lt;/p&gt;
1596
1597 &lt;p&gt;Of course, there is more to say about Skolelinux than the
1598 availability of the software included, its flexibility in various
1599 scenarios is something I can&#39;t wait to experiment &quot;into the wild&quot; (I
1600 only played with virtual machines so far). And I am sure there is a
1601 lot more I haven&#39;t discovered yet about it, being so new within the
1602 project.&lt;/p&gt;
1603
1604 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
1605 Edu?&lt;/strong&gt;&lt;/p&gt;
1606
1607 &lt;p&gt;As usual, when it comes to Debian Blends, I see as the biggest
1608 disadvantage the lack of a numerous team dedicated to the
1609 project. Every day I see the same names in the changelogs, and I have
1610 a constantly fear of the bus factor in this story. I&#39;d like to see
1611 Debian Edu advertised more as an entry point into the Debian
1612 ecosystem, especially amongst newcomers and students. IMHO there are a
1613 lot low-hanging fruits in terms of bug squashing, and enough
1614 opportunities to get the feeling of the Debian Project&#39;s dynamics. Not
1615 to mention it&#39;s a very fun blend to work on!&lt;/p&gt;
1616
1617 &lt;p&gt;Derived from the previous statement, is the delay in catching up
1618 with the main Debian release and documentation. This is common though
1619 to all blends and derivatives, but it&#39;s an issue we can all work
1620 on.&lt;/p&gt;
1621
1622 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
1623
1624 &lt;p&gt;I can hardly imagine myself spending a day without Vim, since my
1625 daily routine covers writing code and hacking configuration files. I
1626 am a fan of the Awesome window manager (but I also like the
1627 Enlightenment project a lot!),
1628 &lt;a href=&quot;http://www.claws-mail.org/‎&quot;&gt;Claws Mail&lt;/a&gt; due to its ease of
1629 use and very configurable behaviour. Recently I fell in love with
1630 &lt;a href=&quot;https://launchpad.net/redshift&quot;&gt;Redshift&lt;/a&gt;, which helps me
1631 get through the night without headaches. Of course, there is much more
1632 stuff in this bag, but I&#39;ll need a blog on my own for doing this!&lt;/p&gt;
1633
1634 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
1635 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
1636
1637 &lt;p&gt;Well, on this field, I cannot do much more than experiment right
1638 now. So, being far from having a recipe for success, I can only assume
1639 that:&lt;/p&gt;
1640
1641 &lt;ul&gt;
1642
1643 &lt;li&gt;schools would like to get rid of proprietary software&lt;/li&gt;
1644
1645 &lt;li&gt;students will love the openness of the system, and will want to
1646 experiment with it - maybe we need to harvest the native curiosity
1647 of teenagers more?&lt;/li&gt;
1648
1649 &lt;li&gt;there is no &quot;right one&quot; when it comes to strategies, but it would
1650 be useful to have some success stories published somewhere, so
1651 other can get some inspiration from them (I know I&#39;d promote
1652 them!)&lt;/li&gt;
1653
1654 &lt;li&gt;more active promotion - talks, conferences, even small school
1655 lectures can do magical things if they encounter at least one
1656 person interested. Who knows who that person might be? ;-)&lt;/li&gt;
1657
1658 &lt;/ul&gt;
1659
1660 &lt;p&gt;I also see some problems in getting Skolelinux into schools; for
1661 example, in our country we have a great deal of corruption issues, so
1662 it might be hard(er) to fight against proprietary solutions. Also,
1663 people who relied on commercial software for all their lives, would be
1664 very hard to convert against their will.&lt;/p&gt;
1665 </description>
1666 </item>
1667
1668 <item>
1669 <title>Debian Edu interview: Jonathan Carter</title>
1670 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</link>
1671 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</guid>
1672 <pubDate>Wed, 12 Jun 2013 09:50:00 +0200</pubDate>
1673 <description>&lt;p&gt;There is a certain cross-over between the
1674 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
1675 project&lt;/a&gt; and &lt;a href=&quot;http://www.edubuntu.org/&quot;&gt;the Edubuntu
1676 project&lt;/a&gt;, and for example the LTSP packages in Debian are a joint
1677 effort between the projects. One person with a foot in both camps is
1678 Jonathan Carter, which I am now happy to present to you.&lt;/p&gt;
1679
1680 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1681
1682 &lt;p&gt;I&#39;m a South-African free software geek who lives in Cape Town. My
1683 days vary quite a bit since I&#39;m involved in too many things. As I&#39;m
1684 getting older I&#39;m learning how to focus a bit more :)&lt;/p&gt;
1685
1686 &lt;p&gt;I&#39;m also an Edubuntu contributor and I love when there are
1687 opportunities for the Edubuntu and Debian Edu projects to benefit from
1688 each other.&lt;/p&gt;
1689
1690 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1691 project?&lt;/strong&gt;&lt;/p&gt;
1692
1693 &lt;p&gt;I&#39;ve been somewhat familiar with the project before, but I think my
1694 first direct exposure to the project was when I met Petter
1695 [Reinholdtsen] and Knut [Yrvin] at the Edubuntu summit in 2005 in
1696 London. They provided great feedback that helped the bootstrapping of
1697 Edubuntu. Back then Edubuntu (and even Ubuntu) was still very new and
1698 it was great getting input from people who have been around longer. I
1699 was also still very excitable and said yes to everything and to this
1700 day I have a big todo list backlog that I&#39;m catching up with. I think
1701 over the years the relationship between Edubuntu and Debian-Edu has
1702 been gradually improving, although I think there&#39;s a lot that we could
1703 still improve on in terms of working together on packages. I&#39;m sure
1704 we&#39;ll get there one day.&lt;/p&gt;
1705
1706 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
1707 Edu?&lt;/strong&gt;&lt;/p&gt;
1708
1709 &lt;p&gt;Debian itself already has so many advantages. I could go on about
1710 it for pages, but in essence I love that it&#39;s a very honest project
1711 that puts its users first with no hidden agendas and also produces
1712 very high quality work.&lt;/p&gt;
1713
1714 &lt;p&gt;I think the advantage of Debian Edu is that it makes many common
1715 set-up tasks simpler so that administrators can get up and running
1716 with a lot less effort and frustration. At the same time I think it
1717 helps to standardise installations in schools so that it&#39;s easier for
1718 community members and commercial suppliers to support.&lt;/p&gt;
1719
1720 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
1721 Edu?&lt;/strong&gt;&lt;/p&gt;
1722
1723 &lt;p&gt;I had to re-type this one a few times because I&#39;m trying to
1724 separate &quot;disadvantages&quot; from &quot;areas that need improvement&quot; (which is
1725 what I originally rambled on about)&lt;/p&gt;
1726
1727 &lt;p&gt;The biggest disadvantage I can think of is lack of manpower. The
1728 project could do so much more if there were more good contributors. I
1729 think some of the problems are external too. Free software and free
1730 content in education is a no-brainer but it takes some time to catch
1731 on. When you&#39;ve been working with the same proprietary eco-system for
1732 years and have gotten used to it, it can be hard to adjust to some
1733 concepts in the free software world. It would be nice if there were
1734 more Debian Edu consultants across the world. I&#39;d love to be one
1735 myself but I&#39;m already so over-committed that it&#39;s just not possible
1736 currently.&lt;/p&gt;
1737
1738 &lt;p&gt;I think the best short-term solution to that large-scale problem is
1739 for schools to be pro-active and share their experiences and grow
1740 their skills in-house. I&#39;m often saddened to see how much money
1741 educational institutions spend on 3rd party solutions that they don&#39;t
1742 have access to after the service has ended and they could&#39;ve gotten so
1743 much more value otherwise by being more self-sustainable and
1744 autonomous.&lt;/p&gt;
1745
1746 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
1747
1748 &lt;p&gt;My main laptop dual-boots between Debian and Windows 7. I was
1749 Windows free for years but started dual-booting again last year for
1750 some games which help me focus and relax (Starcraft II in
1751 particular). Gaming support on Linux is improving in leaps and bounds
1752 so I suppose I&#39;ll soon be able to regain that disk space :)&lt;/p&gt;
1753
1754 &lt;p&gt;Besides that I rely on Icedove, Chromium, Terminator, Byobu, irssi,
1755 git, Tomboy, KVM, VLC and LibreOffice. Recently I&#39;ve been torn on
1756 which desktop environment I like and I&#39;m taking some refuge in Xfce
1757 while I figure that out. I like tools that keep things simple. I enjoy
1758 Python and shell scripting. I went to an Arduino workshop recently and
1759 it was awesome seeing how easy and simple the IDE software was to get
1760 up and running in Debian compared to the users running Windows and OS
1761 X.&lt;/p&gt;
1762
1763 &lt;p&gt;I also use mc which some people frown upon slightly. I got used to
1764 using Norton Commander in the early 90&#39;s and it stuck (I think the
1765 people who sneer at it is just jealous that they don&#39;t know how to use
1766 it :p)
1767
1768 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
1769 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
1770
1771 &lt;p&gt;I think trying to force it is unproductive. I also think that in
1772 many cases it&#39;s appropriate for schools to use non-free systems and I
1773 don&#39;t think that there&#39;s any particular moral or ethical problem with
1774 that.&lt;/p&gt;
1775
1776 &lt;p&gt;I do think though that free software can already solve so so many
1777 problems in educational institutions and it&#39;s just a shame not taking
1778 advantage of that.&lt;/p&gt;
1779
1780 &lt;p&gt;I also think that some curricula need serious review. For example,
1781 some areas of the world rely heavily on very specific versions of MS
1782 Office, teaching students to parrot menu items instead of learning the
1783 general concepts. I think that&#39;s very unproductive because firstly, MS
1784 Office&#39;s interface changes drastically every few years and on top of
1785 that it also locks in a generation to a product that might not be the
1786 best solution for them.&lt;/p&gt;
1787
1788 &lt;p&gt;To answer your question, I believe that the right strategy is to
1789 educate and inform, giving someone the information they require to
1790 make a decision that would work for them.&lt;/p&gt;
1791 </description>
1792 </item>
1793
1794 <item>
1795 <title>Third alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
1796 <link>http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
1797 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
1798 <pubDate>Mon, 10 Jun 2013 22:50:00 +0200</pubDate>
1799 <description>&lt;p&gt;The third wheezy based alpha release of Debian Edu was wrapped up
1800 today. This is the release announcement:&lt;/p&gt;
1801
1802 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha2 released
1803 2013-06-10&lt;/strong&gt;&lt;/p&gt;
1804
1805 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
1806 alpha2, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1807
1808 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1809
1810 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1811 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1812 out-of-the box environment of a completely configured school
1813 network. Immediately after installation a school server running all
1814 services needed for a school network is set up just waiting for users
1815 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1816 environment is prepared using PXE, so after initial installation of
1817 the main server from CD, DVD or USB stick all other machines can be
1818 installed via the network. The provided school server provides LDAP
1819 database and Kerberos authentication service, centralized home
1820 directories, DHCP server, web proxy and many other services. The
1821 desktop contains
1822 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1823 than 60 educational software packages&lt;/a&gt; and more are available from
1824 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1825 and Xfce desktop environment.&lt;/p&gt;
1826
1827 &lt;p&gt;This is the third test release based on Debian Wheezy. Basically
1828 this is an updated and slightly improved version compared to the
1829 Squeeze release.&lt;/p&gt;
1830
1831 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1832
1833 &lt;ul&gt;
1834
1835 &lt;li&gt;Iceweasel was updated from 10 to 17. (DSA 2699-1)
1836 &lt;li&gt;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).
1837 &lt;li&gt;Switched xrdp on thin client servers to use tightvncserver instead of xvnc4.
1838 &lt;li&gt;Now install software oscilloscope xoscope by default.
1839 &lt;li&gt;Now install music tools gtick, lingot and pianobooster by default.
1840
1841 &lt;/ul&gt;
1842
1843 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1844
1845 &lt;ul&gt;
1846
1847 &lt;li&gt;The subnet-change script is now able to change all files needing a change on the main-server when changing the IP network used.
1848 &lt;li&gt;Updated translation of the installation.
1849 &lt;li&gt;New Romanian translation.
1850 &lt;li&gt;Fix security problem causing root and first user password to no longer show up in /var/cache/debconf/templates.dat.
1851 &lt;li&gt;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).
1852 &lt;li&gt;Made roaming workstation setup more robust in non-Debian Edu environments.
1853 &lt;li&gt;New script debian-edu-bless to transform a Debian installation to a Debian Edu profile.
1854 &lt;li&gt;Adjust Iceweasel setup to improve performance when $HOME is on NFS.
1855 &lt;li&gt;More testsuite tests.
1856 &lt;li&gt;Make automatic proxy configuration more robust.
1857 &lt;li&gt;Adjust GOsa² GUI configuration.
1858
1859 &lt;li&gt;Update thin client and diskless workstation setup to work with
1860 LTSP in Wheezy.&lt;/li&gt;
1861
1862 &lt;li&gt;Diskless workstations now run out of the box -- no need to set
1863 them up with GOsa².&lt;/li&gt;
1864
1865 &lt;li&gt;Update IMAP server setup. &lt;/li&gt;
1866
1867 &lt;li&gt;Fix login into Skolelinux Backup Tool (Closed in
1868 slbackup-php/0.4.4-1: #700257: slbackup-php: Fails to submit correctly
1869 entered password). &lt;/li&gt;
1870
1871 &lt;/ul&gt;
1872
1873 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1874
1875 &lt;ul&gt;
1876
1877 &lt;li&gt;DVD binary and source images are not yet ready.&lt;/li&gt;
1878
1879 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
1880 available yet (Open in gosa/2.7.4-4: #698840: gosa-plugin-ldapmanager:
1881 missing import feature).&lt;/li&gt;
1882
1883 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others). &lt;/li&gt;
1884
1885 &lt;li&gt;KDE Debian submenu lacks icons (Closed: #502192: menu-xdg: invents
1886 own icon names instead of using existing). This will remain
1887 unfixed.&lt;/li&gt;
1888
1889 &lt;/ul&gt;
1890
1891 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1892
1893 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1894
1895 &lt;ul&gt;
1896
1897 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&lt;/a&gt;&lt;/li&gt;
1898
1899 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&lt;/a&gt;&lt;/li&gt;
1900
1901 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso .&lt;/li&gt;
1902
1903 &lt;/ul&gt;
1904
1905 &lt;p&gt;The MD5SUM of this image is: 27bbcace407743382f3c42c08dbe8178
1906 &lt;br&gt;The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419&lt;/p&gt;
1907
1908 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1909
1910 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;
1911 </description>
1912 </item>
1913
1914 <item>
1915 <title>Is there a PHP expert in the building? Debian Edu need help!</title>
1916 <link>http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</link>
1917 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</guid>
1918 <pubDate>Wed, 5 Jun 2013 17:50:00 +0200</pubDate>
1919 <description>&lt;p&gt;Here is a call for help from the Debian Edu / Skolelinux project.
1920 We have two problems blocking the release of the Wheezy version we
1921 hope to get released soon. The two problems require some with PHP
1922 skills, and we seem to lack anyone with both time and PHP skills in
1923 the project:
1924
1925 &lt;ol&gt;
1926
1927 &lt;li&gt;It is impossible to log into the slbackup web interface
1928 (slbackup-php) using the root user and password. This is
1929 &lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;BTS report #700257&lt;/a&gt;.
1930 This used to work, but stopped working some time since Squeeze.
1931 Perhaps some obsolete PHP feature was used?&lt;/li&gt;
1932
1933 &lt;li&gt;It is not possible to &quot;mass import&quot; user lists in Gosa, neither
1934 using ldif nor using CSV files. The feature was disabled after a
1935 major rewrite of Gosa, and need to be ported to the new system.
1936 This is &lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;BTS report
1937 #698840&lt;/a&gt;.&lt;/li&gt;
1938
1939 &lt;/ol&gt;
1940
1941 &lt;p&gt;If you can help us, please join us on IRC
1942 (&lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
1943 irc.debian.org&lt;/a&gt;) and provide patches via the BTS.&lt;/p&gt;
1944 </description>
1945 </item>
1946
1947 <item>
1948 <title>Debian Edu interview: Cédric Boutillier</title>
1949 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</link>
1950 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</guid>
1951 <pubDate>Tue, 4 Jun 2013 10:30:00 +0200</pubDate>
1952 <description>&lt;p&gt;It has been a while since my last English
1953 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
1954 interview last November. But the developers and translators are still
1955 pulling along to get the Wheezy based release out the door, and this
1956 time I managed to get an interview from one of the French translators
1957 in the project, Cédric Boutillier.&lt;/p&gt;
1958
1959 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1960
1961 &lt;p&gt;I am 34 year old. I live near Paris, France. I am an assistant
1962 professor in probability theory. I spend my daytime teaching
1963 mathematics at the university and doing fundamental research in
1964 probability in connexion with combinatorics and statistical physics.&lt;/p&gt;
1965
1966 &lt;p&gt;I have been involved in the Debian project for a couple of years
1967 and became Debian Developer a few months ago. I am working on Ruby
1968 packaging, publicity and translation.&lt;/p&gt;
1969
1970 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1971 project?&lt;/strong&gt;&lt;/p&gt;
1972
1973 &lt;p&gt;I came to the Debian Edu project after a call for translation of
1974 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Manuals&quot;&gt;the
1975 Debian Edu manual&lt;/a&gt; for the release of Debian Edu Squeeze. Since
1976 then, I have been working on updating the French translation of the
1977 manual.
1978
1979 &lt;p&gt;I had the opportunity to make an installation of Debian Edu in a
1980 virtual machine when I was preparing localised version of some screen
1981 shots for the manual. I was amazed to see it worked out of the box and
1982 how comprehensive the list of software installed by default was.&lt;/p&gt;
1983
1984 &lt;p&gt;What amazed me was the complete network infrastructure directly
1985 ready to use, which can and the nice administration interface provided
1986 by &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa²&lt;/a&gt;. What pleased
1987 me also was the fact that among the software installed by default,
1988 there were many &quot;traditional&quot; educative software to learn languages,
1989 to count, to program... but also software to develop creativity and
1990 artistic skills with music (&lt;a href=&quot;http://ardour.org/&quot;&gt;Ardour&lt;/a&gt;,
1991 &lt;a href=&quot;http://audacity.sourceforge.net/&quot;&gt;Audacity&lt;/a&gt;) and
1992 movies/animation (I was especially thinking of
1993 &lt;a href=&quot;http://linuxstopmotion.sourceforge.net/&quot;&gt;Stopmotion&lt;/a&gt;).&lt;/p&gt;
1994
1995 &lt;p&gt;I am following the development of Debian Edu and am hanging out on
1996 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu&lt;/a&gt;.
1997 Unfortunately, I don&#39;t much time to get more involved in this
1998 beautiful project.&lt;/p&gt;
1999
2000 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
2001 Edu?&lt;/strong&gt;&lt;/p&gt;
2002
2003 &lt;p&gt;For me, the main advantages of Skolelinux/Debian Edu are its
2004 community of experts and its precise documentation, as well as the
2005 fact that it provides a solution ready to use.&lt;/p&gt;
2006
2007 &lt;p&gt;I would add also the fact that it is based on the rock solid Debian
2008 distribution, which ensures stability and provides a huge collection
2009 of educational free software.&lt;/p&gt;
2010
2011 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2012 Edu?&lt;/strong&gt;&lt;/p&gt;
2013
2014 &lt;p&gt;Maybe the lack of manpower to do lobbying on the
2015 project. Sometimes, people who need to take decisions concerning IT do
2016 not have all the elements to evaluate properly free software
2017 solutions. The fact that support by a company may be difficult to find
2018 is probably a problem if the school does not have IT personnel.&lt;/p&gt;
2019
2020 &lt;p&gt;One can find support from a company by looking at
2021 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp&quot;&gt;the
2022 wiki dokumentation&lt;/a&gt;, where some countries already have a number of
2023 companies providing support for Debian Edu, like Germany or
2024 Norway. This list is easy to find readily from the manual. However,
2025 for other countries, like France, the list is empty. I guess that
2026 consultants proposing support for Debian would be able to provide some
2027 support for Debian Edu as well.&lt;/p&gt;
2028
2029 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2030
2031 &lt;p&gt;I am using the KDE Plasma Desktop. But the pieces of software I use
2032 most runs in a terminal: Mutt and OfflineIMAP for emails, latex for
2033 scientific documents, mpd for music. VIM is my editor of choice. I am
2034 also using the mathematical software
2035 &lt;a href=&quot;http://www.scilab.org/en/scilab/about‎&quot;&gt;Scilab&lt;/a&gt; and
2036 &lt;a href=&quot;http://www.sagemath.org/index.html‎&quot;&gt;Sage&lt;/a&gt; (built from
2037 source as not completely packaged for Debian, yet).
2038
2039 &lt;p&gt;&lt;strong&gt;Do you have any suggestions for teachers interested in
2040 using the free software in Debian to teach mathematics and
2041 statistics?&lt;/strong&gt;&lt;/p&gt;
2042
2043 &lt;p&gt;I do not have any &quot;nice&quot; recommendations for statistics. At our
2044 university, we use both &lt;a href=&quot;http://www.r-project.org/‎&quot;&gt;R&lt;/a&gt; and
2045 Scilab to teach statistics and probabilistic simulations. For
2046 geometry, there are nice programs:&lt;/p&gt;
2047
2048 &lt;ul&gt;
2049
2050 &lt;li&gt;&lt;a href=&quot;http://www.drgeo.eu/&quot;&gt;drgeo&lt;/a&gt; and
2051 &lt;a href=&quot;http://edu.kde.org/applications/all/kig‎&quot;&gt;kig&lt;/a&gt; to do
2052 constructions in planar geometry
2053
2054 &lt;li&gt;&lt;a href=&quot;http://www.geom.uiuc.edu/software/download/kali.html&quot;&gt;kali&lt;/a&gt;
2055 to discover symmetry groups (the so-called wallpapers and frieze
2056 groups), although the interface looks a bit old.&lt;/li&gt;
2057
2058 &lt;/ul&gt;
2059
2060 &lt;p&gt;I like also
2061 &lt;a href=&quot;http://edu.kde.org/applications/all/cantor&quot;&gt;cantor&lt;/a&gt;, which
2062 provides a uniform interface to SciLab, Sage,
2063 &lt;a href=&quot;http://directory.fsf.org/wiki/Octave‎&quot;&gt;Octave&lt;/a&gt;, etc...&lt;/p&gt;
2064
2065 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2066 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2067
2068 &lt;p&gt;My suggestions would be to&lt;/p&gt;
2069
2070 &lt;ul&gt;
2071
2072 &lt;li&gt;advertise the reduction of costs when free software is used.&lt;/li&gt;
2073
2074 &lt;li&gt;communicate about the quality of free software projects, using
2075 well known examples like Firefox, ThunderBird and
2076 OpenOffice.org/LibreOffice.&lt;/li&gt;
2077
2078 &lt;li&gt;advertise the living and strong community around the project.&lt;/li&gt;
2079
2080 &lt;li&gt;show that it is not more difficult to use than any other
2081 system.&lt;/li&gt;
2082
2083 &lt;/ul&gt;
2084 </description>
2085 </item>
2086
2087 <item>
2088 <title>Educational applications included in Debian Edu / Skolelinux (the screenshot collection :-)</title>
2089 <link>http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</link>
2090 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</guid>
2091 <pubDate>Sat, 1 Jun 2013 23:50:00 +0200</pubDate>
2092 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
2093 Skolelinux&lt;/a&gt;, there are quite a lot of educational software.
2094 Created to help teachers teach, and pupils learn. We have tried to
2095 tag them all using debtags use::learning and role::program, and using
2096 the debtags I was happy to be able to create a collage of the
2097 educational software packages installed by default, sorted by the
2098 debtag field. Here it is. Click on a image to learn more about the
2099 program.&lt;/p&gt;
2100
2101 &lt;!-- for f in $(debtags tagcat|grep field::|awk &#39;{print $2}&#39;); do echo; echo &quot;&lt;p&gt;&lt;strong&gt;$f&lt;/strong&gt;&lt;/p&gt;&quot;; echo &quot;&lt;p&gt;&quot;; ( for p in $(debtags search --names &quot;use::learning &amp;&amp; interface::x11 &amp;&amp; role::program &amp;&amp; $f&quot;); do img=&quot;&lt;img src=&#39;http://screenshots.debian.net/thumbnail/$p&#39; alt=&#39;$p&#39;&gt;&quot;; if dpkg -s $p &gt; /dev/null 2&gt;&amp;1; then echo &quot;&lt;a href=&#39;http://packages.qa.debian.org/$p&#39;&gt;$img&lt;/a&gt;&quot;; fi; done; ) | LANG=C sort; echo &quot;&lt;/p&gt;&quot;; done --&gt;
2102
2103 &lt;p&gt;&lt;strong&gt;field::arts&lt;/strong&gt;&lt;/p&gt;
2104 &lt;p&gt;
2105 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=audacity&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/audacity.png&#39; alt=&#39;audacity&#39;&gt;&lt;/a&gt;
2106 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2107 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=denemo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/denemo.png&#39; alt=&#39;denemo&#39;&gt;&lt;/a&gt;
2108 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=freebirth&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/freebirth.png&#39; alt=&#39;freebirth&#39;&gt;&lt;/a&gt;
2109 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2110 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gimp&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gimp.png&#39; alt=&#39;gimp&#39;&gt;&lt;/a&gt;
2111 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=hydrogen&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/hydrogen.png&#39; alt=&#39;hydrogen&#39;&gt;&lt;/a&gt;
2112 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=lilypond&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lilypond.png&#39; alt=&#39;lilypond&#39;&gt;&lt;/a&gt;
2113 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=lmms&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lmms.png&#39; alt=&#39;lmms&#39;&gt;&lt;/a&gt;
2114 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=rosegarden&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rosegarden.png&#39; alt=&#39;rosegarden&#39;&gt;&lt;/a&gt;
2115 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scribus&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scribus.png&#39; alt=&#39;scribus&#39;&gt;&lt;/a&gt;
2116 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=solfege&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/solfege.png&#39; alt=&#39;solfege&#39;&gt;&lt;/a&gt;
2117 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=stopmotion&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stopmotion.png&#39; alt=&#39;stopmotion&#39;&gt;&lt;/a&gt;
2118 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=tuxpaint&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxpaint.png&#39; alt=&#39;tuxpaint&#39;&gt;&lt;/a&gt;
2119 &lt;/p&gt;
2120
2121 &lt;p&gt;&lt;strong&gt;field::astronomy&lt;/strong&gt;&lt;/p&gt;
2122 &lt;p&gt;
2123 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=celestia-gnome&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/celestia-gnome.png&#39; alt=&#39;celestia-gnome&#39;&gt;&lt;/a&gt;
2124 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gpredict&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gpredict.png&#39; alt=&#39;gpredict&#39;&gt;&lt;/a&gt;
2125 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kstars&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kstars.png&#39; alt=&#39;kstars&#39;&gt;&lt;/a&gt;
2126 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=planets&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/planets.png&#39; alt=&#39;planets&#39;&gt;&lt;/a&gt;
2127 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=stellarium&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stellarium.png&#39; alt=&#39;stellarium&#39;&gt;&lt;/a&gt;
2128 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xplanet&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png&#39; alt=&#39;xplanet&#39;&gt;&lt;/a&gt;
2129 &lt;/p&gt;
2130
2131 &lt;p&gt;&lt;strong&gt;field::biology:structural&lt;/strong&gt;&lt;/p&gt;
2132 &lt;p&gt;
2133 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=pymol&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png&#39; alt=&#39;pymol&#39;&gt;&lt;/a&gt;
2134 &lt;/p&gt;
2135
2136 &lt;p&gt;&lt;strong&gt;field::chemistry&lt;/strong&gt;&lt;/p&gt;
2137 &lt;p&gt;
2138 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=atomix&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/atomix.png&#39; alt=&#39;atomix&#39;&gt;&lt;/a&gt;
2139 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=chemtool&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/chemtool.png&#39; alt=&#39;chemtool&#39;&gt;&lt;/a&gt;
2140 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=easychem&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/easychem.png&#39; alt=&#39;easychem&#39;&gt;&lt;/a&gt;
2141 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gchempaint&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gchempaint.png&#39; alt=&#39;gchempaint&#39;&gt;&lt;/a&gt;
2142 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gdis&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gdis.png&#39; alt=&#39;gdis&#39;&gt;&lt;/a&gt;
2143 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=ghemical&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ghemical.png&#39; alt=&#39;ghemical&#39;&gt;&lt;/a&gt;
2144 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gperiodic&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gperiodic.png&#39; alt=&#39;gperiodic&#39;&gt;&lt;/a&gt;
2145 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kalzium&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalzium.png&#39; alt=&#39;kalzium&#39;&gt;&lt;/a&gt;
2146 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=pymol&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png&#39; alt=&#39;pymol&#39;&gt;&lt;/a&gt;
2147 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=viewmol&#39;&gt;[viewmol]&lt;/a&gt;
2148 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xdrawchem&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xdrawchem.png&#39; alt=&#39;xdrawchem&#39;&gt;&lt;/a&gt;
2149 &lt;/p&gt;
2150
2151 &lt;p&gt;&lt;strong&gt;field::electronics&lt;/strong&gt;&lt;/p&gt;
2152 &lt;p&gt;
2153 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2154 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gpsim&#39;&gt;[gpsim]&lt;/a&gt;
2155 &lt;/p&gt;
2156
2157 &lt;p&gt;&lt;strong&gt;field::geography&lt;/strong&gt;&lt;/p&gt;
2158 &lt;p&gt;
2159 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kgeography&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kgeography.png&#39; alt=&#39;kgeography&#39;&gt;&lt;/a&gt;
2160 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=marble&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/marble.png&#39; alt=&#39;marble&#39;&gt;&lt;/a&gt;
2161 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xplanet&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png&#39; alt=&#39;xplanet&#39;&gt;&lt;/a&gt;
2162 &lt;/p&gt;
2163
2164 &lt;p&gt;&lt;strong&gt;field::linguistics&lt;/strong&gt;&lt;/p&gt;
2165 &lt;p&gt;
2166 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2167 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kanagram&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kanagram.png&#39; alt=&#39;kanagram&#39;&gt;&lt;/a&gt;
2168 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=khangman&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/khangman.png&#39; alt=&#39;khangman&#39;&gt;&lt;/a&gt;
2169 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=klettres&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/klettres.png&#39; alt=&#39;klettres&#39;&gt;&lt;/a&gt;
2170 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=parley&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/parley.png&#39; alt=&#39;parley&#39;&gt;&lt;/a&gt;
2171 &lt;/p&gt;
2172
2173 &lt;p&gt;&lt;strong&gt;field::mathematics&lt;/strong&gt;&lt;/p&gt;
2174 &lt;p&gt;
2175 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2176 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=drgeo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/drgeo.png&#39; alt=&#39;drgeo&#39;&gt;&lt;/a&gt;
2177 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2178 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=geogebra&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/geogebra.png&#39; alt=&#39;geogebra&#39;&gt;&lt;/a&gt;
2179 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=geomview&#39;&gt;[geomview]&lt;/a&gt;
2180 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=grace&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/grace.png&#39; alt=&#39;grace&#39;&gt;&lt;/a&gt;
2181 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=graphmonkey&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphmonkey.png&#39; alt=&#39;graphmonkey&#39;&gt;&lt;/a&gt;
2182 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=graphthing&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphthing.png&#39; alt=&#39;graphthing&#39;&gt;&lt;/a&gt;
2183 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kalgebra&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalgebra.png&#39; alt=&#39;kalgebra&#39;&gt;&lt;/a&gt;
2184 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kbruch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kbruch.png&#39; alt=&#39;kbruch&#39;&gt;&lt;/a&gt;
2185 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kig&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kig.png&#39; alt=&#39;kig&#39;&gt;&lt;/a&gt;
2186 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kmplot&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kmplot.png&#39; alt=&#39;kmplot&#39;&gt;&lt;/a&gt;
2187 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=mathwar&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/mathwar.png&#39; alt=&#39;mathwar&#39;&gt;&lt;/a&gt;
2188 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=rocs&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rocs.png&#39; alt=&#39;rocs&#39;&gt;&lt;/a&gt;
2189 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scratch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png&#39; alt=&#39;scratch&#39;&gt;&lt;/a&gt;
2190 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=tuxmath&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxmath.png&#39; alt=&#39;tuxmath&#39;&gt;&lt;/a&gt;
2191 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xabacus&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xabacus.png&#39; alt=&#39;xabacus&#39;&gt;&lt;/a&gt;
2192 &lt;/p&gt;
2193
2194 &lt;p&gt;&lt;strong&gt;field::physics&lt;/strong&gt;&lt;/p&gt;
2195 &lt;p&gt;
2196 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2197 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=step&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/step.png&#39; alt=&#39;step&#39;&gt;&lt;/a&gt;
2198 &lt;/p&gt;
2199
2200 &lt;p&gt;&lt;strong&gt;field::TODO&lt;/strong&gt;&lt;/p&gt;
2201 &lt;p&gt;
2202 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=blinken&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/blinken.png&#39; alt=&#39;blinken&#39;&gt;&lt;/a&gt;
2203 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=cgoban&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/cgoban.png&#39; alt=&#39;cgoban&#39;&gt;&lt;/a&gt;
2204 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2205 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2206 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gnuchess&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnuchess.png&#39; alt=&#39;gnuchess&#39;&gt;&lt;/a&gt;
2207 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gnugo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnugo.png&#39; alt=&#39;gnugo&#39;&gt;&lt;/a&gt;
2208 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gtans&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gtans.png&#39; alt=&#39;gtans&#39;&gt;&lt;/a&gt;
2209 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=ktouch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ktouch.png&#39; alt=&#39;ktouch&#39;&gt;&lt;/a&gt;
2210 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=librecad&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/librecad.png&#39; alt=&#39;librecad&#39;&gt;&lt;/a&gt;
2211 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scratch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png&#39; alt=&#39;scratch&#39;&gt;&lt;/a&gt;
2212 &lt;/p&gt;
2213
2214 &lt;p&gt;In total, 61 applications. 3 of them lacked screen shots on
2215 &lt;a href=&quot;http://screenshot.debian.net&quot;&gt;screenshot.debian.net&lt;/a&gt;. If
2216 you know of some packages we should install by default, please let us
2217 know on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu
2218 on irc.debian.org&lt;/a&gt;, or our
2219 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;mailing list
2220 debian-edu@&lt;/a&gt;.&lt;/p&gt;
2221 </description>
2222 </item>
2223
2224 <item>
2225 <title>Skolelinux-intervju: Nirosan Thiyagalingam</title>
2226 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Nirosan_Thiyagalingam.html</link>
2227 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Nirosan_Thiyagalingam.html</guid>
2228 <pubDate>Fri, 24 May 2013 21:40:00 +0200</pubDate>
2229 <description>&lt;p&gt;En ting
2230 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux-prosjektet&lt;/a&gt; har
2231 hatt mye glede av er studentprosjekter. F.eks. er
2232 &lt;a href=&quot;http://linuxstopmotion.org/&quot;&gt;stillbildeanimasjonssystemet
2233 Stopmotion&lt;/a&gt; resultat av et studentprosjekt i Skolelinux. De siste
2234 månedene har en ivrig student veiledet av Marius Kotsbak i
2235 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRiSK&lt;/a&gt; testet hva en
2236 kan få til med en datamaskin til NOK 400,- (antagelig 1700,- med
2237 skjerm, tastatur og mus) når det brukes i Skolelinux. Jeg spurte han
2238 om et intervju.&lt;/p&gt;
2239
2240 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
2241
2242 &lt;p&gt;Jeg heter Nirosan Thiyagalingam. Jeg er 24 år og studerer
2243 dataingeniør studiet ved Høgskolen i Sør Trøndelag. Interessen for
2244 data har siden ung alder vært tilstede og jeg har i tillegg alltid
2245 vært glad i å lære nye ting. Med teknologi som endres svært hurtig er
2246 det alltid noe nytt å lære. Noe som igjen har gjort det svært
2247 interessant å følge med på utviklingen. Jeg valgte dataingeniør
2248 studiet grunnet ønske om å lære enda mer om programmering og utvikling
2249 av store systemer.&lt;/p&gt;
2250
2251 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
2252
2253 &lt;p&gt;Skolelinux prosjektet hørte jeg først om i media. Men det var først
2254 når jeg skulle velge bacheloroppgave at jeg fattet mer interesse for
2255 prosjektet. Et enkelt søk på nettet førte meg til skolelinux sine
2256 hjemmesider. Informasjonen jeg fant der gjorde meg enda nysgjerrig og
2257 jeg valgte derfor en oppgave som gikk ut på å få en
2258 &lt;a href=&quot;http://www.raspberrypi.org&quot;&gt;Raspberry PI&lt;/a&gt;. Altså en
2259 ultra-billig datamaskin til å kjøre Debian Edu på lik linje med
2260 vanlige datamaskiner. I løpet av prosjektet ble det gjort mye
2261 forskning på nettet. Det var mye jeg måtte forstå rundt hvordan
2262 operativsystemet Linux fungerte før jeg kunne angripe
2263 problemet. Prøvde først å finne ut hvordan man kunne transformere en
2264 vanlig installasjon av Skolelinux til Raspberry PI, men dette var
2265 altfor vanskelig å jeg endte opp med mer spørsmål enn svar. Det ble
2266 videre opprettet kontakt med Skolelinux utviklere på IRC der jeg fikk
2267 diskutert hvilken retning jeg burde gå for å få til en fullverdig
2268 løsning. Det ble bestemt at jeg skulle gå for å først installere
2269 &lt;a href=&quot;http://www.raspbian.org/&quot;&gt;Raspian&lt;/a&gt;. Dette er et
2270 operativsystem basert på Debian spesiallaget for Raspberry Pi sin
2271 maskinvare. Nå som Debian var installert på datamaskinen gjenstod det
2272 å installere de nødvendige Skolelinux pakkene for å få til et
2273 fullverdig system. Disse pakkene ble installert manuelt i første
2274 omgang, men ble senere installert automatisk via et script som Petter
2275 Reinholdtsen laget. Dette scriptet er så enkel å bruke at man er i
2276 gang med installasjonen i løpet av bare 5 minutter. Ikke nok med det,
2277 alt skjer helt automatisk. Alt i alt er jeg veldig fornøyd med
2278 resultatet av installasjonsprosessen. Raspberry Pi er en veldig svak
2279 maskin og det merkes godt når man har installert Skolelinux på
2280 den. Video og 3D-rendering fungerer utrolig dårlig, men nettsurfing og
2281 kontorprogrammer fungerer godt. Det kan derfor konkluderes med at
2282 datamaskinen er egnet for enkle oppgaver.
2283
2284 &lt;p&gt;Jeg syns det er viktig påpeke at dette kun er startfasen av en slik
2285 løsning. På markedet finnes det nå maskiner som har bedre hardware enn
2286 Raspberry Pi. Det er store muligheter for at man kan klare å
2287 installere Skolelinux på disse også, og da forsvinner nok mest
2288 sannsynlig ytelsesproblemene med Video og 3D rendering også.&lt;/p&gt;
2289
2290 &lt;p&gt;Det ble også prøvd med en løsning som gjorde at Raspberry Pi
2291 fungerte som en tynnklient. Denne løsningen hadde langt bedre ytelse
2292 med tanke på hastighet og brukeropplevelse. Men også her var video og
2293 3D rendering dårlig. Det ble brukt en liten Linux distribusjon kalt
2294 &lt;a href=&quot;http://www.berryterminal.com/&quot;&gt;BerryTerminal&lt;/a&gt; for å få til
2295 dette.&lt;/p&gt;
2296
2297 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
2298
2299 &lt;p&gt;Fordelen med Skolelinux er mange. At det er gratis er en stor
2300 fordel, men at det er så mange som er med på å utvikle det og
2301 vedlikeholde det er en enda større fordel. Allerede før jeg startet
2302 med prosjektet så jeg mange fordeler, og når jeg nærmet meg sluttfasen
2303 så jeg langt flere. At prosjektet skulle inneha en så høy kvalitet
2304 hadde jeg aldri trodd. En vanlig Skolelinux installasjon har de
2305 nødvendige programmene og funksjonen som både små og store skoler i
2306 tillegg til organisasjoner kan klare seg med. At prosjektet tilbyr en
2307 så komplett løsning er en kjempefordel. Installasjonen er knirkefri
2308 og det er svært enkelt å installere og komme i gang.&lt;/p&gt;
2309
2310 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
2311
2312 &lt;p&gt;Ulempene jeg ser med prosjektet er ryddigheten av websidene. Selv
2313 om websidene er enkle og konsise er det allikevel ikke appellerende i
2314 like stor grad som for eksempel
2315 &lt;a href=&quot;http://www.ubuntu.com&quot;&gt;Ubuntu&lt;/a&gt; sine sider. Deres side
2316 tilbyr, i tillegg til godt design og presentasjon, en nettbasert
2317 emulator av deres operativsystem. Dette er en stor fordel slik jeg ser
2318 det. Bortsett fra dette ser jeg absolutt ingen ulemper med
2319 Skolelinux-prosjektet.&lt;/p&gt;
2320
2321 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
2322
2323 &lt;p&gt;Til daglig er jeg en flittig bruker av det åpne media
2324 sentersystemet &lt;a href=&quot;http://xbmc.org/&quot;&gt;XBMC&lt;/a&gt;. Det enorme
2325 samfunnet rundt dette prosjektet har gjort dette til et program som
2326 dekker alles behov. Man kan tilpasse det akkurat slik man vil både med
2327 tanke på utseende og funksjoner ved installere plug-ins eller
2328 scripts.&lt;/p&gt;
2329
2330 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
2331 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
2332
2333 &lt;p&gt;Strategien som burde brukes sett fra mine øyne er
2334 markedsføring. Jeg er sikker på at om flere skoler fikk et lite innsyn
2335 i hvor bra Skolelinux er så ville de ikke nølt med å gå over fra noe
2336 annet som koster de store summer. At skolelinux til de grader tilbyr
2337 en så komplett løsning bure komme frem. Enten via reklamekampanjer
2338 eller ved å sende ut folk til skoler for så å la skolenettverk
2339 ansvarlige få teste ut hvordan Skolelinux fungerer i praksis. Om det
2340 i tillegg ble utviklet gode websider og en emulator for å la brukere
2341 prøve operativsystemet ville nok dette ha styrket inntrykket
2342 betraktelig.&lt;/p&gt;
2343 </description>
2344 </item>
2345
2346 <item>
2347 <title>How to transform a Debian based system to a Debian Edu installation</title>
2348 <link>http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</link>
2349 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</guid>
2350 <pubDate>Fri, 17 May 2013 11:50:00 +0200</pubDate>
2351 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is
2352 an operating system based on Debian intended for use in schools. It
2353 contain a turn-key solution for the computer network provided to
2354 pupils in the primary schools. It provide both the central server,
2355 network boot servers and desktop environments with heaps of
2356 educational software. The project was founded almost 12 years ago,
2357 2001-07-02. If you want to support the project, which is in need for
2358 cash to fund developer gatherings and other project related activity,
2359 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;please
2360 donate some money&lt;/a&gt;.
2361
2362 &lt;p&gt;A topic that come up again and again on the Debian Edu mailing
2363 lists and elsewhere, is the question on how to transform a Debian or
2364 Ubuntu installation into a Debian Edu installation. It isn&#39;t very
2365 hard, and last week I wrote a script to replicate the steps done by
2366 the Debian Edu installer.&lt;/p&gt;
2367
2368 &lt;p&gt;The script,
2369 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/branches/wheezy/debian-edu-config/share/debian-edu-config/tools/debian-edu-bless?view=markup&quot;&gt;debian-edu-bless&lt;a/&gt;
2370 in the debian-edu-config package, will go through these six steps and
2371 transform an existing Debian Wheezy or Ubuntu (untested) installation
2372 into a Debian Edu Workstation:&lt;/p&gt;
2373
2374 &lt;ol&gt;
2375
2376 &lt;li&gt;Add skolelinux related APT sources.&lt;/li&gt;
2377 &lt;li&gt;Create /etc/debian-edu/config with the wanted configuration.&lt;/li&gt;
2378 &lt;li&gt;Install debian-edu-install to load preseeding values and pull in
2379 our configuration.&lt;/li&gt;
2380 &lt;li&gt;Preseed debconf database with profile setup in
2381 /etc/debian-edu/config, and run tasksel to install packages
2382 according to the profile specified in the config above,
2383 overriding some of the Debian automation machinery.&lt;/li&gt;
2384 &lt;li&gt;Run debian-edu-cfengine-D installation to configure everything
2385 that could not be done using preseeding.&lt;/li&gt;
2386 &lt;li&gt;Ask for a reboot to enable all the configuration changes.&lt;/li&gt;
2387
2388 &lt;/ol&gt;
2389
2390 &lt;p&gt;There are some steps in the Debian Edu installation that can not be
2391 replicated like this. Disk partitioning and LVM setup, for example.
2392 So this script just assume there is enough disk space to install all
2393 the needed packages.&lt;/p&gt;
2394
2395 &lt;p&gt;The script was created to help a Debian Edu student working on
2396 setting up &lt;a href=&quot;http://www.raspberrypi.org&quot;&gt;Raspberry Pi&lt;/a&gt; as a
2397 Debian Edu client, and using it he can take the existing
2398 &lt;a href=&quot;http://www.raspbian.org/FrontPage‎&quot;&gt;Raspbian&lt;/a&gt; installation and
2399 transform it into a fully functioning Debian Edu Workstation (or
2400 Roaming Workstation, or whatever :).&lt;/p&gt;
2401
2402 &lt;p&gt;The default setting in the script is to create a KDE Workstation.
2403 If a LXDE based Roaming workstation is wanted instead, modify the
2404 PROFILE and DESKTOP values at the top to look like this instead:&lt;/p&gt;
2405
2406 &lt;p&gt;&lt;pre&gt;
2407 PROFILE=&quot;Roaming-Workstation&quot;
2408 DESKTOP=&quot;lxde&quot;
2409 &lt;/pre&gt;&lt;/p&gt;
2410
2411 &lt;p&gt;The script could even become useful to set up Debian Edu servers in
2412 the cloud, by starting with a virtual Debian installation at some
2413 virtual hosting service and setting up all the services on first
2414 boot.&lt;/p&gt;
2415 </description>
2416 </item>
2417
2418 <item>
2419 <title>Second alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
2420 <link>http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
2421 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
2422 <pubDate>Tue, 14 May 2013 23:30:00 +0200</pubDate>
2423 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
2424 project&lt;/a&gt; is making great progress and made its second Wheezy based
2425 release today. This is the release announcement:&lt;/p&gt;
2426
2427 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha1 released
2428 2013-05-14&lt;/strong&gt;&lt;/p&gt;
2429
2430 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
2431 alpha1, based on &lt;a href=&quot;http://www.debian.org&quot;&gt;Debian&lt;/a&gt; with
2432 codename &quot;Wheezy&quot;.&lt;/p&gt;
2433
2434 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
2435
2436 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
2437 on Debian providing an out-of-the box environment of a completely
2438 configured school network. Immediatly after installation a school
2439 server running all services needed for a school network is set up just
2440 waiting for users and machines being added via GOsa², a comfortable
2441 Web-UI. A netbooting environment is prepared using PXE, so after
2442 initial installation of the main server from CD, DVD or USB stick all
2443 other machines can be installed via the network.&lt;/p&gt;
2444
2445 &lt;p&gt;This is the first test release based on Wheezy (which currently is
2446 not released yet). Basically this is an updated and slightly improved
2447 version compared to the Squeeze release.&lt;/p&gt;
2448
2449 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
2450 &lt;ul&gt;
2451 &lt;li&gt;Install freemind (0.9.0) by default, and stop installing vym by
2452 default.&lt;/li&gt;
2453 &lt;li&gt;Install chromium (26.0.1410.43) by default.&lt;/li&gt;
2454 &lt;li&gt;Install goplay (0.5-1.1) to make golearn available by default.&lt;/li&gt;
2455 &lt;li&gt;Updated support for Japanese input methods, now based on
2456 ibus-anthy.&lt;/li&gt;
2457 &lt;/ul&gt;
2458
2459 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
2460 &lt;ul&gt;
2461
2462 &lt;li&gt;Switched default file system from ext3 to ext4 for speed and
2463 reliability improvements.&lt;/li&gt;
2464 &lt;li&gt;Got rid of unwanted winbind daemon and PAM setup activated because
2465 of &lt;a href=&quot;http://bugs.debian.org/706434&quot;&gt;706434&lt;/a&gt;.&lt;/li&gt;
2466 &lt;li&gt;Extended and improved the testsuite tests to detect more possible
2467 problems.&lt;/li&gt;
2468 &lt;li&gt;Corrected proxy handling to not set http_proxy to a bogus
2469 direct:// URL.&lt;/li&gt;
2470 &lt;li&gt;Corrected proxy setup for diskless workstations.&lt;/li&gt;
2471 &lt;li&gt;Corrected PXE setup to use our updated udebs during installation.&lt;/li&gt;
2472 &lt;li&gt;Made installation handling of low entropy level more robust.&lt;/li&gt;
2473 &lt;li&gt;Create larger partitions for Roaming workstations and Thin client
2474 servers, to make room for all the software installed.&lt;/li&gt;
2475 &lt;li&gt;Fix bug in Roaming workstation PAM setup, making it impossible to
2476 log in (&lt;a href=&quot;http://bugs.debian.org/706753&quot;&gt;706753&lt;/a&gt;).&lt;/li&gt;
2477 &lt;/ul&gt;
2478
2479 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
2480 &lt;ul&gt;
2481
2482 &lt;li&gt;IP resolution for the local hostname give useless IPv6 address
2483 (&lt;a href=&quot;http://bugs.debian.org/705900&quot;&gt;705900&lt;/a&gt;). Only install
2484 libnss-myhostname on roaming workstations until it is fixed.&lt;/li&gt;
2485 &lt;li&gt;DVD images are not yet ready.&lt;/li&gt;
2486 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
2487 available yet (&lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;698840&lt;/a&gt;).&lt;/li&gt;
2488 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others).&lt;/li&gt;
2489 &lt;li&gt;KDE Debian submenu lacks icons.&lt;/li&gt;
2490 &lt;li&gt;LXDE menu lacks entry for changing GOsa password
2491 (website). Installing gosa-desktop will be an option.&lt;/li&gt;
2492 &lt;li&gt;Backup configuration via web interface is impossible due to
2493 password submission problem
2494 (&lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;700257&lt;/a&gt;).&lt;/li&gt;
2495
2496 &lt;/ul&gt;
2497
2498 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
2499
2500 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
2501 &lt;ul&gt;
2502
2503 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&lt;/a&gt;&lt;/li&gt;
2504 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&lt;/a&gt;&lt;/li&gt;
2505 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso debian-edu~7.0+edu0~a1-CD.iso&lt;/li&gt;
2506
2507 &lt;/ul&gt;
2508
2509 &lt;p&gt;The MD5SUM of this image is: 685ed76c1aa8e44b12d3fde21faf450b&lt;/p&gt;
2510
2511 &lt;p&gt;The SHA1SUM of this image is: 6c874de157024da13e115bab29c068080a11ec4c&lt;/p&gt;
2512
2513 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
2514
2515 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;&lt;/p&gt;
2516 </description>
2517 </item>
2518
2519 <item>
2520 <title>Narvik sparer minst 9 millioner på å bruke Skolelinux</title>
2521 <link>http://people.skolelinux.org/pere/blog/Narvik_sparer_minst_9_millioner_p____bruke_Skolelinux.html</link>
2522 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Narvik_sparer_minst_9_millioner_p____bruke_Skolelinux.html</guid>
2523 <pubDate>Fri, 10 May 2013 18:30:00 +0200</pubDate>
2524 <description>&lt;p&gt;I fjor sommer ble jeg
2525 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Gladoppslag_om_Skolelinux_i_avisen_Fremover.html&quot;&gt;gledelig
2526 overrasket&lt;/a&gt; over et oppslag i avisen Fremover om Narvik kommunes
2527 bruk av &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;. Oppslaget
2528 var basert på et notat som besvarte spørsmål fra ordfører Tor Nysæter
2529 og rådgiver for skolesektoren, Petter Falkbu, om bruken av Skolelinux
2530 i Narvikskolene og konstnaden ved å gå over til Windows. For litt
2531 over en uke siden siden fikk jeg endelig bedt kommunen om å få innsyn
2532 i dette notatet, og det ble oversendt på epost tirsdag. Jeg fikk
2533 &lt;a href=&quot;http://www.nuug.no/pub/offentliginnsyn/from-Narvik-kommune/2013-04-29-09:12-skolelinux-notat/PetterFalkbuogwindowsfornarvikskolen%20(L)351310.pdf&quot;&gt;lagt
2534 ut notatet&lt;/a&gt; samme dag, og fikk i dag sjekket postlista til Narvik,
2535 der jeg fant notatet som
2536 &lt;a href=&quot;https://www.narvik.kommune.no/innsyn.aspx?response=arkivsak_detaljer&amp;arkivsakid=2013001023&amp;scripturi=/innsyn.aspx&amp;skin=infolink&amp;Mid1=301&amp;&quot;&gt;sak
2537 2013/1023&lt;/a&gt;.&lt;/p&gt;
2538
2539 &lt;p&gt;Notatet forteller at Narvik ville måtte betalt minst 9 millioner
2540 for å gå over til Windows på skolene. I tillegg dokumenterer notatet
2541 at læreplanens krav oppfylles uten problemer ved bruk av Skolelinux.
2542 Jeg anbefaler alle å lese de 10 sidene med gode argumenter for å kutte
2543 unødige utgifter på IT i skoleverket. :)&lt;/p&gt;
2544 </description>
2545 </item>
2546
2547 <item>
2548 <title>Debian Wheezy is out - and Debian Edu / Skolelinux should soon follow! #newinwheezy</title>
2549 <link>http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</link>
2550 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</guid>
2551 <pubDate>Sun, 5 May 2013 07:40:00 +0200</pubDate>
2552 <description>&lt;p&gt;When I woke up this morning, I was very happy to see that the
2553 &lt;a href=&quot;http://www.debian.org/News/2013/20130504&quot;&gt;release announcement
2554 for Debian Wheezy&lt;/a&gt; was waiting in my mail box. This is a great
2555 Debian release, and I expect to move my machines at home over to it fairly
2556 soon.&lt;/p&gt;
2557
2558 &lt;p&gt;The new debian release contain heaps of new stuff, and one program
2559 in particular make me very happy to see included. The
2560 &lt;a href=&quot;http://scratch.mit.edu/&quot;&gt;Scratch&lt;/a&gt; program, made famous by
2561 the &lt;a href=&quot;http://www.code.org/&quot;&gt;Teach kids code&lt;/a&gt; movement, is
2562 included for the first time. Alongside similar programs like
2563 &lt;a href=&quot;http://edu.kde.org/kturtle/&quot;&gt;kturtle&lt;/a&gt; and
2564 &lt;a href=&quot;http://wiki.sugarlabs.org/go/Activities/Turtle_Art&quot;&gt;turtleart&lt;/a&gt;,
2565 it allow for visual programming where syntax errors can not happen,
2566 and a friendly programming environment for learning to control the
2567 computer. Scratch will also be included in the next release of Debian
2568 Edu.&lt;/a&gt;
2569
2570 &lt;p&gt;And now that Wheezy is wrapped up, we can wrap up the next Debian
2571 Edu/Skolelinux release too. The
2572 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/04/msg00132.html&quot;&gt;first
2573 alpha release&lt;/a&gt; went out last week, and the next should soon
2574 follow.&lt;p&gt;
2575 </description>
2576 </item>
2577
2578 <item>
2579 <title>First alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
2580 <link>http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
2581 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
2582 <pubDate>Fri, 26 Apr 2013 08:30:00 +0200</pubDate>
2583 <description>&lt;p&gt;The Debian Edu / Skolelinux project is still going strong and made
2584 its first Wheezy based release today. This is the release
2585 announcement:&lt;/p&gt;
2586
2587 &lt;p&gt;&lt;strong&gt;New features for Debian Edu ~7.0.0 alpha0 released
2588 2013-04-26&lt;/strong&gt;&lt;/p&gt;
2589
2590 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux ~7.0.0
2591 edu alpha0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
2592
2593 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
2594
2595 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
2596 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
2597 out-of-the box environment of a completely configured school
2598 network. Immediatly after installation a school server running all
2599 services needed for a school network is set up just waiting for users
2600 and machines being added via GOsa², a comfortable Web-UI. A netbooting
2601 environment is prepared using PXE, so after initial installation of
2602 the main server from CD, DVD or USB stick all other machines can be
2603 installed via the network.&lt;/p&gt;
2604
2605 &lt;p&gt;This is the first test release based on Wheezy (which currently is
2606 not released yet). Basically this is an updated and slightly improved
2607 version compared to the Squeeze release.&lt;/p&gt;
2608
2609 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
2610
2611 &lt;ul&gt;
2612 &lt;li&gt;Everything which is new in Debian Wheezy, eg:
2613 &lt;ul&gt;
2614 &lt;li&gt;Linux kernel 3.2.x&lt;/li&gt;
2615 &lt;li&gt;Desktop environments KDE &quot;Plasma&quot; 4.8.4, GNOME 3.4, and LXDE 4
2616 (KDE is installed by default; to choose GNOME or LXDE: see
2617 manual.)&lt;/li&gt;
2618 &lt;li&gt;Web browser Iceweasel 10 ESR&lt;/li&gt;
2619 &lt;li&gt;LibreOffice 3.5.4&lt;/li&gt;
2620 &lt;li&gt;LTSP 5.4.2&lt;/li&gt;
2621 &lt;li&gt;GOsa 2.7.4&lt;/li&gt;
2622 &lt;li&gt;CUPS print system 1.5.3&lt;/li&gt;
2623 &lt;li&gt;Educational toolbox GCompris 12.01&lt;/li&gt;
2624 &lt;li&gt;Music creator Rosegarden 12.04&lt;/li&gt;
2625 &lt;li&gt;Image editor Gimp 2.8.2&lt;/li&gt;
2626 &lt;li&gt;Virtual universe Celestia 1.6.1&lt;/li&gt;
2627 &lt;li&gt;Virtual stargazer Stellarium 0.11.3&lt;/li&gt;
2628 &lt;li&gt;Scratch visual programming environment 1.4.0.6&lt;/li&gt;
2629 &lt;li&gt;New version of debian-installer from Debian Wheezy, see
2630 &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation
2631 manual&lt;/a&gt; for more details.&lt;/li&gt;
2632 &lt;li&gt;Debian Wheezy includes about 37000 packages available for
2633 installation.&lt;/li&gt;
2634 &lt;li&gt;More information about Debian Wheezy 7.0 is provided in the
2635 &lt;a href=&quot;http://www.debian.org/releases/wheezy/releasenotes&quot;&gt;release notes&lt;/a&gt; and the &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation manual&lt;/a&gt;.&lt;/li&gt;
2636 &lt;/ul&gt;&lt;/li&gt;
2637 &lt;/ul&gt;
2638
2639 &lt;p&gt;&lt;strong&gt;Documentation&lt;/strong&gt;&lt;/p&gt;
2640 &lt;ul&gt;
2641 &lt;li&gt;The (&lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Wheezy&quot;&gt;English&lt;/a&gt;) Debian Edu Wheezy Manual is fully translated to
2642 German, French, Italian and Danish. Partly translated versions exist
2643 for Norwegian Bokmal and Spanish.&lt;/li&gt;
2644 &lt;/ul&gt;
2645
2646 &lt;p&gt;&lt;Strong&gt;LDAP related changes&lt;/strong&gt;&lt;/p&gt;
2647 &lt;ul&gt;
2648 &lt;li&gt;Slight changes to some objects and acls to have more types to
2649 choose from when adding systems in GOsa. Now systems can be of type
2650 server, workstation, printer, terminal or netdevice.&lt;/li&gt;
2651 &lt;/ul&gt;
2652
2653 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
2654 &lt;ul&gt;
2655 &lt;li&gt;LTSP clients start as diskless workstation / thin client can be
2656 configured via command line argument -- or individually adding an
2657 entry in lts.conf or LDAP.&lt;li&gt;
2658 &lt;li&gt;GOsa gui: Now some options that seemed to be available, but are non
2659 functional, are greyed out (or are not clickable). Some tabs are
2660 completely hidden to the end user, others even to the GOsa admin.&lt;/li&gt;
2661 &lt;/ul&gt;
2662
2663 &lt;p&gt;&lt;strong&gt;Regressions&lt;/strong&gt;&lt;/p&gt;
2664 &lt;ul&gt;
2665 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv) available
2666 yet.&lt;/li&gt;
2667 &lt;/ul&gt;
2668
2669 &lt;p&gt;&lt;strong&gt;No updated artwork&lt;/strong&gt;&lt;/p&gt;
2670
2671 &lt;ul&gt;
2672 &lt;li&gt;Updated artwork which is visible during installation, in the login
2673 screen and as desktop wallpaper is still missing or the same as we
2674 had for our Squeeze based release.&lt;/li&gt;
2675 &lt;/ul&gt;
2676
2677 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
2678
2679 To download the multiarch netinstall CD release you can use
2680 &lt;ul&gt;
2681 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/&lt;/a&gt;&lt;/li&gt;
2682 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/&lt;/a&gt;&lt;/li&gt;
2683 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/&lt;/li&gt;
2684 &lt;/ul&gt;
2685
2686 &lt;p&gt;The MD5SUM of this image is: c5e773ddafdaa4f48c409c682f598b6c&lt;/p&gt;
2687
2688 &lt;p&gt;The SHA1SUM of this image is: 25934fabb9b7d20235499a0a51f08ce6c54215f2&lt;/p&gt;
2689
2690 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
2691
2692 &lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;&lt;/p&gt;
2693 </description>
2694 </item>
2695
2696 <item>
2697 <title>First Debian Edu / Skolelinux developer gathering in 2013 take place in Trondheim</title>
2698 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</link>
2699 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</guid>
2700 <pubDate>Tue, 16 Apr 2013 15:00:00 +0200</pubDate>
2701 <description>&lt;p&gt;This years first &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux /
2702 Debian Edu&lt;/a&gt; developer gathering take place the coming weekend in Trondheim.
2703 Details about the gathering can be found
2704 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2013-04-19-21-Trondheim&quot;&gt;on
2705 the FRiSK wiki&lt;/a&gt;. The dates are 19-21th of April 2013, and online
2706 participation for those unable to make it in person is very welcome,
2707 and I plan to participate online myself as I could not leave Oslo this
2708 weekend.&lt;/p&gt;
2709
2710 &lt;p&gt;The focus of the gathering is to work on the web pages and project
2711 infrastructure, and to continue the work on the Wheezy based Debian
2712 Edu release.&lt;/p&gt;
2713
2714 &lt;p&gt;See you on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu on irc.debian.org,&lt;/a&gt; then?&lt;/p&gt;
2715 </description>
2716 </item>
2717
2718 <item>
2719 <title>Skolelinux 6 got a video review from Pcwizz</title>
2720 <link>http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</link>
2721 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</guid>
2722 <pubDate>Sun, 17 Mar 2013 10:30:00 +0100</pubDate>
2723 <description>&lt;p&gt;Via
2724 &lt;a href=&quot;https://twitter.com/pcwizz/status/313044373262716930&quot;&gt;twitter&lt;/a&gt;
2725 I just discovered that &lt;a href=&quot;http://pcwizz.net/&quot;&gt;Pcwizz&lt;/a&gt; have
2726 done a &lt;a href=&quot;http://www.youtube.com/watch?v=wPzTZ61Pcuc&quot;&gt;video
2727 review&lt;/a&gt; on Youtube of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
2728 / Debian Edu&lt;/a&gt; version 6. He installed the standalone profile and
2729 the video show a walk-through of of the menu content, demonstration of
2730 a few programs and his view of our distribution.&lt;/p&gt;
2731
2732 &lt;p&gt;There is also some really nice quotes (transcribed by me, might
2733 have heard wrong). While looking thought the Graphics menu:&lt;/p&gt;
2734
2735 &lt;blockquote&gt;
2736 &quot;Basically everything you ever need in a school environment.&quot;
2737 &lt;/blockquote&gt;
2738
2739 &lt;p&gt;And as a general evaluation of the entire distribution:&lt;/p&gt;
2740
2741 &lt;blockquote&gt;
2742 &quot;So, yeah, a bit bloated. It kept all the Debian stuff in there, just
2743 to keep it nice and GNU. So, I do not want to go on about it, but
2744 lets give it 7 out of 10. I am not going to use it. That is because
2745 I am not deploying a school network. There may be some mythical
2746 feature to help you deploy Skolelinux on a school network.&quot;
2747 &lt;/blockquote&gt;
2748
2749 &lt;p&gt;To bad he did not test the server profile, and discovered the PXE
2750 installation option. It make it possible to install only the main
2751 server from CD, and the rest of the machines via the net, and might be
2752 considered the mythical feature he talk about. :)&lt;/p&gt;
2753
2754 &lt;p&gt;While looking through the menus, there is also this funny comment
2755 about the part of the K menu generated from the Debian menu subsystem:
2756
2757 &lt;blockquote&gt;
2758 &quot;[The K menu] have a special Debian section for software that no-one
2759 is going to look at, because it contain lots of junky stuff that you
2760 actually don&#39;t need in the education distribution, but have just been
2761 included because it isn&#39;t stripped out for some reason.&quot;
2762 &lt;/blockquote&gt;
2763
2764 &lt;p&gt;I guess it is yet another argument for merging the Debian menu and
2765 Gnome/KDE desktop menu entries into
2766 &lt;a href=&quot;http://wiki.debian.org/Proposals/DebianMenuUsingDesktopEntries&quot;&gt;one
2767 consistent menu system&lt;/a&gt; instead of two incomplete and partly
2768 inconsistent menu systems.&lt;/p&gt;
2769
2770 &lt;p&gt;The entire video is available below for those accepting iframe
2771 embedding:&lt;/p&gt;
2772
2773 &lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/wPzTZ61Pcuc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
2774 </description>
2775 </item>
2776
2777 <item>
2778 <title>First Skolelinux / Debian Edu Squeeze update released</title>
2779 <link>http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</link>
2780 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</guid>
2781 <pubDate>Fri, 8 Mar 2013 09:30:00 +0100</pubDate>
2782 <description>&lt;p&gt;Last Sunday, 2013-03-03,, Holger Levsen announced the first update
2783 of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
2784 based on Debian Squeeze. This is the first update since
2785 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
2786 initial release 2012-03-11&lt;/a&gt;. This is the
2787 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2013/03/msg00000.html&quot;&gt;release
2788 announcement email from Holger&lt;/a&gt;:&lt;/p&gt;
2789
2790 &lt;blockquote&gt;&lt;p&gt;Hi,&lt;/p&gt;
2791
2792 &lt;p&gt;it&#39;s my pleasure to announce the immediate availability of Debian
2793 Edu 6.0.7+r1 (&quot;Debian Edu Squeeze&quot;).&lt;/p&gt;
2794
2795 &lt;p&gt;Debian Edu 6.0.7+r1 is an incremental update to Debian Edu
2796 6.0.4+r0, containing all the changes between Debian 6.0.4 and 6.0.7 as
2797 well Debian Edu specific bugfixes and enhancements. See below (in this
2798 mail) for the full list of (edu) changes. Please see
2799 &lt;a href=&quot;http://www.debian.org/News/2012/20120311&quot;&gt;http://www.debian.org/News/2012/20120311&lt;/a&gt;
2800 for more information on &quot;Debian Edu Squeeze&quot;.&lt;/p&gt;
2801
2802 &lt;p&gt;Images are available for download at
2803 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/&lt;/a&gt;&lt;/p&gt;
2804
2805 &lt;p&gt;md5sums:
2806 &lt;br&gt;1fe79eb4f0f9ae1c58fc318e26cc1e2e debian-edu-6.0.7+r1-CD.iso
2807 &lt;br&gt;a6ddd924a8bd9a1b5ca122e8fe1c34ec debian-edu-6.0.7+r1-DVD.iso
2808 &lt;br&gt;ac6c72cd7925ccec51bfbf58e2a7c69c debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
2809
2810 &lt;p&gt;sha1sums:
2811 &lt;br&gt;a4b58233b672a99c7df8dc24fb6de3327654a5c3 debian-edu-6.0.7+r1-CD.iso
2812 &lt;br&gt;9b524915e0ff2aa793f13d93123e5bd2bab2dbaa debian-edu-6.0.7+r1-DVD.iso
2813 &lt;br&gt;43997614893fc5e9e59ad6ce066b05d07fd836fa debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
2814
2815 &lt;p&gt;These images are suitable for amd64+i386.&lt;/p&gt;
2816
2817 &lt;p&gt;Changes for Debian Edu 6.0.7+r1 Codename &quot;Squeeze&quot;, released
2818 2013-03-03:&lt;/p&gt;
2819
2820 &lt;ul&gt;
2821 &lt;li&gt;sitesummary was updated from 0.1.3 to 0.1.8
2822 &lt;ul&gt;
2823 &lt;li&gt;Make Nagios configuration more robust and efficient&lt;/li&gt;
2824 &lt;li&gt;Comply with 3.X kernel&lt;/li&gt;
2825 &lt;/ul&gt;&lt;/li&gt;
2826 &lt;li&gt;debian-edu-doc from 1.4~20120310~6.0.4+r0 to 1.4~20130228~6.0.7+r1
2827 &lt;ul&gt;
2828 &lt;li&gt;Minor updates from the wiki&lt;/li&gt;
2829 &lt;li&gt;Danish translation now complete&lt;/li&gt;
2830 &lt;/ul&gt;&lt;/li&gt;
2831 &lt;li&gt;debian-edu-config from 1.453 to 1.455
2832 &lt;ul&gt;
2833 &lt;li&gt;Fix /etc/hosts for LTSP diskless workstations. Closes: #699880&lt;/li&gt;
2834 &lt;li&gt;Make ltsp_local_mount script work for multiple devices.&lt;/li&gt;
2835 &lt;li&gt;Correct Kerberos user policy: don&#39;t expire password after 2 days.
2836 Closes: #664596&lt;/li&gt;
2837 &lt;li&gt;Handle &#39;#&#39; characters in the root or first users password.
2838 Closes: #664976&lt;/li&gt;
2839 &lt;li&gt;Fixes for gosa-sync:
2840 &lt;ul&gt;
2841 &lt;li&gt;Don&#39;t fail if password contains &quot;&lt;/li&gt;
2842 &lt;li&gt;Don&#39;t disclose new password string in syslog&lt;/li&gt;
2843 &lt;/ul&gt;&lt;/li&gt;
2844 &lt;li&gt;Fixes for gosa-create:
2845 &lt;ul&gt;
2846 &lt;li&gt;Invalidate libnss cache before applying changes&lt;/li&gt;
2847 &lt;li&gt;Multiple failures during mass user import into GOsa²&lt;/li&gt;
2848 &lt;li&gt;gosa-netgroups plugin: don&#39;t erase entries of attribute type
2849 &quot;memberNisNetgroup&quot;. Closes: #687256&lt;/li&gt;
2850 &lt;li&gt;First user now uses the same Kerberos policy as all other users&lt;/li&gt;
2851 &lt;/ul&gt;&lt;/li&gt;
2852 &lt;li&gt;Add Danish web page&lt;/li&gt;
2853 &lt;/ul&gt;
2854 &lt;li&gt;debian-edu-install from 1.528 to 1.530
2855 &lt;ul&gt;
2856 &lt;li&gt;Improve preseeding support and documentation&lt;/li&gt;
2857 &lt;/ul&gt;&lt;/li&gt;
2858 &lt;/ul&gt;
2859
2860 &lt;p&gt;End-user documentation in English is available at
2861 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&quot;&gt;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&lt;/a&gt;
2862 - translations to French, Italian, Danish and German are available in
2863 the debian-edu-doc package. (Other languages could use your help!)&lt;/p&gt;
2864
2865 &lt;p&gt;If you want to contribute to Debian Edu, please join our
2866 mailinglist
2867 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@lists.debian.org&lt;/a&gt;!
2868 &lt;/p&gt;&lt;/blockquote&gt;
2869
2870 &lt;p&gt;I am very happy to see the fruits of a year of hard work. :)&lt;/p&gt;
2871 </description>
2872 </item>
2873
2874 <item>
2875 <title>Skolelinux-intervju: Helge Tore Høyland</title>
2876 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Helge_Tore_H_yland.html</link>
2877 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Helge_Tore_H_yland.html</guid>
2878 <pubDate>Fri, 22 Feb 2013 08:10:00 +0100</pubDate>
2879 <description>&lt;p&gt;Etter en lang pause og travle uker har jeg endelig klart å få
2880 samlet et nytt intervju med en av folkene i
2881 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet.
2882 Denne gang er det Helge Tore Høyland, en mangeårig bidragsyter på
2883 epostlistene og ellers i prosjektet.&lt;/p&gt;
2884
2885 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
2886
2887 &lt;p&gt;Eg er IT-konsulent/teknikker hjå eit firma i Steinkjer med navn
2888 &lt;a href=&quot;http://unoit.no/&quot;&gt;Uno IT&lt;/a&gt;. Uno IT er eit lite firma som
2889 drifter nettverk og maskiner for små og mellomstore firma
2890 Steinkjer-området. Per dags dato er me 2 ansatte. Min faglege bakgrunn
2891 er Fagbrev som it-teknikker, samt nokre fag innen nettverk- og
2892 server-drift frå HiST og NTNU. Dagleg arbeid består i oppsett av nye
2893 maskiner og hjelp til sluttbrukere, samt oppsett og vedlikehold av eit
2894 vidt spekter av fagsystemer ute hjå kunder. Erfaring med Skolelinux
2895 har eg hatt i forbindelse med drifting av
2896 &lt;a href=&quot;http://www.bjorkly.no/&quot;&gt;Bjørkly skule&lt;/a&gt;, ein privat
2897 grunnskule i Namsos-området. I dag har skulen 65 elever, 15 lærere, 1
2898 hovedserver og ca 60 klienter som kjører halvtjukt. Eg har bygd og
2899 driftet systemet sidan summaren 2006.&lt;/p&gt;
2900
2901 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
2902
2903 &lt;p&gt;Eg kom i kontakt med Skolelinux-prosjektet via ein artikkel i eit
2904 fagblad, som eg ikkje lenger hugsar namnet på. I og med at eg allereie
2905 hadde pusla med nettverk for ein annan skule, fatta eg straks
2906 interesse for prosjektet.&lt;/p&gt;
2907
2908 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
2909
2910 &lt;p&gt;Fordelane med Skolelinux er sentralisert administrasjon og svært
2911 mange gode verktøy «ut av boksen». Veldig kjekt å kunne drifte 60
2912 klientar med berre å «bry» seg med ein server. Levetid for systemets
2913 hardware er og ein veldig fin effekt. I tillegg kjem fordelar som økt
2914 sikkerhet og mindre lisenskostnader. Etter min erfaring er det og
2915 mykje mindre driftskostnader med eit slikt system enn konkurrerande
2916 system, pga enkelhet med sentralisert administrasjon. På grunn av at
2917 Skolelinux er basert på Debian er det òg svært stabilt.&lt;/p&gt;
2918
2919 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
2920
2921 &lt;p&gt;Ulemper er mangel på vilje til å følge standarer ute i markedet,
2922 som fører til mangel på støtte til nokre mykje brukte ting. Flash og
2923 Java er typiske eksempel. Sidan Debian satsar på stabilitet framfor å
2924 ha nyeste pakke av eit program, kan ein i nokre tilfeller kome borti
2925 at program vert «for gamle». Det er spesielt nettlesaren som er
2926 utsett. Mangel på vilje til å utvikle pedagogisk programvare, i Noreg,
2927 for «alle» platformer fører òg til noko hovudbry.&lt;/p&gt;
2928
2929 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
2930
2931 &lt;p&gt;Til dagleg bruker eg svært mange forskjellige «fri programvare»
2932 program. Firefox, Thunderbird, Freecommander, ImgBurn, Clonezilla,
2933 OCS inventory, Icinga, Skolelinux, SystemRescueCD og mykje meir.&lt;/p&gt;
2934
2935 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
2936 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
2937
2938 &lt;p&gt;Strategisk må ein fokusere på at sluttbruker eigentleg ikkje er så
2939 fokusert på at det er fri programvare men at det skal «berre fungere».
2940 Gjer det enkelt å bruker og ikkje minst å administrere. For Skolelinux
2941 sin del må ein få eit betre fokus på overganger. Utbytting av servere
2942 må gå meir automatisk, import og eksport av brukerbase og maskinbase
2943 med meir må kunne gå enkelt og oppgradering til neste versjon må bli
2944 mykje meir automatisk og gjennomtesta. Ein må unngå at ein må sette
2945 opp frå start når ein byter ut ein server eller oppgraderer til neste
2946 versjon. For å få Skolelinux til å bli eit betre alternativ for skular
2947 må ein ha fokus på nettlesaren. Denne må bli «up to date» og støtte
2948 dei protokollar og tillegg som vert brukt av forlag med meir. Etter
2949 kvart som meir og meir blir flytta ut i «skya» vert dette viktigare og
2950 viktigare. Ein kunne ynskje og jobbe for at forlag med fleire tar i
2951 bruk opne standarer, men inntil det skjer, må systemet kunne brukast
2952 mot desse fagsystema.&lt;/p&gt;
2953
2954 &lt;p&gt;For meg har prosjektet med Skolelinux vore ein svært artig og
2955 lærerik prosess. Miljøet rundt er ikkje enormt stort, dog stort nok,
2956 men det er svært hjelpevillig og engasjert.&lt;/p&gt;
2957 </description>
2958 </item>
2959
2960 <item>
2961 <title>A Christmas present for Skolelinux / Debian Edu</title>
2962 <link>http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</link>
2963 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</guid>
2964 <pubDate>Fri, 28 Dec 2012 09:20:00 +0100</pubDate>
2965 <description>&lt;p&gt;I was happy to discover a few days ago that the
2966 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
2967 project also this year received a Christmas present from Another
2968 Agency in Trondheim. NOK 1000,- showed up on our donation account
2969 December 24th. I want to express our thanks for this very welcome
2970 present. As the Debian Edu / Skolelinux project is very short on
2971 funding these days, and thus lack the money to do regular developer
2972 gatherings, this donation was most welcome. One developer gathering
2973 cost around NOK 15&amp;nbsp;000,-, so we need quite a lot more to keep the
2974 development pace we want. Thus, I hope their example this year is
2975 followed by many others. :)&lt;/p&gt;
2976
2977 &lt;p&gt;The public list of donors can be found on
2978 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;the
2979 donation page&lt;/a&gt; for the project, which also contain instructions if
2980 you want to donate to the project.&lt;/p&gt;
2981 </description>
2982 </item>
2983
2984 <item>
2985 <title>Ledger - double-entry accounting using text based storage format</title>
2986 <link>http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</link>
2987 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</guid>
2988 <pubDate>Tue, 18 Dec 2012 23:30:00 +0100</pubDate>
2989 <description>&lt;p&gt;A few days ago I came across
2990 &lt;a href=&quot;http://joeyh.name/blog/entry/hledger/&quot;&gt;a blog post from Joey
2991 Hess&lt;/a&gt; describing &lt;a href=&quot;http://ledger-cli.org/&quot;&gt;ledger&lt;/a&gt; and
2992 hledger, a text based system for double-entry accounting. I found it
2993 interesting, as I am involved with several organizations where
2994 accounting is an issue, and I have not really become too friendly with
2995 the different web based systems we use. I find it hard to find what I
2996 look for in the menus and even harder try to get sensible data out of
2997 the systems. Ledger seem different. The accounting data is kept in
2998 text files that can be stored in a version control system, and there
2999
3000 are at least &lt;a href=&quot;https://github.com/ledger/ledger/wiki/Ports&quot;&gt;five
3001 different implementations&lt;/a&gt; able to read the format. An example
3002 entry look like this, and is simple enough that it will be trivial to
3003 generate entries based on CVS files fetched from the bank:&lt;/p&gt;
3004
3005 &lt;blockquote&gt;&lt;pre&gt;
3006 2004-05-27 Book Store
3007 Expenses:Books $20.00
3008 Liabilities:Visa
3009 &lt;/pre&gt;&lt;/blockquote&gt;
3010
3011 &lt;p&gt;The concept seemed interesting enough for me to check it out and
3012 look for others using it. I found blog posts from
3013 &lt;a href=&quot;http://blog.spang.cc/posts/hledger_rocks_my_world/&quot;&gt;Christine
3014 Spang&lt;/a&gt;,
3015 &lt;a href=&quot;http://bugsplat.info/2010-05-23-keeping-finances-with-ledger.html&quot;&gt;Pete
3016 Keen&lt;/a&gt;,
3017 &lt;a href=&quot;http://blog.andrewcantino.com/blog/2010/11/06/command-line-accounting-with-ledger-and-reckon/&quot;&gt;Andrew
3018 Cantino&lt;/a&gt; and
3019 &lt;a href=&quot;http://blog.iphoting.com/blog/2012/11/29/command-line-double-entry-accounting/&quot;&gt;Ronald
3020 Ip&lt;/a&gt; describing how they use it, as well as a post from
3021 &lt;a href=&quot;https://groups.google.com/forum/?fromgroups=#!topic/ledger-cli/r0oWjwbQ9Bo&quot;&gt;Bradley
3022 M. Kuhn&lt;/a&gt; at the Software Freedom Conservancy. All seemed like good
3023 recommendations fitting my need.&lt;/p&gt;
3024
3025 &lt;p&gt;The &lt;a href=&quot;http://packages.qa.debian.org/l/ledger.html&quot;&gt;ledger&lt;/a&gt;
3026 package is available in Debian Squeeze, while the
3027 &lt;a href=&quot;http://packages.qa.debian.org/h/haskell-hledger.html&quot;&gt;hledger&lt;/a&gt;
3028 package only is available in Debian Sid. As I use Squeeze, ledger
3029 seemed the best choice to get started.&lt;/p&gt;
3030
3031 &lt;p&gt;To get some real data to test on, I wrote a
3032 &lt;a href=&quot;http://www.nuug.no/tools/lodo2ledger&quot;&gt;web scraper&lt;/a&gt; for
3033 &lt;a href=&quot;http://www.lodo.no/&quot;&gt;LODO&lt;/a&gt;, the accounting system used by
3034 the &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; association, and started to
3035 play with the data set. I&#39;m not really deeply into accounting, but I
3036 am able to get a simple balance and accounting status for example
3037 using the &quot;&lt;tt&gt;ledger balance&lt;/tt&gt;&quot; command. But I will have to
3038 gather more experience before I know if the ledger way is a good fit
3039 for the organisations I am involved in.&lt;/p&gt;
3040 </description>
3041 </item>
3042
3043 <item>
3044 <title>Debian Edu interview: Angela Fuß</title>
3045 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</link>
3046 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</guid>
3047 <pubDate>Wed, 14 Nov 2012 21:30:00 +0100</pubDate>
3048 <description>&lt;p&gt;Here is another interview with one of the people in the &lt;a
3049 href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
3050 community. I am running short on people willing to be interviewed, so
3051 if you know about someone I should interview, Please send me an email.
3052 After asking for many months, I finally managed to lure another one of
3053 the people behind the German
3054 &quot;&lt;a href=&quot;http://wiki.it-zukunft-schule.de/&quot;&gt;IT-Zukunft Schule&lt;/a&gt;&quot;
3055 project out from maternity leave to conduct an interview. Give a warm
3056 welcome to Angela Fuß. :)&lt;/p&gt;
3057
3058 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
3059
3060 &lt;p&gt;I am a 39-year-old woman living in the very north of Germany near
3061 Denmark. I live in a patchwork family with &quot;my man&quot; Mike Gabriel, my
3062 two daughters, Mikes daughter and Mikes and my rather newborn son.
3063
3064 &lt;p&gt;At the moment - because of our little baby - I am spending most of
3065 the day by being a caring and organising mom for all the kids.
3066 Besides that I am really involved into and occupied with several inner
3067 growth processes: New born souls always bring the whole familiar
3068 system into movement and that needs time and focus ;-). We are also
3069 in the middle of buying a house and moving to it.&lt;/p&gt;
3070
3071 &lt;p&gt;In 2013 I will work again in my job in a German foundation for
3072 nature conservation. I am doing public relation work there. Besides
3073 that - and that is the connection to Skolelinux / Debian Edu - I am
3074 working in our own school project &quot;IT-Zukunft Schule&quot; in North
3075 Germany. I am responsible for the quality assurance, the customer
3076 relationship management and the communication processes in the
3077 project.&lt;/p&gt;
3078
3079 &lt;p&gt;Since 2001 I constantly have been training myself in communication
3080 and leadership. Besides that I am a forester, a landscaping gardener
3081 and a yoga teacher.&lt;/p&gt;
3082
3083 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
3084 project?&lt;/strong&gt;&lt;/p&gt;
3085
3086 &lt;p&gt;I fell in love with Mike ;-).&lt;/p&gt;
3087
3088 &lt;p&gt;Very soon after getting to know him I was completely enrolled into
3089 Free Software. At this time Mike did IT-services for one newly
3090 founded school in Kiel. Other schools in Kiel needed concepts for
3091 their IT environment. Often when Mike came home from working at the
3092 newly founded school I found myself listening to his complaints about
3093 several points where the communication with the schools head or the
3094 teachers did not work. So we were clear that he would not work for
3095 one more school if we did not set up a structure for communication
3096 between him, the schools head, the teachers, the students and the
3097 parents.&lt;/p&gt;
3098
3099 &lt;p&gt;Together with our friend and hardware supplier Andreas Buchholz we
3100 started to get an overview of free software solutions suitable for
3101 schools. One day before Christmas 2010 Mike and I had a date with Kurt
3102 Gramlich in Gütersloh. As Kurt and I are really interested in building
3103 networks of people and in being in communication we dived into
3104 Skolelinux and brought it to the first grammar schools in Northern
3105 Germany.&lt;/p&gt;
3106
3107 &lt;p&gt;For information about our school project you can read
3108 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html&quot;&gt;the
3109 interview with Mike Gabriel&lt;/a&gt;.&lt;/p&gt;
3110
3111 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
3112 Edu?&lt;/strong&gt;&lt;/p&gt;
3113
3114 &lt;p&gt;First I have to say: I cannot answer this question technically. My
3115 answer comes rather from a social point of view.&lt;/p&gt;
3116
3117 &lt;p&gt;The biggest advantage of Skolelinux / Debian Edu I see is the large
3118 and strong international community of Debian Developers in the
3119 background which is very alive and connected over mailinglists, blogs
3120 and meetings. My constant feeling for the Debian Community is: If
3121 something does not work they will somehow fix it. All is well
3122 ;-). This is of course a user experience. What I also get as a big
3123 advantage of Skolelinux / Debian Edu is that everybody who uses it and
3124 works with it can also contribute to it - that includes students,
3125 teachers, parents...&lt;/p&gt;
3126
3127 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
3128 Edu?&lt;/strong&gt;&lt;/p&gt;
3129
3130 &lt;p&gt;I will answer this question relating to the internal structure of
3131 Skolelinux / Debian Edu.&lt;/p&gt;
3132
3133 &lt;p&gt;What I see as a major disadvantage is that there is a gap between
3134 the group of developers for Debian Edu and the people who make the
3135 marketing, that means the people that bring Skolelinux to the
3136 schools. There is a lack of communication between these two groups and
3137 I think that does not really work for Skolelinux / Debian Edu.&lt;/p&gt;
3138
3139 &lt;p&gt;Further I appreciate that Skolelinux / Debian Edu is known as a
3140 do-ocracy. Nevertheless I keep asking myself if at some points a
3141 democracy or some kind of hierarchical project structure would be good
3142 and helpful. I am also missing some kind of contact between the
3143 Skolelinux / Debian Edu communities in Europe or on an international
3144 level. I think it would be good if there was more sharing between the
3145 different countries using Skolelinux / Debian Edu.&lt;/p&gt;
3146
3147 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
3148
3149 &lt;p&gt;On my laptop I am still using an Ubuntu 10.04 with a Gnome Desktop
3150 on. As applications I use Openoffice.org, Gedit, Firefox, Pidgin,
3151 LaTeX and GnuCash. For mails I am using Horde. And I am really fond of
3152 my N900 running with Maemo.&lt;/p&gt;
3153
3154 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
3155 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
3156
3157 &lt;p&gt;I am really convinced that in our school project &quot;IT-Zukunft
3158 Schule&quot; we have developed (and keep developing) a great way to get
3159 schools to use Free Software. We have written a detailed concept for
3160 that so I cannot explain the whole thing here. But in a nutshell the
3161 strategy has three crucial pillars:&lt;/p&gt;
3162
3163 &lt;ul&gt;
3164
3165 &lt;li&gt;We really take time to get what sort of stories, questions and
3166 concerns the schools head and the teachers have about using different
3167 kinds of IT and we take time to enrol them into Free Software.&lt;/li&gt;
3168
3169 &lt;li&gt;Our solution for schools is never just technical. In the centre
3170 are always the people who are going to use the software. From the very
3171 beginning of the planning for a school, we tell the schools head that
3172 they are paying us not only for a technical solution for their school,
3173 they also pay us for leading all the communication processes
3174 needed. If they do not want that, we are not working with them because
3175 we cannot give a guarantee for the quality of our work then.&lt;/li&gt;
3176
3177 &lt;li&gt;Another focus lies in the training of teachers and students in
3178 co-administrating the IT-System at their school. They start getting in
3179 contact with the Skolelinux / Debian Edu community and they get the
3180 offer to become more and more independent from us.&lt;/li&gt;
3181
3182 &lt;/ul&gt;
3183 </description>
3184 </item>
3185
3186 <item>
3187 <title>Skolelinux noe for Ballangen? (Leserinnlegg til avisen Fremover)</title>
3188 <link>http://people.skolelinux.org/pere/blog/Skolelinux_noe_for_Ballangen___Leserinnlegg_til_avisen_Fremover_.html</link>
3189 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_noe_for_Ballangen___Leserinnlegg_til_avisen_Fremover_.html</guid>
3190 <pubDate>Sun, 14 Oct 2012 20:00:00 +0200</pubDate>
3191 <description>&lt;p&gt;Tirsdag 2012-10-09 sendte jeg følgende leserinnlegg til avisen
3192 &lt;a href=&quot;http://www.fremover.no/&quot;&gt;Fremover&lt;/a&gt;, etter å ha vært nordpå
3193 noen dager og lest noen gamle aviser. Publiserer den her i sin helhet
3194 for fremtidig referanse. Fremover publiserer dessverre ikke
3195 leserinnlegg på nett.&lt;/p&gt;
3196
3197 &lt;blockquote&gt;
3198 &lt;p&gt;To: redaksjon (at) fremover.no
3199 &lt;br&gt;Subject: Leserinnlegg til Fremover: Skolelinux noe for Ballangen?&lt;/p&gt;
3200
3201 &lt;p&gt;Ærede redaktør&lt;/p&gt;
3202
3203 &lt;p&gt;I sommer (2012-07-23) hadde Fremover et oppslag om at Narvik
3204 kommune hadde spart mellom 10 og 20 millioner kroner de siste årene på
3205 å bruke Skolelinux på sine skoler. Harstad har også tatt i bruk
3206 Skolelinux på alle sine skoler. Som tidligere Ballangsværing gledet
3207 det meg stort å se at skoleløsningen vi har utviklet siden 2001 tas i
3208 bruk i området der jeg vokste opp, og dermed bidrar til en bedre og
3209 billigere skolehverdag.&lt;/p&gt;
3210
3211 &lt;p&gt;Skolelinux er en komplett IT-løsning for elevnettverket på en
3212 skole, med både nettverkstjenester og løsning for elevmaskiner med
3213 pedagogisk programvare, som tillater en å øke levetiden på en
3214 datamaskin i skolen med mange år. En undersøkelse publisert i mars
3215 2012 viste at de 56 norske skolene som har offentliggjort at de bruker
3216 Skolelinux eller annen Linuxutgave hadde 36% større PC-tetthet enn
3217 landsgjennomsnittet, når en ser på tall rapportert til Grunnskolens
3218 Informasjonssystem. I følge Paul Reidar Løsnesløkken, IKT-konsulent i
3219 Nord-Odal, fungerer datamaskiner godt til de er 8 til 10 år gamle.&lt;/p&gt;
3220
3221 &lt;p&gt;I høst (2012-09-29) fortalte Fremover hvordan Ballangen kommune har
3222 opparbeidet seg 20 millioner i underskudd og nok havner på Robek-lista
3223 fra nyttår. Kanskje Ballangen også burde ta i bruk Skolelinux for å
3224 spare penger? Hvis kommunen mangler kompetanse lokalt på Linux finnes
3225 det kommersielle selskaper som tilbyr driftstjenester rundt
3226 Skolelinux, og jeg bør vel avsløre at jeg selv er involvert i et av
3227 dem, Skolelinux Drift AS. Kommunen kan dermed få hjelp hvis de ikke
3228 ønsker å bygge opp egen kompetanse.&lt;/p&gt;
3229
3230 &lt;p&gt;Vennlig hilsen
3231 &lt;br&gt;Petter Reinholdtsen
3232 &lt;br&gt;Fri programvareutvikler&lt;/p&gt;
3233
3234 &lt;p&gt;Referanser:&lt;/p&gt;
3235
3236 &lt;ul&gt;
3237
3238 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Linux_skoler_har_h_yere_PC_tetthet_enn_landsgjennomsnittet___pressemelding_fra_FRiSK.html&quot;&gt;http://people.skolelinux.org/pere/blog/Linux_skoler_har_h_yere_PC_tetthet_enn_landsgjennomsnittet___pressemelding_fra_FRiSK.html&lt;/a&gt;&lt;/li&gt;
3239 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Gladoppslag_om_Skolelinux_i_avisen_Fremover.html&quot;&gt;http://people.skolelinux.org/pere/blog/Gladoppslag_om_Skolelinux_i_avisen_Fremover.html&lt;/a&gt;&lt;/li&gt;
3240
3241 &lt;/ul&gt;
3242
3243 &lt;/blockquote&gt;
3244
3245 &lt;p&gt;Innlegget ble så vidt jeg vet trykket i papirutgaven et par dager
3246 senere, men jeg har ikke sett det selv.&lt;/p&gt;
3247 </description>
3248 </item>
3249
3250 <item>
3251 <title>Trengs flere frivillige til korrektur av den frie norske stavekontrollen</title>
3252 <link>http://people.skolelinux.org/pere/blog/Trengs_flere_frivillige_til_korrektur_av_den_frie_norske_stavekontrollen.html</link>
3253 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Trengs_flere_frivillige_til_korrektur_av_den_frie_norske_stavekontrollen.html</guid>
3254 <pubDate>Sat, 13 Oct 2012 12:10:00 +0200</pubDate>
3255 <description>&lt;p&gt;&lt;a href=&quot;http://no.speling.org/&quot;&gt;Den frie norske stavekontrollen&lt;/a&gt;
3256 består av ca. 1,3 millioner bokmåls- og nynorskord. Det er mange
3257 kilder til ordene, f.eks. den norske ordbanken, norske nett-aviser,
3258 stavekontrollbrukere og korrekturlesere, og endel feil har sneket seg
3259 inn i databasen over ord. For å finne og fikse feilene trengs det
3260 korrekturlesing. Her kommer frivillige inn.&lt;/p&gt;
3261
3262 &lt;p&gt;Hvis du vil bidra med korrektur av orddatabasen, kan du melde deg
3263 frivillig som bokmåls- eller nynorskkorrekturleser og få tilsendt en
3264 liten bunke ord på epost hver dag, lese over og sende inn på epost
3265 tilbake til korrekturlesing-systemet. Jo flere som sjekker, jo
3266 raskere kommer vi igjennom hele databasen. Så langt har vi oppdaget
3267 341 bokmålsord og 50 nynorskord som ikke skal vært med i databasen.
3268 Det er nok noen flere. I tillegg har korrekturleserne oppdaget flere
3269 ord som manglet, og fått lagt dem inn i stavekontrollen.&lt;/p&gt;
3270
3271 &lt;p&gt;Hvis du vil bidra, følg instruksene på
3272 &lt;a href=&quot;http://no.speling.org/dokumentasjon.html&quot;&gt;prosjektsidene&lt;/a&gt;
3273
3274 for nye bidragsytere, og ta kontakt med Håvard eller epostlisten
3275 &lt;a href=&quot;https://lister.ping.uio.no/mailman/listinfo/i18n-no&quot;&gt;i18n-no&lt;/a&gt;.
3276 Gode norskkunnskaper er en fordel, og vilje til å sjekke
3277 &lt;a href=&quot;http://www.nob-ordbok.uio.no/perl/ordbok.cgi&quot;&gt;ordboka&lt;/a&gt; et
3278 krav!&lt;/p&gt;
3279 </description>
3280 </item>
3281
3282 <item>
3283 <title>Ny utgave (v2.1) av den frie norske stavekontrollen gitt ut</title>
3284 <link>http://people.skolelinux.org/pere/blog/Ny_utgave__v2_1__av_den_frie_norske_stavekontrollen_gitt_ut.html</link>
3285 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ny_utgave__v2_1__av_den_frie_norske_stavekontrollen_gitt_ut.html</guid>
3286 <pubDate>Tue, 2 Oct 2012 09:20:00 +0200</pubDate>
3287 <description>&lt;p&gt;I helga fikk jeg endelig pakket sammen en ny versjon av den norske
3288 stavekontrollen, og gikk ut versjon 2.1 etter at det var gått fire og
3289 et halvt år siden sist. I dag fikk vi sendt ut annonseringen. Her er
3290 det vi sendte ut:&lt;/p&gt;
3291
3292 &lt;p&gt;Oslo, 2012-10-02&lt;/p&gt;
3293
3294 &lt;p&gt;&lt;strong&gt;Pressemelding: Ny utgave av norsk stavekontroll med
3295 synonymordliste&lt;/strong&gt;&lt;/p&gt;
3296
3297 &lt;p&gt;Mer enn fire år etter at forrige utgave av den frie norske
3298 stavekontrollen ble utgitt, er en ny og forbedret versjon klar. Dette er
3299 noe utviklerne er veldig glade for.&lt;/p&gt;
3300
3301 &lt;p&gt;Den største endringen er at byggesystemet for stavekontrollen er
3302 skrevet om til å akseptere ord med bindestrek (f.eks. «e-post»). Litt
3303 over 10.000 slike ordformer er lagt til i orddatabasen. I tillegg er
3304 det kommet en del nye ord og rettelser rapportert inn av de frivillige
3305 som gjennomfører korrektur av orddatabasen i prosjektet. For å få
3306 fortgang i dette korrekturarbeidet er det fint med flere frivillige
3307 som kan bidra i prosjektet.&lt;/p&gt;
3308
3309 &lt;p&gt;&lt;blockquote&gt;
3310 - En god og fritt tilgjengelig stavekontroll er en viktig byggestein
3311 for å fremme bruken av korrekt norsk språk, sier prosjektdeltager
3312 Petter Reinholdtsen.
3313 &lt;/blockquote&gt;&lt;/p&gt;
3314
3315 &lt;p&gt;Takket være samarbeidet med synonymordlisteprosjektet er
3316 synonymordlista for bokmål tilgjengelig sammen med ordlista for bokmål
3317 og nynorsk. En synonymordliste for nynorsk er også med, men den er på
3318 prøvestadiet og meget liten.&lt;/p&gt;
3319
3320 &lt;p&gt;Stavekontrollpakken og synonymordlistene brukes i
3321 LibreOffice/OpenOffice.org, Koffice, Mozilla Thunderbird, Firefox og
3322 en rekke andre programmer, og på både Windows, Mac OS X, Linux og
3323 BSD.&lt;/p&gt;
3324
3325 &lt;p&gt;Det hele utgis under den frie lisensen GPL og kan fritt lastes ned
3326 fra prosjektsidene på
3327 &lt;a href=&quot;http://no.speling.org&quot;&gt;no.speling.org&lt;/a&gt;. Ferdige pakker for
3328 LibreOffice/OpenOffice.org er også tilgjengelige fra samme sted.&lt;/p&gt;
3329
3330 &lt;p&gt;Det norske stavekontrollprosjektet er i kontakt med lignende
3331 prosjekter for blant annet å forbedre stavekontrollteknologien, å
3332 utveksle verktøy for vedlikehold av orddatabasen og å få tilgang til
3333 relevante datasett. Et av disse prosjektene er et separat prosjekt ved
3334 Sametinget som er i gang med å utvikle samisk stavekontroll for blant
3335 annet Microsoft Word og OpenOffice.org.&lt;/p&gt;
3336
3337 &lt;p&gt;Et søsterprosjekt for å lage grammatikk-kontroll for
3338 LibreOffice/OpenOffice.org er igangsatt, men har ennå ikke kommet
3339 langt nok til å brukes. Frivillige til å bidra i dette prosjektet er
3340 også svært velkomne.&lt;/p&gt;
3341
3342 &lt;p&gt;&lt;strong&gt;Kontaktperson&lt;/strong&gt;&lt;/p&gt;
3343
3344 &lt;p&gt;&lt;blockquote&gt;
3345 Axel Bojer, prosjektdeltager
3346 &lt;br&gt;E-post: fri_programvare (at) bojer.no
3347 &lt;br&gt;Tlf: +47 954 32 417
3348 &lt;/blockquote&gt;&lt;/p&gt;
3349
3350 &lt;p&gt;&lt;strong&gt;Referanser&lt;/strong&gt;&lt;/p&gt;
3351
3352 &lt;ul&gt;
3353
3354 &lt;li&gt;Det frie norske stavekontrollprosjektet for bokmål og nynorsk:
3355 &lt;a href=&quot;http://no.speling.org&quot;&gt;http://no.speling.org&lt;/a&gt;&lt;/li&gt;
3356 &lt;li&gt;Samiske korrekturverktøy:
3357 &lt;a href=&quot;http://divvun.no/&quot;&gt;http://divvun.no/&lt;/a&gt;&lt;/li&gt;
3358 &lt;li&gt;Ordlistene fra Norsk ordbank:
3359 &lt;a href=&quot;http://www.edd.uio.no/prosjekt/ordbanken/&quot;&gt;http://www.edd.uio.no/prosjekt/ordbanken/&lt;/a&gt;&lt;/li&gt;
3360 &lt;li&gt;Last ned ordlistene:
3361 &lt;a href=&quot;http://alioth.debian.org/frs/?group_id=30577&quot;&gt;http://alioth.debian.org/frs/?group_id=30577&lt;/a&gt;
3362 (PS: no_NO-pack2 for OOo 2.x))&lt;/li&gt;
3363 &lt;/ul&gt;
3364
3365 &lt;p&gt;&lt;strong&gt;Fra NEWS-fila i kildekodepakken&lt;/strong&gt;&lt;/p&gt;
3366
3367 &lt;p&gt;Release 2.1 (2012-09-30)&lt;/p&gt;
3368
3369 &lt;ul&gt;
3370
3371 &lt;li&gt;Switch to new version scheme. Make new version 2.1, not 2.0.11. We do not
3372 release often enough to justify three digits.&lt;/li&gt;
3373 &lt;li&gt;Switch build rules to build OOo v2 thesaurus files, as the v1 build rules
3374 no longer work. This require the libmythes-dev package on Debian.&lt;/li&gt;
3375 &lt;li&gt;Introduce new Makefile variables hyphendir and thesdir to make it easier to
3376 control where to install these.&lt;/li&gt;
3377 &lt;li&gt;Change script used to import from no.speling.org, to load new word
3378 boundaries if at least two people believed the boundaries was correct.&lt;/li&gt;
3379 &lt;li&gt;Added word boundaries for several words (around 500 words) using the
3380 updated script.&lt;/li&gt;
3381 &lt;li&gt;Imported thesarus for bokmål from synonymer.merg.net.&lt;/li&gt;
3382 &lt;li&gt;Rewrote build rules to use = instead of - as combined word marker, thus
3383 allowing words like e-post.&lt;/li&gt;
3384 &lt;li&gt;Imported a lot (around 10k words) of new words with dash (-) in them from
3385 no.speling.org now that it is handled by the build system.&lt;/li&gt;
3386 &lt;/ul&gt;
3387 </description>
3388 </item>
3389
3390 <item>
3391 <title>Debian Edu interview: Giorgio Pioda</title>
3392 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</link>
3393 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</guid>
3394 <pubDate>Mon, 17 Sep 2012 14:10:00 +0200</pubDate>
3395 <description>&lt;p&gt;After a long break in my row of interviews with people in the
3396 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
3397 community, I finally found time to wrap up another. This time it is
3398 Giorgio Pioda, which showed up on the mailing list at the start of
3399 this year, asking questions and inspiring us to improve the first time
3400 administrators experience with Skolelinux. :) The interview was
3401 conduced in May, but I only found time to publish it now.&lt;/p&gt;
3402
3403 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
3404
3405 &lt;p&gt;I have a PhD in chemistry but since several years I work as teacher
3406 in secondary (15-18 year old students) and tertiary (a kind of &quot;light&quot;
3407 university) schools. Five years ago I started to manage a Learning
3408 Management Service server and slowly I got more and more involved with
3409 IT. 3 years ago the graduating schools moved completely to Linux and I
3410 got the head of the IT for this. The experience collected in chemistry
3411 labs computers (for example NMR analysis of protein folding) and in
3412 the IT-courses during university where sufficient to start. Self
3413 training is anyway very important&lt;/p&gt;
3414
3415 &lt;p&gt;I live in the Italian speaking part of Switzerland, and the
3416 &lt;a href=&quot;http://www.spse.ch/&quot;&gt;SPSE school&lt;/a&gt; (secondary) is a very
3417 special sport school for young people who try to became sport pro (for
3418 all sports, we have dozens of disciplines represented) and we are
3419 recognised by the Olympic Swiss Organisation.
3420
3421 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
3422 project?&lt;/strong&gt;&lt;/p&gt;
3423
3424 &lt;p&gt;Looking for Linux / Primary Domain Controller (PDC) I found it
3425 already several years ago. But since the system was still not
3426 Kerberized and since our schools relies strongly on laptops I didn&#39;t
3427 use it. I plan to introduce it in the next future, probably for the
3428 next school year, since the squeeze release solved this security
3429 hole.&lt;/p&gt;
3430
3431 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
3432 Edu?&lt;/strong&gt;&lt;/p&gt;
3433
3434 &lt;p&gt;Many. First of all there is a strong and living community that is
3435 very generous for help and hints. Chat help is crucial, together with
3436 the mailing list. Second. With Skolelinux you get an already well
3437 engineered platform and you don&#39;t have to start to build up your PDC
3438 and your clients from GNU/scratch; I&#39;ve already done this once and I
3439 can tell it, it is hard. Third, since Skolelinux is a standard
3440 platform, it is way easier to educate other IT people and even if the
3441 head IT is sick another one could pick up the task without too much
3442 hassle.&lt;/p&gt;
3443
3444 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
3445 Edu?&lt;/strong&gt;&lt;/p&gt;
3446
3447 &lt;p&gt;The only real problem I see is that it is a little too less
3448 flexible at client level. Debian stable is rocky and desirable, but
3449 there are many reasons that force for another choice. For example the
3450 need of new drivers for new PC, or the need for a specific OS for some
3451 devices that have specific software packages for another specific
3452 distribution (I have such a case for whiteboards that have only
3453 Ubuntu packages). Thus, I prepared compatibility packages educlient
3454 and eduroaming, hoping not to use them ;-)&lt;/p&gt;
3455
3456 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
3457
3458 &lt;p&gt;I have a Debian Stable PDC at school (Kerberos, NIS, NFS) with
3459 mixed Debian and Ubuntu clients. If you think that this triad
3460 combination is exotic... well I discovered right yesterday that
3461 &lt;a href=&quot;http://moo.nac.uci.edu/~hjm/Perceus-Report.html&quot;&gt;Perceus&lt;/a&gt;
3462 has the same...&lt;/p&gt;
3463
3464 &lt;p&gt;For myself I run Debian wheezy/sid, but this combination is good
3465 only I you have enough competence to fix stuff for yourself, if
3466 something breaks. Daily I use texmacs, gnumeric, a little bit of R
3467 statistics, kmplot, and less frequently OpenOffice.org.&lt;/p&gt;
3468
3469 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
3470 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
3471
3472 &lt;P&gt;I think that the only real argument that school managers &quot;hear&quot; is
3473 cost reduction. They don&#39;t give too much weight on quality, stability,
3474 just because they are normally not open to change.&lt;/p&gt;
3475
3476 &lt;p&gt;Students adapts very quickly to GNU/Linux (and for them being able
3477 to switch between different OS is a plus value); teachers and managers
3478 don&#39;t.&lt;/p&gt;
3479
3480 &lt;p&gt;We decided to move to Linux because students at our school have own
3481 laptop and we have the responsibility to keep the laptop ready to use;
3482 we were really unsatisfied with Microsoft since every Monday we had 20
3483 machine to fix for viral infections... With Linux this has been
3484 reduced to zero, since people installs almost only from official
3485 repositories. I think that our special needs brought us to Linux.
3486 Those who don&#39;t have such needs will hardly move to Linux.&lt;/p&gt;
3487 </description>
3488 </item>
3489
3490 <item>
3491 <title>Gladoppslag om Skolelinux i avisen Fremover</title>
3492 <link>http://people.skolelinux.org/pere/blog/Gladoppslag_om_Skolelinux_i_avisen_Fremover.html</link>
3493 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gladoppslag_om_Skolelinux_i_avisen_Fremover.html</guid>
3494 <pubDate>Wed, 15 Aug 2012 10:20:00 +0200</pubDate>
3495 <description>&lt;p&gt;I sommer hadde avisen &lt;a href=&quot;http://www.fremover.no/&quot;&gt;Fremover&lt;/a&gt;
3496 et flott oppslag om bruken av
3497 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; på alle skolene
3498 der. Artikkelen var på trykk på side 4 og 5 i papirutgaven
3499 2012-07-23, men mangler dessverre i nettutgaven av avisen. Mine
3500 henvendelser til avisen for å få artikkelen på nett har så langt ikke
3501 vært vellykket.&lt;/p&gt;
3502
3503 &lt;p&gt;Artikkelen med tittelen &quot;Narvik kommune bruker gratisprogram i
3504 skolen - Har spart millioner&quot;, forteller om hvordan bruken av
3505 Skolelinux er en stor suksess i Narvik siden det ble tatt i bruk i
3506 2004. Her er noen fine sitater:&lt;/p&gt;
3507
3508 &lt;blockquote&gt;
3509 &quot;- Skolelinux har spart kommunen for store pengesummer, millionbeløp,
3510 som de heller kan bruke på andre ting, sier IKT-konsulent Viggo
3511 Fedreheim.&quot;
3512 &lt;/blockquote&gt;
3513
3514 &lt;p&gt;Avisen forteller at de har fått tilgang til beregninger som viser
3515 at Narvik kommune har spart noe mellom 10 og 20 millioner kroner de
3516 siste 8 årene på å bruke Skolelinux, og fortsetter:&lt;/p&gt;
3517
3518 &lt;blockquote&gt;
3519
3520 &quot;Regnestykket tar høyde for sparte kostnader til lisenser som medfølger
3521 de alternative operativsystemene, lavere driftskostnader og lengre
3522 levetid på datautstyret. Totalt har Narvikskolen en maskinpark på
3523 1600 maskiner fordelt på de 11 skolene fra Skjomen i sør til Bjerkvik
3524 i nord.&quot;
3525
3526 &lt;/blockquote&gt;
3527
3528 &lt;p&gt;Viggo Fedreheim sier dette om hvor noe av gevinsten kommer fra:&lt;/p&gt;
3529
3530 &lt;blockquote&gt;
3531 &quot;- Vi kan gjenbruke gamle maskiner i skolen som er for dårlig andre
3532 steder i kommunen der de ikke bruker Skolelinux. Levetiden på en
3533 datamaskin blir 3-5 år lenger med Skolelinux. Vi kaller det for
3534 grønn IT, miljøvennlig IT.&quot;
3535 &lt;/blockquote&gt;
3536
3537 &lt;p&gt;Her er det mulighet for flere kommuner å få et godt IT-system på
3538 skolene, hvis de er villige til å forsøke. De som ikke har kompetanse
3539 innomhus kan kjøpe det fra en av de kommersielle leverandørene av
3540 Skolelinux-tjenester, som &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux
3541 Drift AS&lt;/a&gt; (der jeg er styremedlem). Komplett liste er tilgjengelig
3542 via
3543 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp&quot;&gt;wikien&lt;/a&gt;.&lt;/p&gt;
3544
3545 &lt;p&gt;Update 2012-08-16: Today I was allowed by Fremover to put the PDF I
3546 received from them with a copy of the article on the Internet. It is
3547 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/2012-07-23-fremover-narvik.pdf&quot;&gt;now
3548 available&lt;/a&gt; in the Skolelinux press archive.&lt;/p&gt;
3549 </description>
3550 </item>
3551
3552 <item>
3553 <title>Tips for å bli med i Skolelinux-prosjektet (som faktisk er aktivt)</title>
3554 <link>http://people.skolelinux.org/pere/blog/Tips_for___bli_med_i_Skolelinux_prosjektet__som_faktisk_er_aktivt_.html</link>
3555 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Tips_for___bli_med_i_Skolelinux_prosjektet__som_faktisk_er_aktivt_.html</guid>
3556 <pubDate>Thu, 19 Jul 2012 20:30:00 +0200</pubDate>
3557 <description>&lt;p&gt;Jeg fikk nettopp spørsmål på epost om Skolelinux-prosjektet lever
3558 fra en som var interessert i å bidra, og måtte jo konstatere at i og
3559 med at spørsmålet ble stilt har prosjektet ikke lyktes med å formidle
3560 sin aktivitet. Her er det jeg svarte:&lt;/p&gt;
3561
3562 &lt;p&gt;&lt;blockquote&gt;
3563 &lt;p&gt;Jada, &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux-prosjektet&lt;/a&gt;
3564 lever, men det meste av utvikling foregår nå under paraplyen
3565 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/&quot;&gt;Debian Edu&lt;/a&gt; som er det
3566 internasjonale navnet på prosjektet. Dugnaden i Norge organiseres av
3567 medlemsforeningen
3568 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;Fri programvare i
3569 Skolen&lt;/a&gt;, og det finnes minst ett selskap som selger kommersiell
3570 support på løsningen (&lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux
3571 Drift AS&lt;/a&gt;, der jeg er styremedlem). Anbefaler at du melder deg på
3572 epostlisten
3573 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@lists.debian.org&lt;/a&gt;
3574 (og debian-edu-announce) og
3575 &lt;a href=&quot;http://medlem.friprogramvareiskolen.no/&quot;&gt;melder deg inn i
3576 foreningen&lt;/a&gt; for å få beskjed om aktivitet som planlegges. Det
3577 planlegges
3578 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering&quot;&gt;utviklersamlinger
3579 i august&lt;/a&gt; og utover høsten.&lt;/p&gt;
3580
3581 &lt;p&gt;Bidra gjerne med å spre ordet om Skolelinux. Det er alt for få som
3582 bidrar til pressedekning, bloggposter, twittermeldinger, etc. :)&lt;/p&gt;
3583
3584 &lt;p&gt;Jeg antar du har funnet
3585 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/tags/intervju/&quot;&gt;bloggserien
3586 min med intervjuer&lt;/a&gt;. Det er antagelig også interessant for deg å
3587 følge med på &lt;a href=&quot;http://planet.skolelinux.org/&quot;&gt;Planet
3588 Skolelinux&lt;/a&gt;.&lt;/p&gt;
3589
3590 &lt;p&gt;Hm, jeg burde vel blogge alle disse lenkene slik at de blir enklere
3591 å finne...&lt;/p&gt;
3592 &lt;/blockquote&gt;&lt;/p&gt;
3593 &lt;p&gt;Herved gjort. :)&lt;/p&gt;
3594 </description>
3595 </item>
3596
3597 <item>
3598 <title>Debian Edu interview: George Bredberg</title>
3599 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</link>
3600 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</guid>
3601 <pubDate>Mon, 9 Jul 2012 00:30:00 +0200</pubDate>
3602 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
3603 Skolelinux&lt;/a&gt; project have users all over the globe, but until
3604 recently we have not known about any users in Norway&#39;s neighbour
3605 country Sweden. This changed when George Bredberg showed up in March
3606 this year on the mailing list, asking interesting questions about how
3607 to adjust and scale the just released
3608 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
3609 Wheezy&lt;/a&gt; setup to his liking. He granted me an interview, and I am
3610 happy to share his answers with you here.&lt;/p&gt;
3611
3612 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
3613
3614 &lt;p&gt;I&#39;m a 44 year old country guy that have been working 12 years at
3615 the same school as 50% IT-manager and 50% Teacher. My educational
3616 background is fil.kand in history and religious beliefs, an exam as a
3617 &quot;folkhighschool&quot; teacher, that is, for teaching grownups. In
3618 Norwegian I believe it&#39;s called &quot;Vuxenupplaring&quot;. I also have a master
3619 in &quot;Technology and social change&quot;. So I&#39;m not really a tech guy, I
3620 just like to study how humans and technology interact and that is my
3621 perspective when working with IT.&lt;/p&gt;
3622
3623 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
3624 project?&lt;/strong&gt;&lt;/p&gt;
3625
3626 I have followed the Skolelinux project for quite some time by
3627 now. Earlier I tested out the K12-LTSP project, which we used for some
3628 time, but I really like the idea of having a distribution aimed to be
3629 a complete solution for schools with necessary tools integrated. When
3630 K12-LTSP abandoned that idea some years ago, I started to look more
3631 seriously into Skolelinux instead.
3632
3633 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
3634 Edu?&lt;/strong&gt;&lt;/p&gt;
3635
3636 The big point of Skolelinux to me is that it is a complete
3637 distribution, ready to install. It has LDAP-support, MS Windows
3638 integration tools and so forth already configured, saving an
3639 administrator a lot of time and headache. We were using another Linux
3640 based thin-client system called Thinlinc, that has served us very
3641 well. But that Skolelinux is based on VNC and LTSP, to me, is better
3642 when it comes to the kind of multimedia used in schools. That is
3643 showing videos from Youtube or educational TV. It is also easier to
3644 mix thin clients with workstations, since the user settings will be the
3645 same. In our VNC-based solution you had to &quot;beat around the bush&quot; by
3646 setting up a second, hidden, home-directory for user settings for the
3647 workstations, because they will be different from the ones used on the
3648 thin clients. Skolelinux support for diskless workstations are very
3649 convenient since a school today often need to use a class room
3650 projector showing videos in full screen. That is easily done with a
3651 small integrated media computer running as a diskless workstation. You
3652 have only two installs to update and configure. One for the thin
3653 clients and one for the workstations. Also saving a lot of time. Our
3654 old system was also based on Redhat and CentOS. They are both very
3655 nice distributions, but they are sometimes painfully slow when it
3656 comes to updating multimedia support and multimedia programs (even
3657 such as Gimp), leaving us with a bit &quot;oldish&quot; applications. Debian is
3658 quicker to update.
3659
3660 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
3661 Edu?&lt;/strong&gt;&lt;/p&gt;
3662
3663 &lt;p&gt;Debian is a bit too quick when it comes to updating. As an example
3664 we use old HP terminals as thinclients, and two times already this
3665 year (2012) the updates you get from the repositories has stopped
3666 sound from working with them. It&#39;s a kernel/ALSA issue. So you have
3667 to be more careful properly testing the updates before you run them in
3668 a production environment. This has never happened with CentOS.&lt;/p&gt;
3669
3670 &lt;p&gt;I also would like to be able to set my own domain-settings at
3671 install time. In Skolelinux they are kind of hard coded into the
3672 distribution, when it comes to LDAP and at least samba integration.
3673 That is more a cosmetic/translation issue, and not a real problem.
3674 Running MS Windows applications within the Skolelinux environment needs
3675 to be better supported. That is, running them seamlessly via RDP, and
3676 support for single-sign on. That will make the transition to free
3677 software easier, because you can keep the applications you really
3678 need. No support will make it impossible if you work in a school where
3679 some applications can&#39;t be open source. As for us we really need to
3680 run Adobe InDesign in our journalist classes. We run a journalist
3681 education, and is one of the very few non university ones that is ok:d
3682 by Svenska journalistförbundet (Swedish journalist association). Our
3683 education gives the pupils the right of membership there, once they
3684 are done. This is important if you want to get a job.&lt;/p&gt;
3685
3686 &lt;p&gt;Adobe InDesign is the program most commonly used in newspapers and
3687 magazines. We used Quark Express before, but they seem to loose there
3688 market to Adobe. The only &quot;equivalent&quot; to InDesign in the opensource
3689 world is Scribus, and its not advanced enough. At least not according
3690 to the teacher. I think it would be possible to use it, because they
3691 are not supposed to learn a program, they are supposed to learn how to
3692 edit and compile a newspaper. But politically at our school we are not
3693 there yet. And Scribus lacks a lot of things you find i InDesign.&lt;/p&gt;
3694
3695 &lt;p&gt;We used even a windows program for sound editing when it comes to
3696 the radio-journalist part. The year to come we are going to try
3697 Audacity. That software has the same kind of limitations compared to
3698 Adobe Audition, but that teacher is a bit more open minded. We have
3699 tried Ardour also, but that instead is more like a music studio
3700 program, not intended for the kind of editing taking place in a radio
3701 studio. Its way to complex and the GUI is to scattered when you only
3702 want to cut, make pass-overs, add extra channels and normalise. Those
3703 things you can do in Audacity, but its not as easy as in Audition. You
3704 have to do more things manually with envelopes, and that is a bit old
3705 fashion and timewasting. Its also harder to cut and move sound from
3706 one channel to another, which is a thing that you do frequently
3707 because you often find yourself needing to rearrange parts of the
3708 sound file.&lt;/p&gt;
3709
3710 &lt;p&gt;So, I am not sure we will succeed in replacing even Audition, but we
3711 will try. The problem is the students have certain expectations when
3712 they start an education towards a profession. So the programs has to
3713 look and feel professional. Good thing with radio, there are many
3714 programs out there, that radio studios use, so its not as standardised
3715 as Newspaper editing. That means, it does not really matter what
3716 program they learn, because once they start working they still have to
3717 learn the program the studio uses, so instead focus has to be to learn
3718 the editing part without to much focus on a specific software.&lt;/p&gt;
3719
3720 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
3721
3722 &lt;p&gt;Myself I&#39;m running Linux Mint, or Ubuntu these days. I use almost
3723 only open source software, and preferably Linux based. When it comes
3724 to most used applications its OpenOffice, and Firefox (of course ;)
3725 )&lt;/p&gt;
3726
3727 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
3728 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
3729
3730 &lt;p&gt;To get schools to use free software there has to be good open
3731 source software that are windows based, to ease the transition. But
3732 it&#39;s also very important that the multimedia support is working
3733 flawlessly. The problems with Youtube, Twitter, Facebook and whatever
3734 will create problems when it comes to both teachers and
3735 students. Economy are also important for schools, so using thin
3736 clients, as long as they have good multimedia support, is a very good
3737 idea. It&#39;s also important that the open source software works even for
3738 the administration. It&#39;s hard to convince the teachers to stick with
3739 open source, if the principal has to run Windows. It also creates a
3740 problem if some classes has to use Windows for there tasks, since that
3741 will create a difference in &quot;status&quot; between classes, so a good
3742 support for running windows applications via the thin client (Linux)
3743 desktop is essential. At least at our school, where we have mixed
3744 level of educations, from high-school to journalist-school.&lt;/p&gt;
3745
3746 &lt;p&gt;Update 2012-07-09 08:30: Paul Wise tipped me on IRC about three
3747 useful sources related to Free Software for radio stations: the LWN
3748 article &lt;a href=&quot;https://lwn.net/Articles/481607/&quot;&gt;Radio station
3749 management with Airtime&lt;/a&gt;,
3750 &lt;a href=&quot;http://www.sourcefabric.org/en/airtime/&quot;&gt;Airtime&lt;/a&gt; which
3751 claim to be a Free open source radio automation software and
3752 &lt;a href=&quot;http://www.rivendellaudio.org/&quot;&gt;Rivendell&lt;/a&gt; which claim to
3753 be complete radio broadcast automation solution. All of them seem
3754 useful to the aspiring radio producer.&lt;/p&gt;
3755 </description>
3756 </item>
3757
3758 <item>
3759 <title>Why do schools waste money on IT?</title>
3760 <link>http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</link>
3761 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</guid>
3762 <pubDate>Sun, 8 Jul 2012 09:40:00 +0200</pubDate>
3763 <description>&lt;p&gt;In the Debian Edu / Skolelinux project, we have realised that one
3764 of the major blockers for the project success is the purchasing skills
3765 in schools and municipalities. We provide what the happy users of
3766 Debian Edu / Skolelinux say they need and to a lower cost than the
3767 alternatives, and yet so few schools decide to use our solution. I
3768 was pleased to discover the same observation done by mySociety and Tom
3769 Steinberg in his blog post
3770 &quot;&lt;a href=&quot;http://www.mysociety.org/2012/06/19/can-you-recognize-the-million-pound-chair/&quot;&gt;Can
3771 you recognize the million pound chair?&lt;/a&gt;&quot;. Read it and weep for the
3772 spending of your tax money.&lt;/p&gt;
3773
3774 &lt;p&gt;Of course there are other factors involved as well, like our
3775 projects bad marketing skills and the Linux community fragmentation
3776 causing worry with the people on the outside, so we as a project need
3777 to keep working hard to gain users, but it is a up-hill battle when
3778 public decision makers are unable to understand computer system
3779 purchases.&lt;/p&gt;
3780 </description>
3781 </item>
3782
3783 <item>
3784 <title>Free Timetabling Software - nice free software</title>
3785 <link>http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</link>
3786 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</guid>
3787 <pubDate>Sat, 7 Jul 2012 09:50:00 +0200</pubDate>
3788 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
3789 Skolelinux&lt;/a&gt; is a large collection of end user and school specific
3790 software. It is one of the packages not installed by default but
3791 provided in the Debian archive for schools to install if they want to,
3792 is a system to automatically plan the school time table using
3793 information about available teachers, classes and rooms, combined with
3794 the list of required courses and how many hours each topic should
3795 receive. The software is
3796
3797 &lt;a href=&quot;http://lalescu.ro/liviu/fet/&quot;&gt;named FET&lt;/a&gt;, and it provide a
3798 graphical user interface to input the required information, save the
3799 result in a fairly simple XML format, and generate time tables for
3800 both teachers and students. It is available both for
3801 &lt;a href=&quot;http://lalescu.ro/liviu/fet/download.html&quot;&gt;Linux, MacOSX and
3802 Windows&lt;/a&gt;.&lt;/p&gt;
3803
3804 &lt;p&gt;This is &lt;a href=&quot;http://lalescu.ro/liviu/fet/features.html&quot;&gt;the
3805 feature list&lt;/a&gt;, liftet from the project web site:&lt;/p&gt;
3806
3807 &lt;p&gt;&lt;ul&gt;
3808
3809 &lt;li&gt;FET is free software, licensed under the GNU GPL v2 or later.
3810 You can freely use, copy, modify and redistribute it &lt;/li&gt;
3811
3812 &lt;li&gt;Localized to en_US (US English, default), ar (Arabic), ca
3813 (Catalan), da (Danish), de (German), el (Greek), es (Spanish), fa
3814 (Persian), fr (French), gl (Galician), he (Hebrew), hu
3815 (Hungarian), id (Indonesian), it (Italian), lt (Lithuanian), mk
3816 (Macedonian), ms (Malay), nl (Dutch), pl (Polish), pt_BR
3817 (Brazilian Portuguese), ro (Romanian), ru (Russian), si (Sinhala),
3818 sk (Slovak), sr (Serbian), tr (Turkish), uk (Ukrainian), uz
3819 (Uzbek) and vi (Vietnamese) (incompletely for some languages)
3820 &lt;/li&gt;
3821
3822 &lt;li&gt;Fully automatic generation algorithm, allowing also
3823 semi-automatic or manual allocation&lt;/li&gt;
3824
3825 &lt;li&gt;Platform independent implementation, allowing running on
3826 GNU/Linux, Windows, Mac and any system that Qt supports &lt;/li&gt;
3827
3828 &lt;li&gt;Flexible modular XML format for the input file, allowing editing
3829 with an XML editor or by hand (besides FET interface)&lt;/li&gt;
3830
3831 &lt;li&gt;Import/export from CSV format&lt;/li&gt;
3832
3833 &lt;li&gt;The resulted timetables are exported into HTML, XML and CSV
3834 formats &lt;/li&gt;
3835
3836 &lt;li&gt;Flexible students structure, organized into sets: years, groups
3837 and subgroups. FET allows overlapping years and groups and
3838 non-overlapping subgroups. You can even define individual students
3839 (as separate sets)&lt;/li&gt;
3840
3841 &lt;li&gt;Each constraint has a weight percentage, from 0.0% to 100.0%
3842 (but some special constraints are allowed to have only 100% weight
3843 percentage)&lt;/li&gt;
3844
3845 &lt;li&gt;Limits for the algorithm (all these limits can be increased on
3846 demand, as a custom version, because this would require a bit more
3847 memory):
3848 &lt;ul&gt;
3849 &lt;li&gt;Maximum total number of hours (periods) per day: 60&lt;/li&gt;
3850 &lt;li&gt;Maximum number of working days per week: 35&lt;/li&gt;
3851 &lt;li&gt;Maximum total number of teachers: 6000&lt;/li&gt;
3852 &lt;li&gt;Maximum total number of sets of students: 30000&lt;/li&gt;
3853 &lt;li&gt;Maximum total number of subjects: 6000&lt;/li&gt;
3854 &lt;li&gt;Virtually unlimited number of activity tags&lt;/li&gt;
3855 &lt;li&gt;Maximum number of activities: 30000&lt;/li&gt;
3856 &lt;li&gt;Maximum number of rooms: 6000&lt;/li&gt;
3857 &lt;li&gt;Maximum number of buildings: 6000&lt;/li&gt;
3858 &lt;li&gt;Possibility of adding multiple teachers and
3859 students sets for each activity. (it is possible
3860 also to have no teachers or no students sets for an
3861 activity)&lt;/li&gt;
3862 &lt;li&gt;Virtually unlimited number of time constraints&lt;/li&gt;
3863 &lt;li&gt;Virtually unlimited number of space constraints&lt;/li&gt;
3864 &lt;/ul&gt;&lt;/li&gt;
3865
3866 &lt;li&gt;A large and flexible palette of time constraints:
3867 &lt;ul&gt;
3868 &lt;li&gt;Break periods&lt;/li&gt;
3869 &lt;li&gt;For teacher(s):
3870 &lt;ul&gt;
3871 &lt;li&gt;Not available periods&lt;/li&gt;
3872 &lt;li&gt;Max/min days per week&lt;/li&gt;
3873 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
3874 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
3875 &lt;li&gt;Min hours daily&lt;/li&gt;
3876 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
3877
3878 &lt;li&gt;Respect working in an hourly interval a max number of
3879 days per week&lt;/li&gt;
3880 &lt;/ul&gt;&lt;/li&gt;
3881 &lt;li&gt;For students (sets):
3882 &lt;ul&gt;
3883 &lt;li&gt;Not available periods&lt;/li&gt;
3884 &lt;li&gt;Begins early (specify max allowed beginnings at second hour)&lt;/li&gt;
3885 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
3886 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
3887 &lt;li&gt;Min hours daily&lt;/li&gt;
3888 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
3889
3890 &lt;li&gt;Respect working in an hourly interval a max number of
3891 days per week&lt;/li&gt;
3892 &lt;/ul&gt;&lt;/li&gt;
3893 &lt;li&gt;For an activity or a set of activities/subactivities:
3894 &lt;ul&gt;
3895 &lt;li&gt;A single preferred starting time&lt;/li&gt;
3896 &lt;li&gt;A set of preferred starting times&lt;/li&gt;
3897 &lt;li&gt;A set of preferred time slots&lt;/li&gt;
3898 &lt;li&gt;Min/max days between them&lt;/li&gt;
3899 &lt;li&gt;End(s) students day&lt;/li&gt;
3900 &lt;li&gt;Same starting time/day/hour&lt;/li&gt;
3901 &lt;li&gt;Occupy max time slots from selection (a complex and
3902 flexible constraint, useful in many situations)&lt;/li&gt;
3903 &lt;li&gt;Consecutive, ordered, grouped (for 2 or 3 (sub)activities)&lt;/li&gt;
3904 &lt;li&gt;Not overlapping&lt;/li&gt;
3905 &lt;li&gt;Max simultaneous in selected time slots&lt;/li&gt;
3906 &lt;li&gt;Min gaps between a set of (sub)activities&lt;/li&gt;
3907 &lt;/ul&gt;&lt;/li&gt;
3908 &lt;/ul&gt;&lt;/li&gt;
3909
3910 &lt;li&gt;A large and flexible palette of space constraints:
3911 &lt;ul&gt;
3912 &lt;li&gt;Room not available periods&lt;/li&gt;
3913 &lt;li&gt;For teacher(s):
3914 &lt;ul&gt;
3915 &lt;li&gt;Home room(s)&lt;/li&gt;
3916 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
3917 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
3918 &lt;/ul&gt;
3919 &lt;/li&gt;
3920
3921 &lt;li&gt;For students (sets):
3922 &lt;ul&gt;
3923 &lt;li&gt;Home room(s)&lt;/li&gt;
3924 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
3925 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
3926 &lt;/ul&gt;
3927 &lt;/li&gt;
3928 &lt;li&gt;Preferred room(s):
3929 &lt;ul&gt;
3930 &lt;li&gt;For a subject&lt;/li&gt;
3931 &lt;li&gt;For an activity tag&lt;/li&gt;
3932 &lt;li&gt;For a subject and an activity tag&lt;/li&gt;
3933 &lt;li&gt;Individually for a (sub)activity&lt;/li&gt;
3934 &lt;/ul&gt;
3935 &lt;/li&gt;
3936
3937 &lt;li&gt;For a set of activities:
3938 &lt;ul&gt;
3939 &lt;li&gt;Occupy a maximum number of different rooms&lt;/li&gt;
3940 &lt;/ul&gt;
3941 &lt;/li&gt;
3942 &lt;/ul&gt;
3943 &lt;/li&gt;
3944 &lt;/ul&gt;&lt;/p&gt;
3945
3946 &lt;p&gt;I have not used it myself, as I am not involved in time table
3947 planning at a school, but it seem to work fine when I test it. If you
3948 need to set up your schools time table, and is tired of doing it
3949 manually, check it out.
3950
3951 A quick summary on how to use it can be found in
3952 &lt;a href=&quot;http://marvelsoft.co.in/wp/2012/03/generate-timetable-for-state-cbse-icse-igcse-schools-free/&quot;&gt;a
3953 blog post from MarvelSoft&lt;/a&gt;. If you find FET useful, please provide
3954 a recipe for the Debian Edu project in the
3955 &lt;a href=&quot;http://wiki.debian.org/DebianEdu#Howtos&quot;&gt;Debian Edu HowTo
3956 section&lt;/a&gt;.&lt;/p&gt;
3957 </description>
3958 </item>
3959
3960 <item>
3961 <title>Skolelinux-intervju: Markus Gamenius</title>
3962 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Markus_Gamenius.html</link>
3963 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Markus_Gamenius.html</guid>
3964 <pubDate>Sat, 30 Jun 2012 12:50:00 +0200</pubDate>
3965 <description>&lt;p&gt;Tidligere leder av
3966 &lt;a href=&quot;http://www.friprogramvareiskolen.no&quot;&gt;foreningen som
3967 organiserer Skolelinux-dugnaden&lt;/a&gt;, Markus Gamenius , har i vår vært
3968 i media og
3969 &lt;a href=&quot;http://www.dn.no/privatokonomi/article2345489.ece&quot;&gt;debattert
3970 skattepolitikk&lt;/a&gt;, og det fikk meg til å høre om han kunne lokkes til
3971 å fortelle om hans inntrykk nå, etter at han ble lokket bort fra
3972 Linux- og &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-verden
3973 for å overta familiebedriften. Her har vi hans betraktninger i dag,
3974 noen måneder etter at
3975 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Skolelinux
3976 Squeeze&lt;/a&gt;-utgaven ble gitt ut.&lt;/p&gt;
3977
3978 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
3979
3980 &lt;p&gt;Jeg heter Markus Gamenius og er 40 år. Utdannet biolog med ymse
3981 fag på siden. Har jobbet som lærer der jeg var driftsansvarlig på
3982 Ulsrud VGS i Oslo. Senere eide og jobbet jeg flere år i Linuxlabs AS,
3983 som jeg solgte til Redpill Linpro AS (den gangen Linpro AS). I dag
3984 jobber jeg med ulike investeringer, hovedsaklig i eiendom, men også i
3985 en del ulike IT-relaterte bedrifter.&lt;/p&gt;
3986
3987 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
3988
3989 &lt;p&gt;Fruen og jeg dro på en lengre seiltur i 2000, der jeg måtte ha &quot;noe
3990 å gjøre&quot; under hjemturen over Atlanteren. Jeg kjøpte et par bøker om
3991 Linux i en bokhandel i New York og ble veldig fascinert. Etter
3992 hjemkomsten begynte jeg å jobbe på Ulsrud VGS, som naturfagslærer, men
3993 som IT-interessert ble jeg fort en del av den nye IT-satsningen som
3994 skulle løfte Ulsrud og gi skolen en bedre rykte. Vi hadde ganske
3995 mange maskiner, som gikk på Win98 og to servere som ble oppgradert til
3996 Win2000. Systemene var ustabil og dårlige. På leting etter noe
3997 bedre, uten å knekke ryggen økonomisk, kom jeg over &quot;Linux i Skolen&quot;
3998 og Skolelinux. Jeg tok kontakt med miljøet og en gjeng møtte opp på
3999 skolen, der vi gjorde en liten testinstallasjon. Etter et par år var
4000 ryggraden på skolen Linux (Skolelinux) og vi hadde flere hundre
4001 maskiner, både tynne klienter (gamle og nye), bærbare (Debian) og noen
4002 stasjonære (Win2000). På et tidspunkt var Ulsrud den råeste IT-skolen
4003 og det irriterte skolesjefen i Oslo, da de satset hardt på
4004 Windows.&lt;/p&gt;
4005
4006 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
4007
4008 &lt;p&gt;Det som gjorde at vi fikk inn Skolelinux var ene og alene
4009 økonomiske. Det faktum at vi slapp å kjøpe masse nye lisenser og at
4010 vi kunne bruke gammel hardware. Alt i alt gjorde dette at vi sparte
4011 mye, men i stede for å bruke mindre på IT brukte vi det vi sparte på å
4012 skaffe mer hardware og på den måten gi det beste tilbudet i landet til
4013 våre elever. For oss som driftet var det himmel å ha et system som
4014 gikk å administrere sentralt og effektivt. Det var heller ikke så
4015 dumt at vi kunne &quot;låse&quot; maskinene mer effektivt enn vi kunne med
4016 Microsoft Windows, slik at vi slapp mye feil og problemer som ble
4017 forårsaket av &quot;kreative&quot; elever.&lt;/p&gt;
4018
4019 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
4020
4021 &lt;p&gt;Det vi slet med var mangelen av en del programmer lærerne ville ha.
4022 Husker ikke alle, men det var et knippe med pedagogiske programmer de
4023 ikke fikk. I dag tror jeg det problemet er langt mindre da det meste
4024 av disse kjøres gjennom nettleseren.&lt;/p&gt;
4025
4026 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
4027
4028 &lt;p&gt;Jeg bruker mye Apple i dag og er ikke så stolt av det, men jeg har
4029 både OpenOffice, Firefox og en del andre programmer på den bærbare.
4030 Firefox brukes mest av disse. På Apple-serveren hjemme bruker jeg
4031 HandBrake mye, og jeg har installert OpenWRT på flere av
4032 basestasjonene både hjemme og på jobben. I tillegg til det har jeg i
4033 flere år finansiert et prosjekt som heter
4034 &lt;a href=&quot;http://www.found.no/&quot;&gt;Found IT&lt;/a&gt;. Dette er et prosjekt der
4035 vi lager et rammeverk for søk, der alt vi bruker fri programvare. Det
4036 er Alex Brasetvik som er daglig leder i Found IT.&lt;/p&gt;
4037
4038 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
4039 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
4040
4041 &lt;p&gt;Når det gjelder IT og skole er fortsatt økonomi veldig viktig. Så
4042 man må oppfylle minimumskravene (ikke være best, men bra nok) og selge
4043 seg inn på hvor mye man sparer. Det betyr selvsagt at man sparer på
4044 lisenser, men også på driftsinnsats. Men nå når jeg ikke er en aktiv
4045 del av miljøet lenger hører jeg nesten ingen ting om fri programvare.
4046 Jeg stiller meg da spørsmålet om det har blitt stille rundt miljøet,
4047 eller om jeg kun så det tydeligere før når jeg var aktiv? Uansett er
4048 det for stille rundt Skolelinux-prosjektet nå.&lt;/p&gt;
4049 </description>
4050 </item>
4051
4052 <item>
4053 <title>Debian Edu interview: José Luis Redrejo Rodríguez</title>
4054 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</link>
4055 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</guid>
4056 <pubDate>Tue, 26 Jun 2012 08:30:00 +0200</pubDate>
4057 <description>&lt;p&gt;I&#39;ve been too busy at home, but finally I found time to wrap up
4058 another interview with the people behind
4059 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
4060 This time we get to know José Luis Redrejo Rodríguez, one of our great
4061 helpers from Spain. His effort was the reason we added support for
4062 several desktop types (KDE, Gnome and most recently LXDE) in Debian
4063 Edu, and have all of these available in the recently published
4064 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
4065 Squeeze&lt;/a&gt; version.&lt;/p&gt;
4066
4067 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4068
4069 &lt;p&gt;I&#39;m a father, teacher and engineer who is working for the Education
4070 ministry of the Region of Extremadura (Spain) in the implementation of
4071 ICT in schools&lt;/p&gt;
4072
4073 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
4074 project?&lt;/strong&gt;&lt;/p&gt;
4075
4076 &lt;p&gt;At 2006, I verified that both, we in Extremadura and Skolelinux
4077 project, had been working in parallel for some years, doing very
4078 similar things, using very similar tools and with similar targets, so
4079 I decided it was time to join forces as much as possible.&lt;/p&gt;
4080
4081 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4082 Edu?&lt;/strong&gt;&lt;/p&gt;
4083
4084 &lt;p&gt;A community of highly skilled experts working together, with a
4085 really open schema of collaboration and work. I really love the
4086 concepts of Do-ocracy and Merit-ocracy and the way these concepts are
4087 been used everyday inside Debian Edu.&lt;/p&gt;
4088
4089 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
4090 Edu?&lt;/strong&gt;&lt;/p&gt;
4091
4092 &lt;p&gt;Sometimes the differences in the implementations, laws or
4093 economical and technical resources in the different countries don&#39;t
4094 allow us to agree in the same solution for all of us, and several
4095 approaches are needed, what is a waste of effort. Also, there is a
4096 lack of more man power to be able to follow the fast evolution of the
4097 technologies in school.&lt;/p&gt;
4098
4099 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4100
4101 &lt;p&gt;Debian, of course, and due to my kind of job I am most of my time
4102 between Iceweasel, &lt;a href=&quot;http://www.geany.org/&quot;&gt;Geany&lt;/a&gt; and
4103 &lt;a href=&quot;http://www.ohloh.net/p/gnome-terminator&quot;&gt;Terminator&lt;/a&gt;.&lt;/p&gt;
4104
4105 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4106 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4107
4108 &lt;p&gt;I think there is not a single strategy because there are very
4109 different scenarios: schools with mixed proprietary and free
4110 environments, schools using only workstations, other schools using
4111 laptops, netbooks, tablets, interactive white-boards, etc.&lt;/p&gt;
4112
4113 &lt;p&gt;Also the range of ages of the students is very broad and you can
4114 not use the same solutions for primary schools and secondary or even
4115 universities. So different strategies are needed.&lt;/p&gt;
4116
4117 &lt;p&gt;But, looking at these differences, and looking back to the things
4118 we&#39;ve done and implemented, and the places were we have spent most of
4119 our forces, I think we should focus as much as possible in free
4120 multi-platform environments, using only standards tools, and moving
4121 more and more to Internet or network solutions that could be deployed
4122 using wireless. I think we&#39;ll see more and more personal devices in
4123 the schools, devices the students and teachers will take home with
4124 them, so the solutions must be able to be taken at home and continue
4125 working there.&lt;/p&gt;
4126 </description>
4127 </item>
4128
4129 <item>
4130 <title>Debian Edu - some ideas for the future versions</title>
4131 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</link>
4132 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</guid>
4133 <pubDate>Mon, 11 Jun 2012 14:30:00 +0200</pubDate>
4134 <description>&lt;p&gt;During my work on
4135 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.nb.html&quot;&gt;Debian Edu
4136 based on Squeeze&lt;/a&gt;, I came across some issues that should be
4137 addressed in the Wheezy release. I finally found time to wrap up my
4138 notes and provide quick summary of what I found, with a bit
4139 explanation.&lt;/p&gt;
4140
4141 &lt;p&gt;&lt;ul&gt;
4142
4143 &lt;li&gt;We need to rewrite our package installation framework, as tasksel
4144 changed from using tasksel tasks to using meta packages (aka packages
4145 with dependencies like our education-* packages), and our installation
4146 system depend on tasksel tasks in
4147 /usr/share/tasksel/debian-edu-tasks.desc for package
4148 installation.&lt;/li&gt;
4149
4150 &lt;li&gt;Enable Kerberos login for more services. Now with the Kerberos
4151 foundation in place, we should use it to get single sign on with more
4152 services, and avoiding unneeded password / login questions. We should
4153 at least try to enable it for these services:
4154 &lt;ul&gt;
4155
4156 &lt;li&gt;CUPS for admins to add/configure printers and users when using
4157 quotas.&lt;/li&gt;
4158 &lt;li&gt;Nagios for admins checking the system status.&lt;/li&gt;
4159 &lt;li&gt;GOsa for admins updating LDAP and users changing their passwords.&lt;/li&gt;
4160 &lt;li&gt;LDAP for admins updating LDAP.&lt;/li&gt;
4161 &lt;li&gt;Squid for users when exam mode / filtering is active.&lt;/li&gt;
4162 &lt;li&gt;ssh for admins and users to save a password prompt.&lt;/li&gt;
4163
4164 &lt;/ul&gt;&lt;/li&gt;
4165
4166 &lt;li&gt;When we move GOsa to use Kerberos instead of LDAP bind to
4167 authenticate users, we should try to block or at least limit access to
4168 use LDAP bind for authentication, to ensure Kerberos is used when it
4169 is intended, and nothing fall back to using the less safe LDAP bind&lt;/li&gt;
4170
4171 &lt;li&gt;Merge debian-edu-config and debian-edu-install. The split made
4172 sense when d-e-install did a lot more, but these days it is just an
4173 inconvenience when we update the debconf preseeding values.&lt;/li&gt;
4174
4175 &lt;li&gt;Fix partman-auto to allow us to abort the installation before
4176 touching the disk if the disk is too small. This is
4177 &lt;a href=&quot;http://bugs.debian.org/653305&quot;&gt;BTS report #653305&lt;/a&gt; and the
4178 d-i developers are fine with the patch and someone just need to apply
4179 it and upload. After this is done we need to adjust
4180 debian-edu-install to use this new hook.&lt;/li&gt;
4181
4182 &lt;li&gt;Adjust to new LTSP framework (boot time config instead of install
4183 time config). LTSP changed its design, and our hooks to install
4184 packages and update the configuration is most likely not going to work
4185 in Wheezy.
4186
4187 &lt;li&gt;Consider switching to NBD instead of NFS for LTSP root, to allow
4188 the Kernel to cache files in its normal file cache, possibly speeding
4189 up KDE login on slow networks.&lt;/li&gt;
4190
4191 &lt;li&gt;Make it possible to create expired user passwords that need to
4192 change on first login. This is useful when handing out password on
4193 paper, to make sure only the user know the password. This require
4194 fixes to the PAM handling of kdm and gdm.&lt;/li&gt;
4195
4196 &lt;li&gt;Make GUI for adding new machines automatically from sitesummary.
4197 The current command line script is not very friendly to people most
4198 familiar with GUIs. This should probably be integrated into GOsa to
4199 have it available where the admin will be looking for it..&lt;/li&gt;
4200
4201 &lt;li&gt;We should find way for Nagios to check that the DHCP service
4202 actually is working (as in handling out IP addresses). None of the
4203 Nagios checks I have found so far have been working for me.&lt;/li&gt;
4204
4205 &lt;li&gt;We should switch from libpam-nss-ldapd to sssd for all profiles
4206 using LDAP, and not only on for roaming workstations, to have less
4207 packages to configure and consistent setup across all profiles.&lt;/li&gt;
4208
4209 &lt;li&gt;We should configure Kerberos to update LDAP and Samba password
4210 when changing password using the Kerberos protocol. The hook was
4211 requested in &lt;a href=&quot;http://bugs.debian.org/588968&quot;&gt;BTS report
4212 #588968&lt;/a&gt; and is now available in Wheezy. We might need to write a
4213 MIT Kerberos plugin in C to get this.&lt;/li&gt;
4214
4215 &lt;li&gt;We should clean up the set of applications installed by default.
4216 &lt;ul&gt;
4217
4218 &lt;li&gt;reduce the number of chemistry visualisers&lt;/li&gt;
4219 &lt;li&gt;consider dropping xpaint&lt;/li&gt;
4220 &lt;li&gt;and probably more?&lt;/li&gt;
4221 &lt;/ul&gt;&lt;/li&gt;
4222
4223 &lt;li&gt;Some hardware need external firmware to work properly. This is
4224 mostly the case for WiFi network cards, but there are some other
4225 examples too. For popular laptops to work out of the box, such
4226 firmware need to be installed from non-free, and we should provide
4227 some GUI to do this. Ubuntu already have this implemented, and we
4228 could consider using their packages. At the moment we have some
4229 command line script to do this (one for the running system, another
4230 for the LTSP chroot).&lt;/li&gt;
4231
4232
4233 &lt;li&gt;In Squeeze, we provide KDE, Gnome and LXDE as desktop options. We
4234 should extend the list to Xfce and Sugar, and preferably find a way to
4235 install several and allow the admin or the user to select which one to
4236 use.&lt;/li&gt;
4237
4238 &lt;li&gt;The golearn tool from the goplay package make it easy to check out
4239 interesting educational packages. We should work on the package
4240 tagging in Debian to ensure it represent all the useful educational
4241 packages, and extend the tool to allow it to use packagekit to install
4242 new applications with a simple mouse click.&lt;/li&gt;
4243
4244 &lt;li&gt;The Squeeze version got half a exam solution already in place,
4245 with the introduction of iptable based network blocking, but for it to
4246 be a complete exam solution the Squid proxy need to enable
4247 filtering/blocking as well when the exam mode is enabled. We should
4248 implement a way to easily enable this for the schools that want it,
4249 instead of the &quot;it is documented&quot; method of today.&lt;/li&gt;
4250
4251 &lt;li&gt;A feature used in several schools is the ability for a teacher to
4252 &quot;take over&quot; the desktop of individual or all computers in the room.
4253 There are at least three implementations,
4254 &lt;a href=&quot;italc.sourceforge.net/&quot;&gt;italc&lt;/a&gt;,
4255 &lt;a href=&quot;http://www.itais.net/help/en/&quot;&gt;controlaula&lt;/a&gt; og
4256 &lt;a href=&quot;http://www.epoptes.org/&quot;&gt;epoptes&lt;/a&gt; and we should pick one of
4257 them and make it trivial to set it up in a school. The challenges is
4258 how to distribute crypto keys and how to group computers in one room
4259 and how to set up which machine/user can control the machines in a
4260 given room.&lt;/li&gt;
4261
4262 &lt;li&gt;Tablets and surf boards are getting more and more popular, and we
4263 should look into providing a good solution for integrating these into
4264 the Debian Edu network. Not quite sure how. Perhaps we should
4265 provide a installation profile with better touch screen support for
4266 them, or add some sync services to allow them to exchange
4267 configuration and data with the central server. This should be
4268 investigated.&lt;/li&gt;
4269
4270 &lt;/ul&gt;&lt;/p&gt;
4271
4272 &lt;p&gt;I guess we will discover more as we continue to work on the Wheezy
4273 version.&lt;/p&gt;
4274 </description>
4275 </item>
4276
4277 <item>
4278 <title>Debian Edu interview: Mike Gabriel</title>
4279 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</link>
4280 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</guid>
4281 <pubDate>Sat, 2 Jun 2012 15:00:00 +0200</pubDate>
4282 <description>&lt;p&gt;Back in 2010, Mike Gabriel showed up on the
4283 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
4284 mailing list. He quickly proved to be a valuable developer, and
4285 thanks to his tireless effort we now have Kerberos integrated into the
4286 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
4287 Squeeze&lt;/a&gt; version.&lt;/p&gt;
4288
4289 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4290
4291 &lt;p&gt;My name is Mike Gabriel, I am 38 years old and live near Kiel,
4292 Schleswig-Holstein, Germany. I live together with a wonderful partner
4293 (Angela Fuß) and two own children and two bonus children (contributed
4294 by Angela).&lt;/p&gt;
4295
4296 &lt;p&gt;During the day I am part-time employed as a system administrator
4297 and part-time working as an IT consultant. The consultancy work
4298 touches free software topics wherever and whenever possible. During
4299 the nights I am a free software developer. In the gaps I also train in
4300 becoming an osteopath.&lt;/p&gt;
4301
4302 &lt;p&gt;Starting in 2010 we (Andreas Buchholz, Angela Fuß, Mike Gabriel)
4303 have set up a free software project in the area of Kiel that aims at
4304 introducing free software into schools. The project&#39;s name is
4305 &quot;IT-Zukunft Schule&quot; (IT future for schools). The project links IT
4306 skills with communication skills.&lt;/p&gt;
4307
4308 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
4309 project?&lt;/strong&gt;&lt;/p&gt;
4310
4311 &lt;p&gt;While preparing our own customised Linux distribution for
4312 &quot;IT-Zukunft Schule&quot; we were repeatedly asked if we really wanted to
4313 reinvent the wheel. What schools really need is already available,
4314 people said. From this impulse we started evaluating other Linux
4315 distributions that target being used for school networks.&lt;/p&gt;
4316
4317 &lt;p&gt;At the end we short-listed two approaches and compared them: a
4318 commercial Linux distribution developed by a company in Bremen,
4319 Germany, and Skolelinux / Debian Edu. Between 12/2010 and 03/2011 we
4320 went to several events and met people being responsible for marketing
4321 and development of either of the distributions. Skolelinux / Debian
4322 Edu was by far much more convincing compared to the other product that
4323 got short-listed beforehand--across the full spectrum. What was most
4324 attractive for me personally: the perspective of collaboration within
4325 the developmental branch of the Debian Edu project itself.&lt;/p&gt;
4326
4327 &lt;p&gt;In parallel with this, we talked to many local and not-so-local
4328 people. People teaching at schools, headmasters, politicians, data
4329 protection experts, other IT professionals.&lt;/p&gt;
4330
4331 &lt;p&gt;We came to two conclusions:&lt;/p&gt;
4332
4333 &lt;p&gt;First, a technical conclusion: What schools need is available in
4334 bits and pieces here and there, and none of the solutions really fit
4335 by 100%. Any school we have seen has a very individual IT setup
4336 whereas most of each school&#39;s requirements could mapped by a standard
4337 IT solution. The requirement to this IT solution is flexibility and
4338 customisability, so that individual adaptations here and there are
4339 possible. In terms of re-distributing and rolling out such a
4340 standardised IT system for schools (a system that is still to some
4341 degree customisable) there is still a lot of work to do here
4342 locally. Debian Edu / Skolelinux has been our choice as the starting
4343 point.&lt;/p&gt;
4344
4345 &lt;p&gt;Second, a holistic conclusion: What schools need does not exist at
4346 all (or we missed it so far). There are several technical solutions
4347 for handling IT at schools that tend to make a good impression. What
4348 has been missing completely here in Germany, though, is the enrolment
4349 of people into using IT and teaching with IT. &quot;IT-Zukunft Schule&quot;
4350 tries to provide an approach for this.&lt;/p&gt;
4351
4352 &lt;p&gt;Only some schools have some sort of a media concept which explains,
4353 defines and gives guidance on how to use IT in class. Most schools in
4354 Northern Germany do not have an IT service provider, the school&#39;s IT
4355 equipment is managed by one or (if the school is lucky) two (admin)
4356 teachers, most of the workload these admin teachers get done in there
4357 spare time.&lt;/p&gt;
4358
4359 &lt;p&gt;We were surprised that only a very few admin teachers were
4360 networked with colleagues from other schools. Basically, every school
4361 here around has its individual approach of providing IT equipment to
4362 teachers and students and the exchange of ideas has been quasi
4363 non-existent until 2010/2011.&lt;/p&gt;
4364
4365 &lt;p&gt;Quite some (non-admin) teachers try to avoid using IT technology in
4366 class as a learning medium completely. Several reasons for this
4367 avoidance do exist.&lt;/p&gt;
4368
4369 &lt;p&gt;We discovered that no-one has ever taken a closer look at this
4370 social part of IT management in schools, so far. On our quest journey
4371 for a technical IT solution for schools, we discussed this issue with
4372 several teachers, headmasters, politicians, other IT professionals and
4373 they all confirmed: a holistic approach of considering IT management
4374 at schools, an approach that includes the people in place, will be new
4375 and probably a gain for all.&lt;/p&gt;
4376
4377 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4378 Edu?&lt;/strong&gt;&lt;/p&gt;
4379
4380 &lt;p&gt;There is a list of advantages: international context, openness to
4381 any kind of contributions, do-ocracy policy, the closeness to Debian,
4382 the different installation scenarios possible (from stand-alone
4383 workstation to complex multi-server sites), the transparency within
4384 project communication, honest communication within the group of
4385 developers, etc.&lt;/p&gt;
4386
4387 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
4388 Edu?&lt;/strong&gt;&lt;/p&gt;
4389
4390 &lt;p&gt;Every coin has two sides:&lt;/p&gt;
4391
4392 &lt;p&gt;Technically: &lt;a href=&quot;http://bugs.debian.org/311188&quot;&gt;BTS issue
4393 #311188&lt;/a&gt;, tricky upgradability of a Debian Edu main server, network
4394 client installations on top of a plain vanilla Debian installation
4395 should become possible sometime in the near future, one could think
4396 about splitting the very complex package debian-edu-config into
4397 several portions (to make it easier for new developers to
4398 contribute).&lt;/p&gt;
4399
4400 &lt;p&gt;Another issue I see is that we (as Debian Edu developers) should
4401 find out more about the network of people who do the marketing for
4402 Debian Edu / Skolelinux. There is a very active group in Germany
4403 promoting Skolelinux on the bigger Linux Days within Germany. Are
4404 there other groups like that in other countries? How can we bring
4405 these marketing people together (marketing group A with group B and
4406 all of them with the group of Debian Edu developers)? During the last
4407 meeting of the German Skolelinux group, I got the impression of people
4408 there being rather disconnected from the development department of
4409 Debian Edu / Skolelinux.&lt;/p&gt;
4410
4411 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4412
4413 &lt;p&gt;For my daily business, I do not use commercial software at all.&lt;/p&gt;
4414
4415 &lt;p&gt;For normal stuff I use Iceweasel/Firefox, Libreoffice.org. For
4416 serious text writing I prefer LaTeX. I use gimp, inkscape, scribus for
4417 more artistic tasks. I run virtual machines in KVM and Virtualbox.&lt;/p&gt;
4418
4419 &lt;p&gt;I am one of the upstream developers of X2Go. In 2010 I started the
4420 development of a Python based X2Go Client, called PyHoca-GUI.
4421 PyHoca-GUI has brought forth a Python X2Go Client API that currently
4422 is being integrated in Ubuntu&#39;s software center.&lt;/p&gt;
4423
4424 &lt;p&gt;For communications I have my own Kolab server running using Horde
4425 as web-based groupware client. For IRC I love to use irssi, for Jabber
4426 I have several clients that I use, mostly pidgin, though. I am also
4427 the Debian maintainer of Coccinella, a Jabber-based interactive
4428 whiteboard.&lt;/p&gt;
4429
4430 &lt;p&gt;My favourite terminal emulator is KDE&#39;s Yakuake.&lt;/p&gt;
4431
4432 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4433 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4434
4435 &lt;p&gt;Communicate, communicate, communicate. Enrol people, enrol people,
4436 enrol people.&lt;/p&gt;
4437 </description>
4438 </item>
4439
4440 <item>
4441 <title>Debian Edu interview: Ralf Gesellensetter</title>
4442 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</link>
4443 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</guid>
4444 <pubDate>Sun, 27 May 2012 17:15:00 +0200</pubDate>
4445 <description>&lt;p&gt;In 2003, a German teacher showed up on the
4446 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
4447 mailing list with interesting problems and reports proving he setting
4448 up Linux for a (for us at the time) lot of pupils. His name was Ralf
4449 Gesellensetter, and he has been an important tester and contributor
4450 since then, helping to make sure the
4451 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
4452 Squeeze&lt;/a&gt; release became as good as it is..&lt;/p&gt;
4453
4454 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4455
4456 &lt;p&gt;I am a teacher from Germany, and my subjects are Geography,
4457 Mathematics, and Computer Science (&quot;Informatik&quot;). During the past 12
4458 years (since 2000), I have been working for a comprehensive (and soon,
4459 also inclusive) school leading to all kind of general levels, such as
4460 O- or A-level (&quot;Abitur&quot;). For quite as long, I&#39;ve been taking care of
4461 our computer network.&lt;/p&gt;
4462
4463 &lt;p&gt;Now, in my early 40s, I enjoy the privilege of spending a lot of my
4464 spare time together with my wife, our son (3 years) and our daughter
4465 (4 months).&lt;/p&gt;
4466
4467 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
4468 project?&lt;/strong&gt;&lt;/p&gt;
4469
4470 &lt;p&gt;We had tried different Linux based school servers, when members of
4471 my local Linux User Group (LUG OWL) detected Skolelinux. I remember
4472 very well, being part of a party celebrating the Linux New Media Award
4473 (&quot;Best Newcomer Distribution&quot;, also nominated: Ubuntu) that was given
4474 to Skolelinux at Linux World Exposition in Frankfurt, 2005 (IIRC). Few
4475 months later, I had the chance to join a developer meeting in Ulsrud
4476 (Oslo) and to hand out the award to Knut Yrvin and others. For more
4477 than 7 years, Skolelinux is part of our schools infrastructure, namely
4478 our main server (tjener), one LTSP (today without thin clients), and
4479 approximately 50 work stations. Most of these have the option to boot a
4480 locally installed Skolelinux image. As a consequence, I joined quite
4481 a few events dealing with free software or Linux, and met many Debian
4482 (Edu) developers. All of them seemed quite nice and competent to me,
4483 one more reason to stick to Skolelinux.&lt;/p&gt;
4484
4485 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4486 Edu?&lt;/strong&gt;&lt;/p&gt;
4487
4488 &lt;p&gt;Debian driven, you are given all the advantages of a community
4489 project including well maintained updates. Once, you are familiar with
4490 the network layout, you can easily roll out an entire educational
4491 computer infrastructure, from just one installation media. As only
4492 free software (FOSS) is used, that supports even elderly hardware,
4493 up-sizing your IT equipment is only limited by space (i.e. available
4494 labs). Especially if you run a LTSP thin client server, your
4495 administration costs tend towards zero.&lt;/p&gt;
4496
4497 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
4498 Edu?&lt;/strong&gt;&lt;/p&gt;
4499
4500 &lt;p&gt;While Debian&#39;s stability has loads of advantages for servers, this
4501 might be different in some cases for clients: Schools with unlimited
4502 budget might buy new hardware with components that are not yet
4503 supported by Debian stable, or wish to use more recent versions of
4504 office packages or desktop environments. These schools have the
4505 option to run Debian testing or other distributions - if they have the
4506 capacity to do so. Another issue is that Debian release cycles
4507 include a wide range of changes; therefor a high percentage of human
4508 power seems to be absorbed by just keeping the features of Skolelinux
4509 within the new setting of the version to come. During this process,
4510 the cogs of Debian Edu are getting more and more professional,
4511 i.e. harder to understand for novices.&lt;/p&gt;
4512
4513 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4514
4515 &lt;p&gt;LibreOffice, Wikipedia, Openstreetmap, Iceweasel (Mozilla Firefox),
4516 KMail, Gimp, Inkscape - and of course the Linux Kernel (not only on
4517 PC, Laptop, Mobile, but also our SAT receiver)&lt;/p&gt;
4518
4519 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4520 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4521
4522 &lt;p&gt;&lt;ol&gt;
4523
4524 &lt;li&gt;Support computer science as regular subject in schools to make
4525 people really &quot;own&quot; their hardware, to make them understand the
4526 difference between proprietary software products, and free software
4527 developing.&lt;/li&gt;
4528
4529 &lt;li&gt;Make budget baskets corresponding: In Germany&#39;s public schools
4530 there are more or less fixed budgets for IT equipment (including
4531 licenses), so schools won&#39;t benefit from any savings here. This
4532 privilege is left to private schools which have consequently a large
4533 share among German Skolelinux schools.&lt;/li&gt;
4534
4535 &lt;li&gt;Get free software in the seminars where would-be teachers are
4536 trained. In many cases, teachers&#39; software customs are respected by
4537 decision makers rather than the expertise of any IT experts.&lt;/li&gt;
4538
4539 &lt;li&gt;Don&#39;t limit ourself to free software run natively. Everybody uses
4540 free software or free licenses (for instance Wikipedia), and this
4541 general concept should get expanded to free educational content to be
4542 shared world wide (school books e.g.).&lt;/li&gt;
4543
4544 &lt;li&gt;Make clear where ever you can that the market share of free (libre)
4545 office suites is much above 20 p.c. today, and that you pupils don&#39;t
4546 need to know the &quot;ribbon menu&quot; in order to get employed.&lt;/li&gt;
4547
4548 &lt;li&gt;Talk about the difference between freeware and free software.&lt;/li&gt;
4549
4550 &lt;li&gt;Spread free software, or even collections of portable free apps
4551 for USB pen drives. Endorse students to get a legal copy of
4552 Libreoffice rather than accepting them to use illegal serials. And
4553 keep sending documents in ODF formats.&lt;/li&gt;
4554
4555 &lt;/ol&gt;&lt;/p&gt;
4556 </description>
4557 </item>
4558
4559 <item>
4560 <title>Skolelinux-intervju: Alf Tonny Bätz</title>
4561 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Alf_Tonny_B_tz.html</link>
4562 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Alf_Tonny_B_tz.html</guid>
4563 <pubDate>Sun, 20 May 2012 11:50:00 +0200</pubDate>
4564 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux-prosjektets&lt;/a&gt;
4565 musiker og mannen bak
4566 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Manuals/Rosegarden/&quot;&gt;opplæringsdokumentene
4567 i Rosegarden&lt;/a&gt;
4568 (&lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/nb/rosegarden-manual.html&quot;&gt;norsk
4569 utgave&lt;/a&gt;) for musikklærere, Alf Tonny Bätz, er neste mann ut i min
4570 intervjurunde av folkene bak Skolelinux-løsningen. Jeg har kjent Alf
4571 Tonny siden vi møttes som barn på påskefjellet i Ofoten, og ble
4572 gledelig overrasket da han dukket opp i Skolelinux-prosjektet etter å
4573 ikke ha sett noe til ham på mange år.&lt;/p&gt;
4574
4575 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
4576
4577 &lt;p&gt;Jeg er utdannet kokk av yrke, og har utøvet yrket i 12 år. Men
4578 etter at ryggen sa takk før seg, studerte jeg nettverksadministrasjon
4579 ved Næringsakademiet i Bergen årene 2008-2009 slik at jeg kunne
4580 forfølge en av mine største interesser - data. Til daglig jobber jeg
4581 ved &lt;a href=&quot;http://www.narvikskolen.no/parken/&quot;&gt;Parken
4582 ungdomsskole&lt;/a&gt; med å drifte skolens PC-er. Har også litt
4583 musikkundervisning.&lt;/p&gt;
4584
4585 &lt;p&gt;Mitt mål er å bevisstgjøre musikklærene mulighetene med de frie
4586 programmene som finnes i Skolelinux, blant annet Rosegarden.&lt;/p&gt;
4587
4588 &lt;p&gt;Har i mange år drevet med musikk og en av grunnen til at Rosegarden
4589 falt i smak for min del, var fordi denne fungere og ligner mest på
4590 Windows-programmet (cubase) jeg jobbet mye med da jeg i mine yngre
4591 dager var «Windows fanatiker». Ble introdusert til Linux av en kompis
4592 av meg for omtrent 14 år siden, og har bare blitt mer og mer glad i
4593 dette operativsystemet.&lt;/p&gt;
4594
4595 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
4596
4597 &lt;p&gt;Da jeg ble sykemeldt fra min gamle jobb, og måtte omskoleres,
4598 havnet jeg i 2007 sammen med Viggo Fedreheim på IKT-avdelingen i
4599 Narvik kommune, der ble jeg for første gang introdusert til
4600 Skolelinuxprosjektet.&lt;/p&gt;
4601
4602 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
4603
4604 &lt;p&gt;Skolelinux er enkelt å holde i drift og masse flotte programmer som
4605 geogebra, ktouch og kgeografi følger med pakken. Man kan ta i bruk
4606 gamle PC-er igjen, slik at skoler med dårlig råd får opp en brukbar
4607 PC-park. PC-er som er ca 6-9 år gamle fungere tilfredstillende, bare
4608 de har 512 MB RAM eller mer.&lt;/p&gt;
4609
4610 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
4611
4612 &lt;p&gt;Ulempene er at noen av de pedagogiske programmene som lærene ønsker
4613 å bruke fungere dårlig med Linux. Mye pga. av at disse programmene
4614 blir ikke laget til Linuxbaserte operativsystemer.&lt;/p&gt;
4615
4616 &lt;p&gt;Video- og bilde-redigering har dessverre en del mangler, mange av
4617 programmene har en tendens til og krasje. Det gjelder blant annet
4618 &lt;a href=&quot;http://www.kdenlive.org/&quot;&gt;kdenlive&lt;/a&gt; og
4619 &lt;a href=&quot;http://www.openshotvideo.com/&quot;&gt;openshot&lt;/a&gt;, for å nevne
4620 noen. De er ikke stabile nok. Når elevene kommer med filmsnutter de
4621 ønsker og jobbe med, så godtar ikke programmene filene, og når elevene
4622 jobber med redigering bare krasjer programmene uten forvarsel. Det er
4623 for vanskelig å få noe som bare fungerer ut av boksen her. Når en elev
4624 plugger inn et videokamera eller fotoapparat så er det alltid noe som
4625 ikke vil fungere. Programmene godtar ikke format, godtar ikke
4626 kameraet, osv., osv. Det er dessverre med på og dra ned en positiv
4627 opplevelse av bruk av fri programvare.&lt;/p&gt;
4628
4629 &lt;p&gt;Man må ofte bruke flere en et video redigerings program før og få
4630 fullført en ønsket oppgave.&lt;/p&gt;
4631
4632 &lt;p&gt;Eksempel:&lt;/p&gt;
4633
4634 &lt;p&gt;Hvis det ene programmet ikke vil ta i mot videofilen klarer et
4635 annet det, men det programmet som klarer det kan ikke gjøre de samme
4636 oppgavene som det programmet som ikke ville ta i mot filen,
4637 Tilsvarende er det med foto, man må bruke flere programmer for å få
4638 et ferdig resultat. Til dags dato har jeg enda ikke funnet et video-
4639 og fotoprogram som kan tilfredstillende fullføre en oppgave.&lt;/p&gt;
4640
4641 &lt;p&gt;Så man kan klare og fullføre en oppgave, men i verste fall må man
4642 innom 3-4 programmer for å få det til. Så jeg har enda ikke til dags
4643 dato sett at et program fungere 100% til alt.&lt;/p&gt;
4644
4645 &lt;p&gt;Det programmet jeg har best erfaring til er
4646 &lt;a href=&quot;http://cinelerra.org/&quot;&gt;cinelerra&lt;/a&gt;, men dessverre har det
4647 også tendenser og krasje av og til uten grunn.&lt;/p&gt;
4648
4649 Lydsystemet kan også være et mareritt. Konkret snakker jeg om når du
4650 bruker for eksempel et smartboard, så følger det med USB-lydkort på
4651 disse. Problemet ligger her i at systemet ikke vil velge rett
4652 lydkort, så man må inn med padevchooser for å sette opp PulseAudio
4653 til og velge at USB-lydkortet skal brukes. Det blir for tungvindt for
4654 lærene, de ønsker at ting skal fungere med en gang. (min løsning på
4655 det problemet ble at jeg måtte deaktivere lydkortet som fantes på
4656 maskinen) men da må man bestandig slå på smartboard-tavla.
4657
4658 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
4659
4660 Programmene jeg bruker mest av er: Rosegarden, jack, qsynth, audacity,
4661 k3b, openttd og libreoffice.
4662
4663 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
4664 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
4665
4666 Jeg tror det må bevisstgjøring av Skolene til, dvs. reklamere høylytt
4667 og fortelle og vise de andre skolene at frie programvarer faktisk
4668 fungere. Jeg trur faktisk mange ikke vet at det finnes frie
4669 alternativer.
4670 </description>
4671 </item>
4672
4673 <item>
4674 <title>Debian Edu interview: Jürgen Leibner</title>
4675 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</link>
4676 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</guid>
4677 <pubDate>Sun, 13 May 2012 20:30:00 +0200</pubDate>
4678 <description>&lt;p&gt;It has been a few busy weeks for me, but I am finally back to
4679 publish another interview with the people behind
4680 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
4681 This time it is one of our German developers, who have helped out over the
4682 years to make sure both a lot of major but also a lot of the minor
4683 details get right before release.
4684
4685 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4686
4687 &lt;p&gt;My name is Jürgen Leibner, I&#39;m 49 years old and living in
4688 Bielefeld, a town in northern Germany. I worked nearly 20 years as
4689 certified engineer in the department for plant design and layout of an
4690 international company for machinery and equipment. Since 2011 I&#39;m a
4691 certified technical writer (tekom e.V.) and doing technical
4692 documentations for a steam turbine manufacturer. From April this year
4693 I will manage the department of technical documentation at a
4694 manufacturer of automation and assembly line engineering.&lt;/p&gt;
4695
4696 &lt;p&gt;My first contact with linux was around 1993. Since that time I used
4697 it at work and at home repeatedly but not exclusively as I do now at
4698 home since 2006.&lt;/p&gt;
4699
4700 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
4701 project?&lt;/strong&gt;&lt;/p&gt;
4702
4703 &lt;p&gt;Once a day in the early year of 2001 when I wanted to fetch my
4704 daughter from primary school, there was a teacher sitting in the
4705 middle of 20 old computers trying to boot them and he failed. I helped
4706 him to get them booting. That was seen by the school director and she
4707 asked me if I would like to manage that the school gets all that old
4708 computers in use. I answered: &quot;Yes&quot;.&lt;/p&gt;
4709
4710 &lt;p&gt;Some weeks later every of the 10 classrooms had one computer
4711 running Windows98. I began to collect old computers and equipment as
4712 gifts and installed the first computer room with a peer-to-peer
4713 network. I did my work at school without being payed in my spare time
4714 and with a lot of fun. About one year later the school was connected
4715 to Internet and a local area network was installed in the school
4716 building. That was the time to have a server and I knew it must be a
4717 Linux server to be able to fulfil all the wishes of the teachers and
4718 being able to do this in a transparent and economic way, without extra
4719 costs for things like licence and software. So I searched for a
4720 school server system running under Linux and I found a couple of
4721 people nearby who founded &#39;skolelinux.de&#39;. It was the Skolelinux
4722 prerelease 32 I first tried out for being used at the school. I
4723 managed the IT of that school until the municipal authority took over
4724 the IT management and centralised the services for all schools in
4725 Bielefeld in December of 2006.&lt;/p&gt;
4726
4727 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4728 Edu?&lt;/strong&gt;&lt;/p&gt;
4729
4730 &lt;p&gt;When I&#39;m looking back to the beginning, there were other advantages
4731 for me as today.&lt;/p&gt;
4732
4733 &lt;p&gt;In the past there were advantages like:&lt;/p&gt;
4734
4735 &lt;p&gt;&lt;ul&gt;
4736
4737 &lt;li&gt;I don&#39;t need to buy it so it generates no costs to the school as
4738 they had little money to spent for computers and software.&lt;/li&gt;
4739
4740 &lt;li&gt;It has a licence which grands all rights to use it without
4741 cost.&lt;/li&gt;
4742
4743 &lt;li&gt;It was more able to fit all requirements of a server system for
4744 schools than a Microsoft server system, even if there are only Windows
4745 clients because of it&#39;s preconfigured overall concept of being a
4746 infrastructure solution and community for schools, not only a
4747 server&lt;/li&gt;
4748
4749 &lt;li&gt;I was able to configure the server to the needs of the
4750 school.&lt;/li&gt;
4751
4752 &lt;/ul&gt;&lt;/p&gt;
4753
4754 &lt;p&gt;Today some of the advantages has been lost, changed or new ones
4755 came up in this way:&lt;/p&gt;
4756
4757 &lt;p&gt;&lt;ul&gt;
4758
4759 &lt;li&gt;Most schools here do have money to buy hardware and software
4760 now.&lt;/li&gt;
4761
4762 &lt;li&gt;They are today mostly managed from central IT departments which
4763 have own concepts which often do not fit to Debian Edu concepts
4764 because they are to close to Microsoft ideology.&lt;/li&gt;
4765
4766 &lt;li&gt;With the Squeeze version of Debian Edu which now uses GOsa² for
4767 management I feel more able to manage the daily tasks than with the
4768 interfaces used in the past.&lt;/li&gt;
4769
4770 &lt;li&gt;It is more modular than in the past and fits even better to the
4771 different needs.&lt;/li&gt;
4772
4773 &lt;li&gt;The documentation is usable and gets better every day.&lt;/li&gt;
4774
4775 &lt;li&gt;More people than ever before are using Debian Edu all over the
4776 world and so the community, which is an very important part I think,
4777 is sharing knowledge and minds.&lt;/li&gt;
4778
4779 &lt;li&gt;Most, maybe all, of the technical requirements for schools are
4780 solved today by Debian Edu. &lt;/li&gt;
4781
4782 &lt;/ul&gt;&lt;/p&gt;
4783
4784 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
4785 Edu?&lt;/strong&gt;&lt;/p&gt;
4786
4787 &lt;p&gt;&lt;ul&gt;
4788
4789 &lt;li&gt;There are too few IT companies able to integrate Debian Edu into
4790 their product portfolio for serving schools with concepts or even
4791 whole municipality areas.&lt;/li&gt;
4792
4793 &lt;li&gt;Debian Edu has beside other free and open software projects not
4794 enough lobbyists which promote free and open software to
4795 politicians.&lt;/li&gt;
4796
4797 &lt;li&gt;Technically there are no disadvantages I&#39;m aware of.&lt;/li&gt;
4798
4799 &lt;/ul&gt;&lt;/p&gt;
4800
4801 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4802
4803 &lt;p&gt;I use Debian stable on my home server and on my little desktop
4804 computer. On my laptop I use Debian testing/sid. The applications I
4805 use on my laptop and my desktop are Open/Libre-office, Iceweasel,
4806 KMail, DigiKam, Amarok, Dolphin, okular and all the other programs I
4807 need from the KDE environment. On console I use newsbeuter, mutt,
4808 screen, irssi and all the other famous and useful tools.&lt;/p&gt;
4809
4810 &lt;p&gt;My home server provides mail services with exim, dovecot, roundcube
4811 and mutt over ssh on the console, file services with samba, NFS,
4812 rsync, web services with apache, moinmoin-wiki, multimedia services
4813 with gallery2 and mediatomb and database services with MySQL for me
4814 and the whole family. I probably forgot something.&lt;/p&gt;
4815
4816 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4817 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4818
4819 &lt;p&gt;I believe, we should provide concepts for IT companies to integrate
4820 Debian Edu into their product portfolio with use cases for different
4821 countries and areas all over the world.&lt;/p&gt;
4822 </description>
4823 </item>
4824
4825 <item>
4826 <title>Forskning: &quot;GPL gir lokal frihet og kontroll gjennom omfordeling av makt fra produsent til bruker&quot;</title>
4827 <link>http://people.skolelinux.org/pere/blog/Forskning___GPL_gir_lokal_frihet_og_kontroll_gjennom_omfordeling_av_makt_fra_produsent_til_bruker_.html</link>
4828 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forskning___GPL_gir_lokal_frihet_og_kontroll_gjennom_omfordeling_av_makt_fra_produsent_til_bruker_.html</guid>
4829 <pubDate>Sun, 15 Apr 2012 13:00:00 +0200</pubDate>
4830 <description>&lt;p&gt;Da jeg googlet etter noe annet kom jeg tilfeldigvis over
4831 &lt;a href=&quot;http://www.duo.uio.no/sok/work.html?WORKID=58309&quot;&gt;en
4832 hovedfagsoppgave&lt;/a&gt; ved Universitetet i Oslo som diskuterer verdien
4833 av GPLs fire friheter for brukerne av IT-systemer. Jeg ble fascinert
4834 over det som presenteres der. Her er sammendraget:&lt;/p&gt;
4835
4836 &lt;p&gt;&lt;blockquote&gt;
4837
4838 &lt;p&gt;Motivasjonen til å skrive denne oppgaven er en personlig undring
4839 over hvorfor det primært, og ofte eksklusivt, fokuseres på det
4840 økonomiske aspektet ved utredninger om fri programvare er et godt valg
4841 for det offentlige. Fri og produsenteid programvare bygger på
4842 fundamentalt forskjellige ideologier som kan ha implikasjoner utover
4843 økonomiske kostnader. Kunnskapskulturen som er med på å definere fri
4844 programvare er basert på åpenhet, og er en verdi i seg selv.&lt;/p&gt;
4845
4846 &lt;p&gt;Oppgavens tema er programvarelisensen GPL og frihet. GPL-lisensiert
4847 programvare gir visse friheter i forhold til produsenteid
4848 programvare. Mitt spørsmål er om, og eventuelt i hvilken utstrekning,
4849 disse frihetene blir benyttet av ulike brukere og hvordan de
4850 manifesterer seg for disse brukerne. Sentrale spørsmål i oppgaven
4851 er:&lt;/p&gt;
4852
4853 &lt;ul&gt;
4854 &lt;li&gt;Hvordan fordeles handlekraft gjennom lisensieringen av programvaren?&lt;/li&gt;
4855 &lt;li&gt;Hvilke konsekvenser har programvarelisensen for de ulike brukere? &lt;/li&gt;
4856 &lt;/ul&gt;
4857
4858 &lt;p&gt;Fri programvare gir blant annet brukeren mulighet til å studere og
4859 modifisere kildekoden. Denne formen for frihet erverves gjennom
4860 kunnskap og krever at brukeren også er en ekspert. Hva skjer med
4861 frihetene til GPL når sluttbrukeren er en annen? Dette diskuteres i
4862 dialog med informantene.&lt;/p&gt;
4863
4864 &lt;p&gt;Jeg har i denne oppgaven samlet inn intervjudata fra IKT-ansvarlige
4865 ved grunnskolene i Nittedal kommune, driftsansvarlig og IKT-veilederen
4866 for skolene i kommunen, samt IKT-koordinator for utdanning i Akershus
4867 fylkeskommune og bokmåloversettere av OpenOffice.org. Den empiriske
4868 delen av oppgaven er delt inn i to seksjoner; den første omhandler
4869 operativsystemet Skolelinux, den andre kontorprogrampakken
4870 OpenOffice.org.&lt;/p&gt;
4871
4872 &lt;p&gt;Som vi vil se gir GPL lokal frihet og kontroll gjennom omfordeling
4873 av makt fra produsent til bruker. Brukerens makt analyseres gjennom
4874 begrepene brukermedvirkning og handlingsfrihet. Det blir også lagt
4875 vekt på strukturelle forhold rundt bruken av teknologi, og spesielt de
4876 økonomiske begrepene nettverkseksternaliteter, innlåsing og
4877 stiavhengighet. Dette er begreper av spesiell nytte når objektet som
4878 omsettes eller distribueres er et kommunikasjonsprodukt, fordi verdien
4879 til et slikt gode for en potensiell bruker avhenger av antall
4880 eksisterende brukere av godet. I tilknytning til denne problematikken
4881 inneholder oppgaven også en diskusjon rundt åpne standarder og
4882 formater.&lt;/p&gt;
4883
4884 &lt;p&gt;Oppgaven konkluderer med at de «fire frihetene» som GPL-lisensen er
4885 laget for å beskytte er av avgjørende betydning for bruken av
4886 OpenOffice.org og Skolelinux, i Akershus fylkeskommune såvel som i
4887 skolene i Nittedal. Distribusjonen av handlekraft er ikke helt
4888 symmetrisk. Det er først og fremst de profesjonelle utviklerne i
4889 Skolelinux som direkte kan nyttiggjøre seg friheten til å endre kode,
4890 mens en sluttbruker som Nittedal kommune nyttiggjør seg den økonomiske
4891 friheten til å kunne distribuere programmene. Det er imidlertid også
4892 slik at ingen aktør klarer seg uten alle disse «frihetene».&lt;/p&gt;
4893 &lt;/blockquote&gt;&lt;/p&gt;
4894
4895 &lt;p&gt;Jeg fant også en masteroppgave fra 2006, men der ligger ikke
4896 komplett oppgave tilgjengelig. På tide å holde et øye med
4897 &lt;a href=&quot;http://www.duo.uio.no/sok/search.html?q=skolelinux&quot;&gt;Skolelinux-søket&lt;/a&gt;
4898 til DUO...&lt;/p&gt;
4899
4900 </description>
4901 </item>
4902
4903 <item>
4904 <title>Debian Edu interview: Andreas Mundt</title>
4905 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</link>
4906 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</guid>
4907 <pubDate>Sun, 15 Apr 2012 12:10:00 +0200</pubDate>
4908 <description>&lt;p&gt;Behind &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
4909 Skolelinux&lt;/a&gt; there are a lot of people doing the hard work of
4910 setting together all the pieces. This time I present to you Andreas
4911 Mundt, who have been part of the technical development team several
4912 years. He was also a key contributor in getting GOsa and Kerberos set
4913 up in the recently released
4914 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
4915 Edu Squeeze&lt;/a&gt; version.&lt;/p&gt;
4916
4917 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4918
4919 &lt;p&gt;My name is Andreas Mundt, I grew up in south Germany. After
4920 studying Physics I spent several years at university doing research in
4921 Quantum Optics. After that I worked some years in an optics company.
4922 Finally I decided to turn over a new leaf in my life and started
4923 teaching 10 to 19 years old kids at school. I teach math, physics,
4924 information technology and science/technology.&lt;/p&gt;
4925
4926 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
4927 project?&lt;/strong&gt;&lt;/p&gt;
4928
4929 &lt;p&gt;Already before I switched to teaching, I followed the Debian Edu
4930 project because of my interest in education and Debian. Within the
4931 qualification/training period for the teaching, I started
4932 contributing.&lt;/p&gt;
4933
4934 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4935 Edu?&lt;/strong&gt;&lt;/p&gt;
4936
4937 &lt;p&gt;The advantages of Debian Edu are the well known name, the
4938 out-of-the-box philosophy and of course the great free software of the
4939 Debian Project!&lt;/p&gt;
4940
4941 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
4942 Edu?&lt;/strong&gt;&lt;/p&gt;
4943
4944 &lt;p&gt;As every coin has two sides, the out-of-the-box philosophy has its
4945 downside, too. In my opinion, it is hard to modify and tweak the
4946 setup, if you need or want that. Further more, it is not easily
4947 possible to upgrade the system to a new release. It takes much too
4948 long after a Debian release to prepare the -Edu release, perhaps
4949 because the number of developers working on the core of the code is
4950 rather small and often busy elsewhere.&lt;/p&gt;
4951
4952 &lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/DebianLAN&quot;&gt;Debian LAN&lt;/a&gt;
4953 project might fill the use case of a more flexible system.&lt;/p&gt;
4954
4955 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4956
4957 &lt;p&gt;I am only using non-free software if I am forced to and run Debian
4958 on all my machines. For documents I prefer LaTeX and PGF/TikZ, then
4959 mutt and iceweasel for email respectively web browsing. At school I
4960 have Arduino and Fritzing in use for a micro controller project.&lt;/p&gt;
4961
4962 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4963 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4964
4965 &lt;p&gt;One of the major problems is the vendor lock-in from top to bottom:
4966 Especially in combination with ignorant government employees and
4967 politicians, this works out great for the &quot;market-leader&quot;. The school
4968 administration here in Baden-Wuerttemberg is occupied by that vendor.
4969 Documents have to be prepared in non-free, proprietary formats. Even
4970 free browsers do not work for the school administration. Publishers
4971 of school books provide software only for proprietary platforms.&lt;/p&gt;
4972
4973 &lt;p&gt;To change this, political work is very important. Parts of the
4974 political spectrum have become aware of the problem in the last years.
4975 However it takes quite some time and courageous politicians to &#39;free&#39;
4976 the system. There is currently some discussion about &quot;Open Data&quot; and
4977 &quot;Free/Open Standards&quot;. I am not sure if all the involved parties have
4978 a clue about the potential of these ideas, and probably only a
4979 fraction takes them seriously. However it might slowly make free
4980 software and the philosophy behind it more known and popular.&lt;/p&gt;
4981 </description>
4982 </item>
4983
4984 <item>
4985 <title>Debian Edu interview: Justin B. Rye</title>
4986 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</link>
4987 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</guid>
4988 <pubDate>Sun, 8 Apr 2012 10:50:00 +0200</pubDate>
4989 <description>&lt;p&gt;It take all kind of contributions to create a Linux distribution
4990 like &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;,
4991 and this time I lend the ear to Justin B. Rye, who is listed as a big
4992 contributor to the
4993 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
4994 Edu Squeeze release manual&lt;/a&gt;.
4995
4996 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4997
4998 &lt;p&gt;I&#39;m a 44-year-old linguistics graduate living in Edinburgh who has
4999 occasionally been employed as a sysadmin.&lt;/p&gt;
5000
5001 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5002 project?&lt;/strong&gt;&lt;/p&gt;
5003
5004 &lt;p&gt;I&#39;m neither a developer nor a Skolelinux/Debian Edu user! The only
5005 reason my name&#39;s in the credits for the documentation is that I hang
5006 around on debian-l10n-english waiting for people to mention things
5007 they&#39;d like a native English speaker to proofread... So I did a sweep
5008 through the wiki for typos and Norglish and inconsistent spellings of
5009 &quot;localisation&quot;.&lt;/p&gt;
5010
5011 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5012 Edu?&lt;/strong&gt;&lt;/p&gt;
5013
5014 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5015 Edu?&lt;/strong&gt;&lt;/p&gt;
5016
5017 &lt;p&gt;These questions are too hard for me - I don&#39;t use it! In fact I
5018 had hardly any contact with I.T. until long after I&#39;d got out of the
5019 education system.&lt;/p&gt;
5020
5021 &lt;p&gt;I can tell you the advantages of Debian for me though: it soaks up
5022 as much of my free time as I want and no more, and lets me do
5023 everything I want a computer for without ever forcing me to spend
5024 money on the latest hardware.&lt;/p&gt;
5025
5026 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5027
5028 &lt;p&gt;I&#39;ve been using Debian since Rex; popularity-contest says the
5029 software that I use most is xinit, xterm, and xulrunner (in other
5030 words, I use a distinctly retro sort of desktop).&lt;/p&gt;
5031
5032 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5033 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5034
5035 &lt;p&gt;Well, I don&#39;t know. I suppose I&#39;d be inclined to try reasoning
5036 with the people who make the decisions, but obviously if that worked
5037 you would hardly need a strategy.&lt;/p&gt;
5038 </description>
5039 </item>
5040
5041 <item>
5042 <title>Why the KDE menu is slow when /usr/ is NFS mounted - and a workaround</title>
5043 <link>http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</link>
5044 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</guid>
5045 <pubDate>Fri, 6 Apr 2012 22:40:00 +0200</pubDate>
5046 <description>&lt;p&gt;Recently I have spent time with
5047 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; on speeding
5048 up a &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
5049 Lenny installation using LTSP diskless workstations, and in the
5050 process I discovered something very surprising. The reason the KDE
5051 menu was responding slow when using it for the first time, was mostly
5052 due to the way KDE find application icons. I discovered that showing
5053 the Multimedia menu would cause more than 20 000 IP packages to be
5054 passed between the LTSP client and the NFS server. Most of these were
5055
5056 NFS LOOKUP calls, resulting in a NFS3ERR_NOENT response. Because the
5057 ping times between the client and the server were in the range 2-20
5058 ms, the menus would be very slow. Looking at the strace of kicker in
5059 Lenny (or plasma-desktop i Squeeze - same problem there), I see that
5060 the source of these NFS calls are access(2) system calls for
5061 non-existing files. KDE can do hundreds of access(2) calls to find
5062 one icon file. In my example, just finding the mplayer icon required
5063 around 230 access(2) calls.&lt;/p&gt;
5064
5065 &lt;p&gt;The KDE code seem to search for icons using a list of icon
5066 directories, and the list of possible directories is large. In
5067 (almost) each directory, it look for files ending in .png, .svgz, .svg
5068 and .xpm. The result is a very slow KDE menu when /usr/ is NFS
5069 mounted. Showing a single sub menu may result in thousands of NFS
5070 requests. I am not the first one to discover this. I found a
5071 &lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=211416&quot;&gt;KDE bug report
5072 from 2009&lt;/a&gt; about this problem, and it is still unsolved.&lt;/p&gt;
5073
5074 &lt;p&gt;My solution to speed up the KDE menu was to create a package
5075 kde-icon-cache that upon installation will look at all .desktop files
5076 used to generate the KDE menu, find their icons, search the icon paths
5077 for the file that KDE will end up finding at run time, and copying the
5078 icon file to /var/lib/kde-icon-cache/. Finally, I add symlinks to
5079 these icon files in one of the first directories where KDE will look
5080 for them. This cut down the number of file accesses required to find
5081 one icon from several hundred to less than 5, and make the KDE menu
5082 almost instantaneous. I&#39;m not quite sure where to make the package
5083 publicly available, so for now it is only available on request.&lt;/p&gt;
5084
5085 &lt;p&gt;The bug report mention that this do not only affect the KDE menu
5086 and icon handling, but also the login process. Not quite sure how to
5087 speed up that part without replacing NFS with for example NBD, and
5088 that is not really an option at the moment.&lt;/p&gt;
5089
5090 &lt;p&gt;If you got feedback on this issue, please let us know on debian-edu
5091 (at) lists.debian.org.&lt;/p&gt;
5092 </description>
5093 </item>
5094
5095 <item>
5096 <title>Debian Edu in the Linux Weekly News</title>
5097 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</link>
5098 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</guid>
5099 <pubDate>Thu, 5 Apr 2012 08:00:00 +0200</pubDate>
5100 <description>&lt;p&gt;About two weeks ago, I was interviewed via email about
5101 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt; by
5102 Bruce Byfield in Linux Weekly News. The result was made public for
5103 non-subscribers today. I am pleased to see liked our Linux solution
5104 for schools. Check out his article
5105 &lt;a href=&quot;https://lwn.net/Articles/488805/&quot;&gt;Debian Edu/Skolelinux: A
5106 distribution for education&lt;/a&gt; if you want to learn more.&lt;/p&gt;
5107 </description>
5108 </item>
5109
5110 <item>
5111 <title>Debian Edu interview: Wolfgang Schweer</title>
5112 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</link>
5113 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</guid>
5114 <pubDate>Sun, 1 Apr 2012 23:00:00 +0200</pubDate>
5115 <description>&lt;p&gt;Germany is a core area for the
5116 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
5117 user community, and this time I managed to get hold of Wolfgang
5118 Schweer, a valuable contributor to the project from Germany.
5119
5120 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5121
5122 &lt;p&gt;I&#39;ve studied Mathematics at the university &#39;Ruhr-Universität&#39; in
5123 Bochum, Germany. Since 1981 I&#39;m working as a teacher at the school
5124 &quot;&lt;a href=&quot;http://www.westfalenkolleg-dortmund.de/&quot;&gt;Westfalen-Kolleg
5125 Dortmund&lt;/a&gt;&quot;, a second chance school. Here, young adults is given
5126 the opportunity to get further education in order to do the school
5127 examination &#39;Abitur&#39;, which will allow to study at a university. This
5128 second chance is of value for those who want a better job perspective
5129 or failed to get a higher school examination being teens.&lt;/p&gt;
5130
5131 &lt;p&gt;Besides teaching I was involved in developing online courses for a
5132 blended learning project called &#39;abitur-online.nrw&#39; and in some other
5133 information technology related projects. For about ten years I&#39;ve been
5134 teacher and coordinator for the &#39;abitur-online&#39; project at my
5135 school. Being now in my early sixties, I&#39;ve decided to leave school at
5136 the end of April this year.&lt;/p&gt;
5137
5138 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5139 project?&lt;/strong&gt;&lt;/p&gt;
5140
5141 &lt;p&gt;The first information about Skolelinux must have come to my
5142 attention years ago and somehow related to LTSP (Linux Terminal Server
5143 Project). At school, we had set up a network at the beginning of 1997
5144 using Suse Linux on the desktop, replacing a Novell network. Since
5145 2002, we used old machines from the city council of Dortmund as thin
5146 clients (LTSP, later Ubuntu/Lessdisks) cause new hardware was out of
5147 reach. At home I&#39;m using Debian since years and - subscribed to the
5148 Debian news letter - heard from time to time about Skolelinux. About
5149 two years ago I proposed to replace the (somehow undocumented and only
5150 known to me) system at school by a well known Debian based system:
5151 Skolelinux.&lt;/p&gt;
5152
5153 &lt;p&gt;Students and teachers appreciated the new system because of a
5154 better look and feel and an enhanced access to local media on thin
5155 clients. The possibility to alter and/or reset passwords using a GUI
5156 was welcomed, too. Being able to do administrative tasks using a GUI
5157 and to easily set up workstations using PXE was of very high value for
5158 the admin teachers.&lt;/p&gt;
5159
5160 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5161 Edu?&lt;/strong&gt;&lt;/p&gt;
5162
5163 &lt;p&gt;It&#39;s open source, easy to set up, stable and flexible due to it&#39;s
5164 Debian base. It integrates LTSP out-of-the-box. And it is documented!
5165 So it was a perfect choice.&lt;/p&gt;
5166
5167 &lt;p&gt;Being open source, there are no license problems and so it&#39;s
5168 possible to point teachers and students to programs like
5169 OpenOffice.org, ViewYourMind (mind mapping) and The Gimp. It&#39;s of
5170 high value to be able to adapt parts of the system to special needs of
5171 a school and to choose where to get support for this.&lt;/p&gt;
5172
5173 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5174 Edu?&lt;/strong&gt;&lt;/p&gt;
5175
5176 &lt;p&gt;Nothing yet.&lt;/p&gt;
5177
5178 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5179
5180 &lt;p&gt;At home (Debian Sid with Gnome Desktop): Iceweasel, LibreOffice,
5181 Mutt, Gedit, Document Viewer, Midnight Commander, flpsed (PDF
5182 Annotator). At school (Skolelinux Lenny): Iceweasel, Gedit,
5183 LibreOffice.&lt;/p&gt;
5184
5185 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5186 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5187
5188 &lt;p&gt;Some time ago I thought it was enough to tell people about it. But
5189 that doesn&#39;t seem to work quite well. Now I concentrate on those more
5190 interested and hope to get multiplicators that way.&lt;/p&gt;
5191 </description>
5192 </item>
5193
5194 <item>
5195 <title>Linux-skoler har høyere PC-tetthet enn landsgjennomsnittet - pressemelding fra FRiSK</title>
5196 <link>http://people.skolelinux.org/pere/blog/Linux_skoler_har_h_yere_PC_tetthet_enn_landsgjennomsnittet___pressemelding_fra_FRiSK.html</link>
5197 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Linux_skoler_har_h_yere_PC_tetthet_enn_landsgjennomsnittet___pressemelding_fra_FRiSK.html</guid>
5198 <pubDate>Fri, 30 Mar 2012 19:30:00 +0200</pubDate>
5199 <description>&lt;p&gt;I dag har &lt;a href=&quot;http://www.friprogramvareiskolen.no&quot;&gt;FRiSK&lt;/a&gt;
5200 sendt ut følgende pressemelding basert på mine beregninger av
5201 PC-tetthet på Linux-skoler:&lt;/p&gt;
5202
5203 &lt;p&gt;&lt;strong&gt;Linux-skoler har høyere PC-tetthet enn
5204 landsgjennomsnittet&lt;/strong&gt;&lt;/p&gt;
5205
5206 &lt;p&gt;Oslo, 30 Mars 2012&lt;/p&gt;
5207
5208 &lt;p&gt;Det er store forskjeller på skolenes digitale tilstand, viser
5209 undersøkelsen Monitor 2011 som er laget på oppdrag fra
5210 Kunnskapsdepartementet. Dette har ført til debatt om PC-tilgangen i
5211 skolen, og om de med Linux i skolen gjør det bedre bedre eller
5212 dårligere enn snittet i landet.&lt;/p&gt;
5213
5214 &lt;p&gt;Nå har vi tallene. Skoler med Linux har 36% større PC-tetthet en
5215 landsgjennomsnittet. På spørsmål hvorfor skoler med Linux har større
5216 PC-tetthet, observerer Paul Reidar Løsnesløkken som er IKT-konsulent i
5217 Nord-Odal:&lt;/p&gt;
5218
5219 &lt;p&gt;&lt;blockquote&gt;&quot;Vi erfarer at klienter med Skolelinux har god funksjon
5220 til de er 8 til 10 år gamle. Dette er omtrent dobbelt så lenge som
5221 andre løsninger, og skolene får mer datautstyr for
5222 pengene.&quot;&lt;/blockquote&gt;&lt;/p&gt;
5223
5224 &lt;p&gt;Undersøkelsen baserer seg på 56 skoler som har gjort det offentlig
5225 at de kjører Skolelinux eller annen Linux-utgave. De kan også ha PC-er
5226 med Windows i skolenettet. Når en sammenligner PC-tetthetene på
5227 skolene i kommunene Flora, Harstad, Kongsvinger, Narvik, Nittedal,
5228 Nord-Odal og Randaberg, er det i snitt 2,28 elev pr. PC på skolene med
5229 Linux. På landsbasis er det 3.11 elev per PC i grunnskolen, i følge
5230 side 95 i Monitor-rapporten for 2011. Målingen viser dermed 36% større
5231 PC-tetthet i skoler med Linux.&lt;/p&gt;
5232
5233 &lt;p&gt;&lt;strong&gt;Om Skolelinux/Debian Edu&lt;/strong&gt;&lt;/p&gt;
5234
5235 &lt;p&gt;Skolelinux har til hensikt å gi alle barn full tilgang til
5236 skoleaktuelle dataprogram på sitt eget morsmål. Derfor følger det med
5237 godt over 100 skoleaktuelle programmene laget for læring. De fleste
5238 programmene er oversatt til over 50 språk. Elevene skal også kunne
5239 studere alle sider av dataprogrammene. Derfor følger også kildekode
5240 med. Elever med interesse kan lære av eksperter som har laget
5241 systemet. Dette med enkelt programmering i læreprogram som KTurtle,
5242 til profesjonelle verktøy som Qt Creator eller Java.&lt;/p&gt;
5243
5244 &lt;p&gt;Skolelinux er laget for sentralisert drift, der alt teknisk
5245 administrasjon av alle skolene kan gjøres sentralt fra kommunehuset
5246 eller sentralt i en region. F.eks. drifter to-tre personer 70.000
5247 skoledatamaskiner på 200 skoler i delstaten Extremadura i
5248 Spania. Etter velykket bruk av Debian Edu i skolen, legger delstaten
5249 over til Debian på 40.000 datamaskiner i administrasjonen. Det er idag
5250 mange selskap som tilbyr profesjonell støtte til innføring og drift i
5251 Norge og verden.&lt;/p&gt;
5252
5253 &lt;p&gt;&lt;strong&gt;Om FRiSK&lt;/strong&gt;&lt;/p&gt;
5254
5255 &lt;p&gt;Medlemsforeningen Fri Programvare i Skolen organiserer
5256 dugnadsprosjektet som står bak Skolelinux.&lt;/p&gt;
5257
5258 &lt;p&gt;&lt;strong&gt;Kontaktperson&lt;/strong&gt;&lt;/p&gt;
5259
5260 &lt;p&gt;Knut Yrvin&lt;/p&gt;
5261
5262 &lt;p&gt;Leder av Fri Programvare i Skolen (FRISK)&lt;/p&gt;
5263
5264 &lt;p&gt;Epost: knuty at skolelinux.no
5265 &lt;br&gt;Mobil: +47 93 479 561&lt;/p&gt;
5266
5267 &lt;p&gt;&lt;strong&gt;Referanser&lt;/strong&gt;&lt;/p&gt;
5268
5269 &lt;p&gt;&lt;ul&gt;
5270
5271 &lt;li&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;http://www.skolelinux.org/&lt;/a&gt;&lt;/li&gt;
5272 &lt;li&gt;&lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;http://www.friprogramvareiskolen.no/&lt;/a&gt;&lt;/li&gt;
5273 &lt;li&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/Download&quot;&gt;http://wiki.debian.org/DebianEdu/Download&lt;/a&gt;&lt;/li&gt;
5274 &lt;li&gt;&lt;a href=&quot;https://www.wis.no/gsi&quot;&gt;https://www.wis.no/gsi&lt;/a&gt;&lt;/li&gt;
5275 &lt;li&gt;&lt;a href=&quot;http://iktsenteret.no/sites/iktsenteret.no/files/attachments/monitor2011.pdf&quot;&gt;http://iktsenteret.no/sites/iktsenteret.no/files/attachments/monitor2011.pdf&lt;/a&gt;&lt;/li&gt;
5276 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/St_rre_PC_tetthet_i_skolen_med_Skolelinux_.html&quot;&gt;http://people.skolelinux.org/pere/blog/St_rre_PC_tetthet_i_skolen_med_Skolelinux_.html&lt;/a&gt;&lt;/li&gt;
5277 &lt;li&gt;&lt;a href=&quot;https://init.linpro.no/pipermail/skolelinux.no/linuxiskolen/2012-March/018500.html&quot;&gt;https://init.linpro.no/pipermail/skolelinux.no/linuxiskolen/2012-March/018500.html&lt;/a&gt;&lt;/li&gt;
5278
5279 &lt;/ul&gt;&lt;/p&gt;
5280 </description>
5281 </item>
5282
5283 <item>
5284 <title>Skolelinux-intervju: Roy-Arne Myhre</title>
5285 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Roy_Arne_Myhre.html</link>
5286 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Roy_Arne_Myhre.html</guid>
5287 <pubDate>Wed, 28 Mar 2012 15:15:00 +0200</pubDate>
5288 <description>&lt;p&gt;I serien med intervjuer av folk i
5289 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet, får vi
5290 denne gangen høre fra en IKT-ansvarlig som har brukt Skolelinux i
5291 mange år, og vært storfornøyd med erfaringene så langt.&lt;/p&gt;
5292
5293 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
5294
5295 &lt;p&gt;Mitt navn er Roy-Arne Myhre og jeg er 42 år. Jeg er ansatt hos
5296 &lt;a href=&quot;http://www.sandskole.no/&quot;&gt;Sand skole&lt;/a&gt; (Balsfjord kommune)
5297 og har stort sett vært det siden 1990. Jeg er IKT ansvarlig ved
5298 skolen i 40% stilling – 10% undervisning – musikk.&lt;/p&gt;
5299
5300 &lt;p&gt;Ved skolen er det ca 100 elever og ca 18 lærere + 4 assistenter i
5301 hele og delte stillinger. Alle lærerne har bærbar PC (dessverre med
5302 Win Vista) – assistenter har tilgang til egne. Vi benytter Fronter i
5303 det daglige arbeidet. Vi har ca 90 elevmaskiner som fungerer til
5304 daglig opp mot Linux server (XFCE) som driftes av
5305 &lt;a href=&quot;http://www.bzz.no/&quot;&gt;BzzWare AS&lt;/a&gt; via nett. Maskinparken
5306 består kun av brukt utstyr for elevene – og noe av dette begynner å
5307 bli vel gammelt selv som halvtykke klienter.&lt;/p&gt;
5308
5309 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med
5310 Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
5311
5312 &lt;p&gt;Vi kom første gang i kontakt med Skolelinux rundt 1997. Den gang
5313 var det oppstart-disketter i hver maskin, ikke mulighet for lyd og
5314 video, gamle nettverkskort og mye plundring. Vi hadde en ihuga
5315 forelder med som pådriver, forsker og inspirator for hele opplegget.
5316 Selv ante jeg knapt at Skolelinux fantes, men han var av den
5317 utforskende typen, og fikk både meg og skolelederen i trua på at dette
5318 var ting som kunne fungere. Etter dette har det gått gradvis
5319 framover; flere maskiner er hentet inn gjennom bl.a
5320 &lt;a href=&quot;http://www.greentech.no/&quot;&gt;Greentech&lt;/a&gt; og utrangert utstyr
5321 fra høgskole / Avinor og private givere. Når maskinene ble for trege
5322 for nye Windows-versjoner, sto vi klare til å putte dem i nettverket
5323 vårt. Dette betyr at vi i dag har 1:1 dekning av maskiner på
5324 ungdomstrinnet og bedre enn 1:2 på barnetrinnet. Dette er vi veldig
5325 fornøyd med, og vi kan ikke se for oss hverdagen som ville vært
5326 alternativet ved bruk av Windows med sine lisenser pr. Bruker/maskin.
5327 Da ville vi nok vært tilbake til 1-2 maskiner pr klasserom med de
5328 negative konsekvenser det ville hatt for undervisningsformene våre. Vi
5329 kan ha en hel klasse i prosjektjobbing eller individuell jobbing
5330 samtidig – vi kan avholde tentamen og eksamen uten
5331 logistikkproblemer.&lt;/p&gt;
5332
5333 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
5334
5335 Hvor skal jeg begynne... Stabiliteten er et nøkkelord - det bare
5336 virker. Har du først fått en server med Skolelinux opp og gå, så må
5337 det en maskinarefeil eller sabotasje til for å stoppe den. Det at man
5338 kan bruke eldre maskiner som normalt sett ville gått på dynga, er også
5339 glimrende - billig for skoler med dårlig økonomi og bra for miljøet
5340 siden vi gjenbruker utstyr i stedet for å skaffe nytt. Vi ville aldri
5341 hatt mulighet til å operere med det maskinantallet vi har pr i dag
5342 hvis det ikke var for Skolelinux - så tilgjengelighet er et annet
5343 nøkkelord. Et tredje moment er sikkerhet og brukertilgang. Alle
5344 brukerer opererer med egne brukernavn og passord, samt egne
5345 brukerområder som kan tilpasses for både enbrukertilgang og for
5346 samarbeid med andre.
5347
5348 Elever har godt av å se at det finnes andre alternativer enn de som
5349 storindustrien selger på lisensbasis - på den måten trenes de opp til
5350 å se flere muligheter og å foreta valg ut fra flere opsjoner.
5351
5352 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
5353
5354 &lt;p&gt;Ulempene med Skolelinux er nok utbredelsen og mangelen på kjennskap
5355 til dette i skolenorge. De som skal ta økonomiske avgjørelser rynker
5356 på nesen og vil gå for det kjente og «sikre» selv om det koster mye
5357 mer. Man får rett og slett litt hetta av å ikke kunne noe – og unngår
5358 dette for enhver pris.&lt;/p&gt;
5359
5360 &lt;p&gt;I tillegg er mye av linux-systemet administrert av tekstkommandoer
5361 og er lite intuitiv/visuell for oss som ikke er «inne i»
5362 kildekodene». Så problemet er nok mye godt at de som
5363 utarbeider/drifter Skolelinux ikke helt klarer å sette seg ned på
5364 skoleadministratorens nivå når det gjelder problemer og
5365 utfordringer. Men dette er nok en utfordring alle administratorer
5366 sliter med uansett OS.&lt;/p&gt;
5367
5368 &lt;p&gt;Derfor har vi valgt å støtte oss til BzzWare AS for assistanse i
5369 drifta slik at jeg har kunnet konsentrere meg mer om kabling, skifting
5370 av komponenter, veiledning av lærere og elever, vedlikehold av
5371 skrivere og annen daglig drift.&lt;/p&gt;
5372
5373 &lt;p&gt;Elevene mestrer Skolelinux helt fint. Så lenge Internett
5374 (Iceweasel) og Libreoffice (Openoffice) fungerer er 90% av
5375 skolehverdagen velfungerende. I tillegg brukes jo en del av den
5376 pedagogiske programpakken bla. i forhold til matematikk og geografi,
5377 men det er såpass mye bra på nett om dagen, så disse programmene er
5378 mer som krydder å regne.&lt;/p&gt;
5379
5380 &lt;p&gt;Jeg skulle ønske neste versjon av Skolelinux kunne komme litt
5381 mindre stappet med programmer, for halvparten blir aldri brukt, eller
5382 fungerer ikke uansett. Hva med et pedagogisk panel av lærere/IKT
5383 ansvarlige som kunne sagt: disse programmene skal være standard, så
5384 får resten være slike man kan legge til ved behov – det kan lett bli
5385 en jungel å bevege seg i.&lt;/p&gt;
5386
5387 &lt;p&gt;Jeg ønsker meg også en mer grafisk versjon av
5388 &lt;a href=&quot;http://bzz.no/lwat/trac/trac.cgi&quot;&gt;Lwat&lt;/a&gt; hvor man kan krysse
5389 ut de som f.eks ikke skal ha internett-tilgang en dag pga
5390 eksamen/tentamen, samt en noe enklere brannmurløsning hvor man kan
5391 stenge for en del (få) sider på en enkel måte. Jeg liker godt
5392 Skolelinux sin ideologi om at filteret skal trenes i hodet på eleven –
5393 men av og til skulle jeg ønske at f.eks Facebook og Youtube kunne vært
5394 koblet vekk en periode for å få bedre utnyttelse av tid og
5395 ressurser. Disse to nettstedene er nok mye av årsaken til at mange
5396 lærere holder igjen databruken noe mer enn man kunne ønske.&lt;/p&gt;
5397
5398 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
5399
5400 Jeg benytter nesten bare fri programvare til daglig. LibreOffice,
5401 Iceweasel (Firefox), Thunderbird til e-post og Gimp til
5402 bildebehandling. Vi har PHP-Nuke-oppsatt hjemmeside. Det eneste som
5403 jeg ikke har fått helt til enda er videoredigering - her må man vel
5404 innrømme at Mac er hakket over, men da er vi igjen over på å se hva
5405 som egner seg best, og ta valg ut fra det. Folk flest lever i
5406 villfarelsen om at regneark HETER Excel og tekstbehandling HETER
5407 Word. Dette er en misforståelse som jeg bruker mye energi på å
5408 diskutere og &quot;åpne sinn&quot; på Microsoft-slaver. Dessverre er det mange
5409 IKT-ansvarlige som også har låst seg på at det eneste saliggjørende er
5410 Bill G sine produkter.
5411
5412 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
5413 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
5414
5415 &lt;p&gt;For å komme lenger i utbredelsen av Skolelinux tror jeg det må mer
5416 fram i nasjonale medier, samt komme bedre fram hva økonomien i dette
5417 valget vil være – samt mulighetene. Fri programvare er en berikelse og
5418 gjør oss i stand til å utføre arbeidet i skolen uten å måtte legge
5419 igjen tusener på tusener i Bill Gates lomme.. Få ETT nettsted med
5420 forståelig veiledning av installasjon/oppgradering og ETT forum med
5421 konkrete feilrettinger og problemer, så tror jeg vi kunne kommet et
5422 par skritt framover. Ellers tror jeg bare at ildsjelene må fortsette å
5423 skinne – kanskje flere enn oss følger etter på veien.&lt;/p&gt;
5424 </description>
5425 </item>
5426
5427 <item>
5428 <title>Debian Edu screencast: Checking email with kmail using Kerberos authentication</title>
5429 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</link>
5430 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</guid>
5431 <pubDate>Sun, 25 Mar 2012 10:00:00 +0200</pubDate>
5432 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
5433
5434 &lt;p&gt;The same Debian Edu developer that did the last screen cast I
5435 published, Wolfgang Schweer, has created a new screen cast showing how
5436 to set up Kmail in Debian Edu Squeze to authenticate using Kerberos,
5437 allowing users to check their local email account without providing
5438 any password. The video is embedded here in quarter size,
5439 and also available from &lt;a href=&quot;https://vimeo.com/38601767&quot;&gt;vimeo&lt;/a&gt;
5440 and download as a
5441 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot;&gt;Ogg
5442 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
5443
5444 &lt;p&gt;&lt;video id=&quot;kmail-kerberos-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
5445 &lt;source src=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot; type=&#39;video/ogg; codecs=&quot;theora, vorbis&quot;&#39; /&gt;
5446 &lt;p&gt;Download video as
5447 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot;&gt;Ogg&lt;/a&gt;.&lt;/p&gt;
5448 &lt;/video&gt;&lt;/p&gt;
5449 </description>
5450 </item>
5451
5452 <item>
5453 <title>Større PC-tetthet i skolen med Skolelinux?</title>
5454 <link>http://people.skolelinux.org/pere/blog/St_rre_PC_tetthet_i_skolen_med_Skolelinux_.html</link>
5455 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/St_rre_PC_tetthet_i_skolen_med_Skolelinux_.html</guid>
5456 <pubDate>Mon, 19 Mar 2012 23:25:00 +0100</pubDate>
5457 <description>&lt;p&gt;Den siste uka har det vært en del skriverier om hvor store
5458 forskjeller det er mellom skolene når det gjelder digital kompetanse.
5459 Et eksempel er
5460 &lt;a href=&quot;http://www.digi.no/891660/bekymret-for-it-i-skolen&quot;&gt;oppslaget
5461 i Digi&lt;/a&gt;. Diskusjonen fikk meg til å bli litt nysgjerrig på om
5462 Linux-skoler har større PC-tettet enn snittet i landet. Grunnlaget
5463 for diskusjonen har vært undersøkelsen
5464 &lt;a href=&quot;https://iktsenteret.no/ressurser/monitor-2011-skolens-digitale-tilstand&quot;&gt;Monitor
5465 2011&lt;/a&gt;, som bruker informasjon fra
5466 &lt;a href=&quot;https://www.wis.no/gsi&quot;&gt;Grunnskolens Informasjonssystem&lt;/a&gt;
5467 (GSI). GSI-data kan lastes ned fra web og jeg lastet ned en Excel-fil
5468 (intet åpen standard-valg tilgjengelig) med navn på alle skoler,
5469 hvilke kommune de befinner seg i og hvor mange elever pr. elev-PC de
5470 har rapportert inn. For å få en ide om svaret trenger jeg deretter å
5471 vite hvilke skoler i landet som bruker Linux, slik at jeg kan slå dem
5472 opp i GSI og finne ut hvor stor PC-tetthet de har.&lt;/p&gt;
5473
5474 &lt;p&gt;Jeg vet om skoler i Balsfjord, Flora, Harstad, Kongsvinger, Narvik,
5475 Nittedal, Nord-Odal, Randaberg og Sunndal som bruker Skolelinux eller
5476 andre Linux-varianter. Jeg tror det er flere enn de 56 skolene jeg
5477 har klart å identifisere de siste dagene, men har ikke klart å få det
5478 bekreftet med offentlige kilder.&lt;/p&gt;
5479
5480 &lt;p&gt;Monitor 2011-rapporteres side 95 forteller at det &quot;ifølge GSI
5481 (20120-2011) er det 3,11 elever per datamaskin når vi tar med alle
5482 grunnskoler (1.-10.trinn)&quot;. For de 56 Linux-skolene jeg har klart å
5483 koble mot informasjon i GSI er det 2,28 elever per elevdatamaskin,
5484 hvilket betyr at det er 36% høyere PC-tetthet på Linux-skoler enn
5485 landsgjennomsnittet. Linux-skolen med høyest tettet blant de jeg har
5486 notert -skole er Flora ungdomsskule i Flora kommune med 0.82 elev
5487 pr. PC (482 elever, 588 elevdatamaskiner).&lt;/p&gt;
5488
5489 &lt;p&gt;Skolelinux gir datamaskiner lengre levetid, og en kan dermed få
5490 flere operative datamaskiner for samme budsjett, i tillegg til en
5491 rekke andre fordeler. Kan det være forklaringen på forskjellen?&lt;/p&gt;
5492
5493 &lt;p&gt;Tallene må tas med en liten klype, da GSI ser ut til å ha endel
5494 feilføringer. Jeg synes i hvert fall en skole med 423 elever og 9
5495 elevmaskiner ser mistenkelig ut. Eller en skole med 346 elever, 0
5496 elevmaskiner, som er et annet ekstremt eksempel jeg fant.&lt;/p&gt;
5497
5498 &lt;p&gt;Takk til Sturle Sunde, Klaus Ade Johnstad, Ole-Anders Andreassen og
5499 Trond Mæhlum for innspill om skoler med Linux.&lt;/p&gt;
5500 </description>
5501 </item>
5502
5503 <item>
5504 <title>Debian Edu interview: John Ingleby</title>
5505 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</link>
5506 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</guid>
5507 <pubDate>Mon, 19 Mar 2012 21:15:00 +0100</pubDate>
5508 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
5509 users are spread all across the globe. The second inteview after
5510 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
5511 Squeeze release&lt;/a&gt; was publised is with John Ingleby, a teacher and
5512 long time Linux user in United Kingdom.&lt;/p&gt;
5513
5514 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5515
5516 &lt;p&gt;I teach ICT part time at the Rudolf Steiner School in Kings
5517 Langley, near London, UK. Previously I worked as a technical
5518 author/trainer while my children attended the school, and I also
5519 contributed to the Schoolforge UK community with the aim of
5520 encouraging UK schools to adopt free/open source software. Five or six
5521 years ago we had about 50 schools interested in some way, but we
5522 weren&#39;t able to convert many of them into sustainable
5523 installations.&lt;/p&gt;
5524
5525 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5526 project?&lt;/strong&gt;&lt;/p&gt;
5527
5528 &lt;p&gt;Skolelinux had two representatives at an early Edubuntu meeting in
5529 London which I attended. However at that time our school network had
5530 just been installed using CentOS, LTSP 4 and GNOME. When LTSP 5 came
5531 along we switched to Edubuntu thin client servers so now we have a
5532 mixed environment which includes Windows PCs and student laptops, as
5533 well as their MacBooks and iPads. However, the proprietary systems
5534 have always been rather problematic, and we never built a GUI for the
5535 LDAP server, so when I discovered Skolelinux is configured for all
5536 these things we decided to try it.&lt;/p&gt;
5537
5538 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5539 Edu?&lt;/strong&gt;&lt;/p&gt;
5540
5541 &lt;p&gt;By far the biggest advantage is the Debian Edu community. Apart
5542 from that I have always believed in the same &quot;sustainable computing&quot;
5543 goals that Skolelinux is built on: installing Linux on computers which
5544 would otherwise be thrown away, to provide a reliable, secure and
5545 low-cost IT environment for schools. From my own experience I know
5546 that a part-time person can teach and manage a network of about 25
5547 Linux computers, but it would take much more of my time if we had
5548 proprietary software everywhere.&lt;/p&gt;
5549
5550 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5551 Edu?&lt;/strong&gt;&lt;/p&gt;
5552
5553 &lt;p&gt;As a newcomer I&#39;m just finding out who&#39;s who in the community and
5554 how you&#39;re organised, and what your procedures are for dealing with
5555 various things such as editing manual pages and so-on. The only
5556 English language mailing list seems to be for developers as well as
5557 users, so my inbox needs heavy pruning each day!&lt;/p&gt;
5558
5559 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5560
5561 &lt;p&gt;Besides the software already mentioned at school we use Samba,
5562 OpenLDAP, CUPS, Nagios and Dansguardian for the network, and on the
5563 desktops we have LibreOffice, Firefox, GIMP and Inkscape. At home I
5564 use Ubuntu and an Android 4 eePad Transformer (but I&#39;m not sure if
5565 that counts...)&lt;/p&gt;
5566
5567 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5568 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5569
5570 &lt;p&gt;That&#39;s a tough question! For very many years UK schools installed
5571 and taught only proprietary software, so that at the highest levels
5572 the notion of &quot;computer&quot; means simply &quot;proprietary office
5573 applications&quot;. However, schools today are experiencing budget
5574 constraints, and many are having to think hard about upgrading Windows
5575 XP. At the same time, we have students showing teachers how to use
5576 iPads, MacBooks and Android, so the choice of operating system is no
5577 longer quite so automatic. What is more, our government at last
5578 realised that we need people with programming skills, so they&#39;re
5579 putting coding back in the curriculum! And it&#39;s encouraging that the
5580 first 10,000 Raspberry Pi units sold out in 2 hours.&lt;/p&gt;
5581
5582 &lt;p&gt;I don&#39;t really know what strategy is going to get UK schools to use
5583 free software, but building an active community of Skolelinux/Debian
5584 Edu users in this country has to be part of it.&lt;/p&gt;
5585 </description>
5586 </item>
5587
5588 <item>
5589 <title>Writing and translating documentation in Debian Edu</title>
5590 <link>http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</link>
5591 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</guid>
5592 <pubDate>Fri, 16 Mar 2012 09:55:00 +0100</pubDate>
5593 <description>&lt;p&gt;Documentation in Debian Edu is provided in several languages, and
5594 it is important to make it both easy to contribute and to keep the
5595 translated versions in sync. To do this we have come up with what we
5596 believe is a very efficient work flow.&lt;/p&gt;
5597
5598 &lt;ol&gt;
5599
5600 &lt;li&gt;The documentation is written in a
5601 &lt;a href=&quot;http://moinmo.in&quot;&gt;moinmoin wiki&lt;/a&gt; (see for example
5602 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;the
5603 Squeeze release manual&lt;/a&gt;) with support for exporting the content as
5604 docbook XML.&lt;/li&gt;
5605
5606 &lt;li&gt;This docbook document is given to po4a to extract a gettext style
5607 .pot file with the content, which in turn is used to create .po files
5608 with the translated text.&lt;/li&gt;
5609
5610 &lt;li&gt;The .po files are given to translators, and they can always tell
5611 which part of the original wiki document is new or changed. They can
5612 use their normal translation tools like lokalize or poedit to write
5613 the translation. There is even a system in place to handle translated
5614 images.&lt;/li&gt;
5615
5616 &lt;li&gt;The translated .po files are combined with the original docbook
5617 XML document using po4a to create a translated docbook document.&lt;/li&gt;
5618
5619 &lt;li&gt;The final step is to use all the generated docbook files and
5620 create PDF and HTML version of the original and translated documents.&lt;/li&gt;
5621
5622 &lt;/ol&gt;
5623
5624 &lt;p&gt;This setup work very well, but have a few issues. The biggest
5625 issue is that &lt;a href=&quot;http://moinmo.in/DocBook&quot;&gt;the docbook support
5626 we use in moinmoin&lt;/a&gt; is not actively maintained. The docbook
5627 support is also buggy, and our build system contain workarounds to
5628 make sure the generated docbook is usable despite these bugs.&lt;/p&gt;
5629
5630 &lt;p&gt;If you want to have a look at our setup, it is all there in the
5631 &lt;a href=&quot;http://packages.qa.debian.org/debian-edu-doc&quot;&gt;debian-edu-doc
5632 package&lt;/a&gt;.&lt;/p&gt;
5633 </description>
5634 </item>
5635
5636 <item>
5637 <title>NUUG-presentasjon: Skolelinux - ferdig oppsatt skolenettløsning</title>
5638 <link>http://people.skolelinux.org/pere/blog/NUUG_presentasjon__Skolelinux___ferdig_oppsatt_skolenettl_sning.html</link>
5639 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/NUUG_presentasjon__Skolelinux___ferdig_oppsatt_skolenettl_sning.html</guid>
5640 <pubDate>Tue, 13 Mar 2012 23:55:00 +0100</pubDate>
5641 <description>&lt;p&gt;I dag presenterte jeg ny versjon av Skolelinux for NUUGs medlemmer.
5642 &lt;a href=&quot;http://www.hungry.com/~pere/mypapers/20120313-skolelinux-squeeze.html&quot;&gt;Lysark&lt;/a&gt;
5643 er tilgjengelige allerede og
5644 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20120313-skolelinux/&quot;&gt;video-opptak&lt;/a&gt;
5645 kommer så snart videogruppa til NUUG får publisert den. Jeg kom på
5646 endel punkter om nye ting i Squeeze-utgaven under veis som jeg burde
5647 hatt med, og har sikkert skrevet noe tull på lysarkene som jeg ennå
5648 ikke har oppdaget. Denne presentasjonen ble smurt ihop på veldig kort
5649 tid, og jeg rakk ikke finpusse den. Håper den kan være lærerik
5650 likevel.&lt;/p&gt;
5651 </description>
5652 </item>
5653
5654 <item>
5655 <title>Skolelinux-intervju: Kåre Nordby</title>
5656 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__K_re_Nordby.html</link>
5657 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__K_re_Nordby.html</guid>
5658 <pubDate>Mon, 12 Mar 2012 21:10:00 +0100</pubDate>
5659 <description>&lt;p&gt;Første ut i serien med intervjuer av folk i
5660 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet etter at
5661 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;ny
5662 versjon av Skolelinux&lt;/a&gt; ble lansert i helga, er nylig valgte
5663 styremedlem i foreningen
5664 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;Fri programvare i
5665 Skolen&lt;/a&gt; (FRiSK) som organiserer
5666 Skolelinux-utviklingen og daglig leder i
5667 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt;, selskapet
5668 prosjektet opprettet som et tilbud til skoler som ønsket en
5669 kommersiell samarbeidsparter. Det bør nevnes at jeg er styremedlem i
5670 Skolelinux Drift AS og styreleder i selskapets hovedeier stiftelsen
5671 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/&quot;&gt;SLX Debian Labs&lt;/a&gt;
5672 som beskytter verdiene til Skolelinux-prosjektet, og kjenner Kåre den
5673 veien.&lt;/p&gt;
5674
5675 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
5676
5677 &lt;p&gt;Jeg har siden januar 2010 vært daglig leder i Skolelinux Drift AS,
5678 som leverer support, installasjon, tilpasning, drift, og opplæring på
5679 Debian Edu / Skolelinux. Fra 2012 er jeg valgt inn som styremedlem i
5680 FRiSK. Min forrige jobb var som KAM i Redpill Linpro (som er en av
5681 eierne i Skolelinux Drift). Før det var jeg daglig leder i et eget 7
5682 manns konsulent selskap som også startet med fri programvare mot
5683 slutten.&lt;/p&gt;
5684
5685 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
5686
5687 &lt;p&gt;Jeg hørte om det først når jeg jobbet i Redpill Linpro. Men jeg
5688 har også en datter som går på en friskole, som også bruker Skolelinux.
5689 Som kjent har ikke friskoler de samme økonomiske rammebetingelsene som
5690 offentlige skoler, så for dem var det det absolutt beste alternativet.
5691 De anser også Skolelinux som et stabilt system, som bare går og går (i
5692 motsetning til det lille Windows-baserte nettverket de har på
5693 admin-siden).&lt;/p&gt;
5694
5695 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
5696
5697 &lt;p&gt;Sentralisert drift av tynne og diskløse arbeidsstasjoner. Således
5698 lydløse og raskere arbeidsstasjoner som er bedre i klasserommet.
5699 Lengre levetid på PC&#39;er. Store besparelser på maskinvare og drift. Og
5700 så klart fjerning av alle lisenskostnader. Personlig synes jeg også at
5701 mange av programmene er bedre enn alternativene. Men dette er ofte en
5702 smakssak og avhengig om man må ha det man er vant til fra før.&lt;/p&gt;
5703
5704 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
5705
5706 &lt;p&gt;For lite kjentskap til løsningen. Noen ganger for dårlig
5707 kompatibilitet med arbeidsstasjoners/bærbare maskiner sine
5708 nettverksdrivere eller skjermkort. Men dette løser vi i skolene ved
5709 standardisering. Ellers er det få, om nesten ingen, av de kjente
5710 maskinvare / infrastruktur leverandørene til fylkes- / kommuner som
5711 tilbyr denne plattformen. Skal dette endre seg så må kommunene selv
5712 sette slike krav til leverandørene.&lt;/p&gt;
5713
5714 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
5715
5716 &lt;p&gt;Har brukt OpenOffice.org siden starten (2001 ?), Kun Linux på
5717 desktop siden 2005. Bruker i dag Kubuntu, Libreoffice og ymse annet
5718 programvare til ulik kontorbruk som er lett å installere / teste via
5719 alle programarkivene som finnes.&lt;/p&gt;
5720
5721 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
5722 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
5723
5724 &lt;p&gt;Fortsette å presentere flere av de gode eksemplene hvor Debian Edu
5725 / Skolelinux brukes i kommuner og enkeltskoler. Vi må få bedre frem
5726 at det er mulig tilknytte både Windows og Mac klienter på denne
5727 plattformen (selv om det vil øke driftskostnadene). Dette gjøres
5728 mange steder. Spesielt er det mange lærere som ønsker å bruke
5729 Windows/Mac-bærbare, gjerne som sin private PC også. Det er også mulig
5730 for kommunen å integrere med Active Directory i stedet for OpenLDAP
5731 som kommer med ut av boksen (selv om også dette øker kostnadene).
5732 Dette vil muligens bidra til å fjerne noe motstand hos noen
5733 potensielle brukere / driftpersonell for å ta i bruk noe
5734 nytt. Fremveksten av mobile brukere og nettbrett går i vår favør.
5735 Brukerne blir kjent og vant til flere nye operativsystemer /
5736 brukergrensesnitt. Så utviklerfellesskapet bør jobbe videre med å
5737 integrere flere nye klienttyper, som ultra lav-kostklienter og
5738 nettbrett (blant annet fri programvare-alternativet
5739 &lt;a href=&quot;http://makeplaylive.com/&quot;&gt;Spark&lt;/a&gt; med
5740 &lt;a href=&quot;http://www.merproject.org/&quot;&gt;Mer OS&lt;/a&gt; og
5741 &lt;a href=&quot;http://plasma-active.org/&quot;&gt;KDE Active Plasma&lt;/a&gt;).&lt;/p&gt;
5742 </description>
5743 </item>
5744
5745 <item>
5746 <title>Skolelinux / Debian Edu Squeeze is out!</title>
5747 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</link>
5748 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</guid>
5749 <pubDate>Sun, 11 Mar 2012 23:00:00 +0100</pubDate>
5750 <description>&lt;p&gt;This weekend we finally published the first stable release of
5751 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; based
5752 on Debian/Squeeze. The full announcement is
5753 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;available&lt;/a&gt;
5754 from the project announcement list. Now is a good time to test if it
5755 you have not done so already.&lt;/p&gt;
5756
5757 &lt;p&gt;I plan to present the new version at
5758 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20120313-skolelinux/&quot;&gt;a NUUG
5759 meeting&lt;/a&gt; on tuesday. I look forward to seeing you there if you are
5760 in Oslo, Norway.&lt;/p&gt;
5761 </description>
5762 </item>
5763
5764 <item>
5765 <title>Debian Edu interview: Nigel Barker</title>
5766 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</link>
5767 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</guid>
5768 <pubDate>Fri, 9 Mar 2012 11:30:00 +0100</pubDate>
5769 <description>&lt;p&gt;Inspired by &lt;a href=&quot;http://raphaelhertzog.com/tag/interview/&quot;&gt;the
5770 interview series&lt;/a&gt; conducted by Raphael, I started a Norwegian
5771 interview series with people involved in the Debian Edu / Skolelinux
5772 community. This was so popular that I believe it is time to move to a
5773 more international audience.&lt;/p&gt;
5774
5775 &lt;p&gt;While &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
5776 Skolelinux&lt;/a&gt; originated in France and Norway, and have most users in
5777 Europe, there are users all around the globe. One of those far away
5778 from me is Nigel Barker, a long time Debian Edu system administrator
5779 and contributor. It is thanks to him that Debian Edu is adjusted to
5780 work out of the box in Japan. I got him to answer a few questions,
5781 and am happy to share the response with you. :)
5782
5783
5784 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5785
5786 &lt;p&gt;My name is Nigel Barker, and I am British. I am married to Yumiko,
5787 and we have three lovely children, aged 15, 14 and 4(!) I am the IT
5788 Coordinator at Hiroshima International School, Japan. I am also a
5789 teacher, and in fact I spend most of my day teaching Mathematics,
5790 Science, IT, and Chemistry. I was originally a Chemistry teacher, but
5791 I have always had an interest in computers. Another teacher teaches
5792 primary school IT, but apart from that I am the only computer person,
5793 so that means I am the network manager, technician and webmaster,
5794 also, and I help people with their computer problems. I teach python
5795 to beginners in an after-school club. I am way too busy, so I really
5796 appreciate the simplicity of Skolelinux.&lt;/p&gt;
5797
5798 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5799 project?&lt;/strong&gt;&lt;/p&gt;
5800
5801 &lt;p&gt;In around 2004 or 5 I discovered the ltsp project, and set up a
5802 server in the IT lab. I wanted some way to connect it to our central
5803 samba server, which I was also quite poor at configuring. I discovered
5804 Edubuntu when it came out, but it didn&#39;t really improve my setup. I
5805 did various desperate searches for things like &quot;school Linux server&quot;
5806 and ended up in a document called &quot;Drift&quot; something or other. Reading
5807 there it became clear that Skolelinux was going to solve all my
5808 problems in one go. I was very excited, but apprehensive, because my
5809 previous attempts to install Debian had ended in failure (I used
5810 Mandrake for everything - ltsp, samba, apache, mail, ns...). I
5811 downloaded a beta version, had some problems, so subscribed to the
5812 Debian Edu list for help. I have remained subscribed ever since, and
5813 my school has run a Skolelinux network since Sarge.&lt;/p&gt;
5814
5815 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5816 Edu?&lt;/strong&gt;&lt;/p&gt;
5817
5818 &lt;p&gt;For me the integrated setup. This is not just the server, or the
5819 workstation, or the ltsp. Its all of them, and its all configured
5820 ready to go. I read somewhere in the early documentation that it is
5821 designed to be setup and managed by the Maths or Science teacher, who
5822 doesn&#39;t necessarily know much about computers, in a small Norwegian
5823 school. That describes me perfectly if you replace Norway with
5824 Japan.&lt;/p&gt;
5825
5826 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5827 Edu?&lt;/strong&gt;&lt;/p&gt;
5828
5829 &lt;p&gt;The desktop is fairly plain. If you compare it with Edubuntu, who
5830 have fun themes for children, or with distributions such as Mint, who
5831 make the desktop beautiful. They create a good impression on people
5832 who don&#39;t need to understand how to use any of it, but who might be
5833 important to the school. School administrators or directors, for
5834 instance, or parents. Even kids. Debian itself usually has ugly
5835 default theme settings. It was my dream a few years back that some
5836 kind of integration would allow Edubuntu to do the desktop stuff and
5837 Debian Edu the servers, but now I realise how impossible that is. A
5838 second disadvantage is that if something goes wrong, or you need to
5839 customise something, then suddenly the level of expertise required
5840 multiplies. For example, backup wasn&#39;t working properly in Lenny. It
5841 took me ages to learn how to set up my own server to do rsync backups.
5842 I am afraid of anything to do with ldap, but perhaps Gosa will
5843 help.&lt;/p&gt;
5844
5845 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5846
5847 &lt;p&gt;Nowadays I only use Debian on my personal computers. I have one for
5848 studio work (I play guitar and write songs), running AV Linux
5849 (customised Debian) a netbook running Squeeze, and a bigger laptop
5850 still running Skolelinux Lenny workstation. I have a Tjener in my
5851 house, that&#39;s very useful for the family photos and music. At school
5852 the students only use Skolelinux. (Some teachers and the office still
5853 have windows). So that means we only use free software all day every
5854 day. Open office, The GIMP, Firefox/Iceweasel, VLC and Audacity are
5855 installed on every computer in school, irrespective of OS. We also
5856 have Koha on Debian for the library, and Apache, Moodle, b2evolution
5857 and Etomite on Debian for the www. The firewall is Untangle.&lt;/p&gt;
5858
5859 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5860 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5861
5862 &lt;p&gt;Current trends are in our favour. Open source is big in industry,
5863 and ordinary people have heard of it. The spread of Android and the
5864 popularity of Apple have helped to weaken the impression that you have
5865 to have Microsoft on everything. People complain to me much less about
5866 file formats and Word than they did 5 years ago. The Edu aspect is
5867 also a selling point. This is all customised for schools. Where is the
5868 Windows-edu, or the Mac-edu? But of course the main attraction is
5869 budget.The trick is to convince people that the quality is not
5870 compromised when you stop paying and use free software instead. That
5871 is one reason why I say the desktop experience is a weakness. People
5872 are not impressed when their USB drive doesn&#39;t work, or their browser
5873 doesn&#39;t play flash, for example.&lt;/p&gt;
5874 </description>
5875 </item>
5876
5877 <item>
5878 <title>Debian Edu screencast: Mass creation of user accounts in Squeeze</title>
5879 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</link>
5880 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</guid>
5881 <pubDate>Wed, 7 Mar 2012 13:40:00 +0100</pubDate>
5882 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
5883
5884 &lt;p&gt;One of the Debian Edu developers, Wolfgang Schweer, just created a
5885 screen cast documenting how to create a lot of new users in LDAP on
5886 Debian Edu Squeeze. The video is embedded here in quarter size, and
5887 also available from &lt;a href=&quot;http://vimeo.com/37675399&quot;&gt;vimeo&lt;/a&gt; and
5888 download as a
5889 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg
5890 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
5891
5892 &lt;p&gt;&lt;video id=&quot;gosa-mass-user-create-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
5893 &lt;source src=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot; type=&#39;video/ogg; codecs=&quot;theora, vorbis&quot;&#39; /&gt;
5894 &lt;p&gt;Download video as
5895 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg&lt;/a&gt;.&lt;/p&gt;
5896 &lt;/video&gt;&lt;/p&gt;
5897 </description>
5898 </item>
5899
5900 <item>
5901 <title>Third release candidate of Debian Edu / Skolelinux based on Squeeze</title>
5902 <link>http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
5903 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
5904 <pubDate>Sun, 4 Mar 2012 18:20:00 +0100</pubDate>
5905 <description>&lt;p&gt;This weekend we wrapped up and published the third release
5906 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
5907 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement is
5908 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00000.html&quot;&gt;available&lt;/a&gt;
5909 from the project announcement list. Check it out if you
5910 need a software solution for your school.&lt;/p&gt;
5911 </description>
5912 </item>
5913
5914 <item>
5915 <title>Stopmotion for making stop motion animations on Linux - reloaded</title>
5916 <link>http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</link>
5917 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</guid>
5918 <pubDate>Sat, 3 Mar 2012 12:50:00 +0100</pubDate>
5919 <description>&lt;p&gt;Many years ago, the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
5920 / Debian Edu project&lt;/a&gt; initiated a student project to create a tool
5921 for making stop motion movies. The proposal came from a teacher
5922 needing such tool on Skolelinux. The project, called &quot;stopmotion&quot;,
5923 was manned by two extraordinary students and won a school award and a
5924 national aware with this great project. The project was initiated and
5925 mentored by Herman Robak, and manned by the students Bjørn Erik Nilsen
5926 and Fredrik Berg Kjølstad. They got in touch with people at Aardman
5927 Animation studio and received feedback on how professionals would like
5928 such stopmotion tool to work, and the end result was and is used by
5929 animators around the globe. But as is usual after studying, both got
5930 jobs and went elsewhere, and did not have time to properly tend to the
5931 project, and it has been lingering for a few years now. Until last
5932 year...&lt;/p&gt;
5933
5934 &lt;p&gt;Last year some of the users got together with Herman, and moved the
5935 project to Sourceforge and in effect restarted the project under a new
5936 name,
5937 &lt;a href=&quot;http://sourceforge.net/projects/linuxstopmotion/&quot;&gt;linuxstopmotion&lt;/a&gt;.
5938 The name change was done to make it possible to find the project using
5939 Internet search engines (try to search for &#39;stopmotion&#39; to see what I
5940 mean). I&#39;ve been following
5941 &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/linuxstopmotion-community&quot;&gt;the
5942 mailing list&lt;/a&gt; and the improvement already in place and planned for
5943 the future is encouraging. If you want to make stop motion movies.
5944 Check it out. :)&lt;/p&gt;
5945 </description>
5946 </item>
5947
5948 <item>
5949 <title>Skolelinux-intervju: Frode Danielsen</title>
5950 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Frode_Danielsen.html</link>
5951 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Frode_Danielsen.html</guid>
5952 <pubDate>Mon, 27 Feb 2012 14:35:00 +0100</pubDate>
5953 <description>&lt;p&gt;I serien med intervjuer av folk i
5954 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet møter vi
5955 denne gangen Frode Danielsen, som er leder for en IT-virksomhet som
5956 passer på IT-løsningen til flere kommuner i Hedmark-området, der noen
5957 av dem bruker Skolelinux i dag.&lt;/p&gt;
5958
5959 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
5960
5961 &lt;p&gt;Daglig leder i &lt;a href=&quot;http://www.hedmarken-ikt.no/&quot;&gt;Hedmark
5962 IKT&lt;/a&gt;. En interkommunal IKT-virksomhet for Stange, Nord-Odal,
5963 Kongsvinger, Grue, Løten og Hamar kommuner. Vi er 32 ansatte&lt;/p&gt;
5964
5965 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
5966
5967 &lt;p&gt;Vi har vært i kontakt med Skolelinux-prosjektet i flere
5968 sammenhenger, blant annet gjennom et par piloter som ikke har ført til
5969 noe konkret resultat. Nå sist gjennom satsingen på skolelinux i Grue,
5970 Kongsvinger og Nord-Odal.&lt;/p&gt;
5971
5972 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;
5973 &lt;br&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
5974
5975 &lt;p&gt;Jeg tror alle løsninger har fordeler og ulemper, litt avhengig av
5976 hvilket ståsted du selv har, så jeg unnlater å svare på dette.&lt;/p&gt;
5977
5978 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
5979
5980 &lt;p&gt;Ingen for min egen del, men vi har noe fri programvare i våre
5981 løsninger.&lt;/p&gt;
5982
5983 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
5984 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
5985
5986 &lt;p&gt;Jeg tror ikke man skal ha en slik strategi. Man bør ha en strategi
5987 basert på å løse fremtidige behov, og velge løsninger som støtter opp
5988 under dette.&lt;/p&gt;
5989 </description>
5990 </item>
5991
5992 <item>
5993 <title>Second release candidate of Debian Edu / Skolelinux based on Squeeze</title>
5994 <link>http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
5995 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
5996 <pubDate>Mon, 27 Feb 2012 14:00:00 +0100</pubDate>
5997 <description>&lt;p&gt;This weekend we wrapped up and published the second release
5998 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
5999 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement did for some
6000 reason not make it the project announcement list, but is
6001 &lt;a href=&quot;http://lists.debian.org/debian-devel-announce/2012/02/msg00015.html&quot;&gt;available&lt;/a&gt;
6002 from the Debian development announcement list. Check it out if you
6003 need a software solution for your school.&lt;/p&gt;
6004 </description>
6005 </item>
6006
6007 <item>
6008 <title>Skolelinux-intervju: Knut Yrvin</title>
6009 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Knut_Yrvin.html</link>
6010 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Knut_Yrvin.html</guid>
6011 <pubDate>Tue, 21 Feb 2012 07:40:00 +0100</pubDate>
6012 <description>&lt;p&gt;I serien med intervjuer av folk i
6013 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet, får vi nå
6014 høre fra nyvalgt leder i foreningen
6015 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;Fri programvare i
6016 Skolen&lt;/a&gt; og en av stifterne av Skolelinux-prosjektet.&lt;/p&gt;
6017
6018 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6019
6020 &lt;p&gt;Knut Yrvin her. Jobber i Nokia med å fremme rammeverket Qt og QML
6021 med tilhørende utviklerverktøy. Rollen er som leder av
6022 friprog-samfunn. I fjor var jeg med å legge om utviklingen av Qt til
6023 åpen forvaltning. På den måten kan alle som bidrar til Qt gjøre det
6024 på like vilkår. Nå er det
6025 &lt;a href=&quot;http://labs.qt.nokia.com/2011/12/22/qt-5-%E2%80%93-a-look-back-at-the-numbers/&quot;&gt;over
6026 1000 utviklere&lt;/a&gt; som bidrar til Qt. Med overgangen til åpen
6027 forvaltning er utviklingen av Qt mer åpen enn Linux-kjernen.&lt;/p&gt;
6028
6029 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6030
6031 &lt;p&gt;Jeg var en av initiativtagerne til Skolelinux i 2001. Skolene slet
6032 med både utstyr og Internett-tilgang. De klarte ikke å møte
6033 forventningene til data i skolen. Driften av PC-ene var uholdbar. Som
6034 regel hadde rektor pekt ut en ivrig lærer til å passe på PC-ene,
6035 gjerne naturfaglæreren. Mange lærere jobbet mye ubetalt overtid for å
6036 vedlikeholde 30-40 datamaskiner på hver sin skole. Med 300 elever og
6037 lærere som brukere, blir det fort mye mer arbeid enn de 4-8 timene de
6038 kunne bruke på PC-drift. Skolene hadde kun en femtedel av
6039 IT-budsjettet som ble brukt på PC-ene i rådhuset.&lt;/p&gt;
6040
6041 &lt;p&gt;Vi erfarte at skolene hadde mye datautstyr som stod ubrukt. Skolene
6042 manglet penger til Microsoft-lisenser. Selv med solide skolerabatter,
6043 kostet Microsoft-lisensene gjerne like mye som PC-ene i seg selv over
6044 en periode på 5-6 år.&lt;/p&gt;
6045
6046 &lt;p&gt;Viktigheten av språklig mangfold og pedagogiske programmer var også
6047 viktig for oss. Vi oversatte mange skoleaktuelle programmer til
6048 nynorsk, nordsamisk og bokmål. Dette lenge før andre tok denne
6049 oppgaven seriøst. Allerede etter ett år hadde vi etablert et helt
6050 arsenal av skoleaktuelle programmer på nynorsk, bokmål og
6051 nordsamisk. Vi spredde vår ide om språklig mangfold til de andre frie
6052 prosjekter internasjonalt. Resultatene ser vi i mange land. Det er de
6053 frie programmene som kommer på brukernes morsmål. Det er en av flere
6054 gode grunner til at fri programvare som LibreOffice, VLC, KDE og
6055 Firefox konkurrerer ut godseid programvare mange steder i verden.&lt;/p&gt;
6056
6057 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6058
6059 &lt;p&gt;Fordelene er at Skolelinux tilbyr over 100 skoleaktuelle programmer
6060 på de norske språkene, uten ett øre i lisenskostnader. Systemet gir
6061 enormt lave driftskostnader med diskløse arbeidsstasjoner og bærbare
6062 med roaming. Skolelinux krever også mindre av maskinvaren.&lt;/p&gt;
6063
6064 &lt;p&gt;Man kan fint kjøre systemet med 512 MB RAM på en bærbar PC sammen
6065 med en nettvideo i nettleseren og en presentasjon med
6066 LibreOffice. Konkurrerende system krever fort 2 GB RAM for å få til
6067 noe tilsvarende uten at det går ufattelig tregt. Skal man gjøre noe
6068 nyttig, krever konkurrentene til Linux mye større harddisk. Skoler har
6069 rapportert at de fort har fått 50% flere nye maskiner om de velger
6070 Linux. Dette i tillegg til de årlige besparelsene ved å unngå
6071 lisensbetaling til godseid programvare.&lt;/p&gt;
6072
6073 &lt;p&gt;De lave driftskostnadene gjør at delstater i Europa har titusener
6074 av datamaskiner med Skolelinux i skolen. F.eks. er det under ti
6075 personer som drifter 70.000 PC-systemer i skolene i Extremadura i
6076 Spania. Det er slett ikke uvanlig at norske kommuner har 1500-2000
6077 datamaskiner med Skolelinux. Driften tar ett årsverk. Slår flere
6078 kommuner seg sammen, kan de få samme sentraliserte stordriftsfordeler
6079 som delstater i Tyskland og Spania. Delstater som kjører Skolelinux
6080 på alle skolene. Bare noen få personer sentraldrifter titusenvis av
6081 PC-er.&lt;/p&gt;
6082
6083 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6084
6085 &lt;p&gt;Den største ulempen for Skolelinux er motstand mot Linux fra
6086 IT-sjefer i det offentlige. Dette er ledere som holder innlegg som
6087 snytt ut av evangelist-håndboka til Microsoft. Dette gjøres i ett
6088 arbeidsmarked med stor vekst i etterspørselen etter Linux-fagfolk i
6089 privat sektor. Etterspørselen har økt mer enn noe annet tekniske yrke
6090 siste tiåret. Åtte av ti ledere vil ansette Linux-fagfolk i 2012,
6091 rapporterer jobbnettstedet Dice.com på oppdrag av Linux
6092 Foundation.&lt;/p&gt;
6093
6094 &lt;p&gt;Det mangler 16.000 ingeniører og IKT-fagfolk i Norge rapporterte
6095 arbeids- og velferdsetaten NAV. Linux-fagfolk kan velge svært
6096 interessante jobber med alt fra apps på ledende mobilsystem laget med
6097 Linux, sky- tjenester eller web-applikasjoner. De raskest voksende
6098 teknologiselskapene i verden er ute etter Linux-fagfolk. Det være seg
6099 Amazon, Google, Facebook og IBM for å nevne noen. Linux er kritisk
6100 for å sikre veksten i markedet. Det sier seg selv at lønningene og
6101 jobbmulighetene er bedre enn for andre tekniske yrker.&lt;/p&gt;
6102
6103 &lt;p&gt;Skal man lage apps for mobilen, smart-TV-en eller
6104 underholdningssystemet i bilen eller på flyet, er det Linux som
6105 gjelder. Med en slik konkurranse om Linux-kompetansen, kombinert med
6106 motstanden mot Linux hos mange IT-sjefer i offentlig sektor, så
6107 hindrer kommunene rekruttering av flere Linux- fagfolk. Skolene blir
6108 tvunget til å velge dyrere og mindre komplette IT-system. De har
6109 blitt hengende igjen slik IT var på begynnelsen av 2000- tallet. Dette
6110 fordi IT-ledere ikke har tilpasset seg markedet det siste tiåret.&lt;/p&gt;
6111
6112 &lt;p&gt;Når det er sagt, er Skolelinux svært enkelt å lære seg også for de
6113 som ikke kan. Det viser alle lærerne som drifter systemet for
6114 hundrevis og tusenvis av systemer. Det meste er på plass rett ut av
6115 boksen. I tillegg er det solid med dokumentasjon med god hjelp på
6116 nettet. Det er mange kommuner som har ansatt en lærer som først lærte
6117 Skolelinux på sin skole, for så å drifte alle PC-ene i kommunen med
6118 Skolelinux. Det kan fort være snakk om 1000-3000 datamaskiner på 10-15
6119 skoler som sentraldriftes med en stilling. Står man ordentlig fast,
6120 kan man også kjøpe profesjonell hjelp fra selskap som støtter
6121 Skolelinux. Det er flere slike selskap i Norge og i utlandet.&lt;/p&gt;
6122
6123 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
6124
6125 &lt;p&gt;Qt SDK, LibreOffice, Firefox, VLC og KDE-skrivebordet. Dette på et
6126 Debian-basert GNU/Linux-system. Jeg bruker også noen morsomme
6127 3D-spill. Idag kan jeg velge mellom over 30.000 Linux-programmer. Det
6128 finnes ikke tid i livet å undersøke alle valgmulighetene. Derfor er
6129 det bra med Skolelinux i skolen, da utvalget av programmer er
6130 begrenset til hva som er aktuelt i skolefagene.&lt;/p&gt;
6131
6132 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
6133 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
6134
6135 &lt;p&gt;Vi må selge hele Skolelinux forhåndsinstallert på maskinvare i hele
6136 pakker med 50-100-1000 PC-klienter med servere. Dette kan selges til
6137 enkeltskoler eller hele kommuner. Pakken må inneholde tjenermaskiner,
6138 svært rimelige diskløse arbeidsstasjoner, nettbrett med Plasma Active,
6139 og bærbare med roaming. Alt er godt testet med Debian. I et slikt
6140 anbud er det mulig å legge til sentraliserte drifts- og
6141 støttetjenester.&lt;/p&gt;
6142
6143 &lt;p&gt;Man bør også selge sky-tjenester som læreadministrative systemet
6144 Moodle og driftsovervåking. I tillegg så bør man slenge seg på med
6145 presentasjoner de gangene LibreOffice og andre friprog-produkter
6146 selges til kommuner.&lt;/p&gt;
6147 </description>
6148 </item>
6149
6150 <item>
6151 <title>First release candidate of Debian Edu / Skolelinux based on Squeeze</title>
6152 <link>http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
6153 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
6154 <pubDate>Sun, 19 Feb 2012 23:10:00 +0100</pubDate>
6155 <description>&lt;p&gt;One week delayed due to DVD build problems, we managed today to
6156 wrap up and publish the first release candidate for
6157 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
6158 on Squeeze. The full announcement is
6159 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00001.html&quot;&gt;available&lt;/a&gt;
6160 on the project announcement list. Check it out if you need a software
6161 solution for your school.&lt;/p&gt;
6162 </description>
6163 </item>
6164
6165 <item>
6166 <title>Skolelinux-intervju: Olav Dahlum</title>
6167 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Olav_Dahlum.html</link>
6168 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Olav_Dahlum.html</guid>
6169 <pubDate>Sat, 18 Feb 2012 10:40:00 +0100</pubDate>
6170 <description>&lt;p&gt;I serien med intervjuer av folk i
6171 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet, får vi nå
6172 høre fra et nyvalgt medlem i foreningen
6173 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;Fri programvare i
6174 Skolen&lt;/a&gt;.&lt;/p&gt;
6175
6176 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6177
6178 &lt;p&gt;Jeg heter Olav Dahlum, og er frilans oversetter, tester,
6179 prosjektleder og bruker av fri og åpen programvare som
6180 LibreOffice. Jeg er også et av styremedlemmene i FRISK.&lt;/p&gt;
6181
6182 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6183
6184 &lt;p&gt;Jeg kom i kontakt med prosjektet i 2009, da jeg ble ansatt i
6185 stiftelsen Åpne kontorprogram på norsk for å oversette og teste den
6186 norske utgaven av OpenOffice.org. Arbeidet har hele tiden vært
6187 koordinert sammen med Skolelinux, og mange av de samme menneskene er
6188 involvert, så på den måten ble jeg en del av den utvidede
6189 familien.&lt;/p&gt;
6190
6191 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6192
6193 &lt;p&gt;Skolelinux handler i likhet med utdanningssektoren om å dele
6194 kunnskap med andre, og det er dette som er hovedstyrken til
6195 prosjektet. Selv om Skolelinux hovedsaklig er involvert i utvikling
6196 av programvare, er det også et sted der man kan utfolde seg uavhengig
6197 av bakgrunn og ferdigheter.&lt;/p&gt;
6198
6199 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6200
6201 &lt;p&gt;Liten utbredelse og manglende støtte fra leverandører som leverer
6202 pedagogisk programvare til skolebruk. Kunne kanskje hatt flere
6203 verktøy som letter administrasjonen ytterligere, slik at også mindre
6204 erfarne databrukere kan utføre lett vedlikehold og rutinejobber.&lt;/p&gt;
6205
6206 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
6207
6208 &lt;p&gt;Jeg er nesten forpliktet til å si at jeg bruker LibreOffice... Jeg
6209 bruker forøvrig frie og åpne operativsystemer basert på
6210 operativsystemkjernen Linux, for tiden openSUSE 12,1 med KDE4. Men
6211 hvis jeg skal dra fram noen flere eksempler så er nok Mozilla Firefox
6212 og Thunderbird to av de jeg bruker mest. I tillegg er jeg en flittig
6213 bruker av OpenSSH, Irssi, Midnight Commander, Git, Subversion,
6214 Translation Toolkit og Super Maryo Chronicles (litt gøy skal man ha,
6215 og med to håndkontroller liggende er det ikke til å unngå).&lt;/p&gt;
6216
6217 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
6218 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
6219
6220 &lt;p&gt;Vi må få leverandører av pedagogisk programvare med på laget, men
6221 også utvikle vår egen tilpasset det norske markedet. Det er også
6222 mulig å involvere utdanningssektoren direkte i arbeidet, for eksempel
6223 gjennom studentprosjekter der elevene selv er med å utforme
6224 programvare direkte eller indirekte gjennom aktive bidrag. Dette gjør
6225 ikke bare samarbeidet tettere, men fokuset på standarder og friheten
6226 til å velge sin egen løsning vil kanskje stimulere interessen for
6227 framtidig deltakelse i bransjen. Vi som driver med fri og åpen
6228 programvare ønsker oss ikke rene konsumenter, men tenkende og
6229 selvstendige individer som kan være med å skape sin egen fremtid.&lt;/p&gt;
6230 </description>
6231 </item>
6232
6233 <item>
6234 <title>Automatic proxy configuration with Debian Edu / Skolelinux</title>
6235 <link>http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</link>
6236 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</guid>
6237 <pubDate>Mon, 13 Feb 2012 23:40:00 +0100</pubDate>
6238 <description>&lt;p&gt;New in the Squeeze version of
6239 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is the
6240 ability for clients to automatically configure their proxy settings
6241 based on their environment. We want all systems on the client to use
6242 the WPAD based proxy definition fetched from &lt;tt&gt;http://wpad/wpad.dat&lt;/tt&gt;, to
6243 allow sites to control the proxy setting from a central place and make
6244 sure clients do not have hard coded proxy settings. The schools can
6245 change the global proxy setting by editing
6246 &lt;tt&gt;tjener:/etc/debian-edu/www/wpad.dat&lt;/tt&gt; and the change propagate
6247 to all Debian Edu clients in the network.&lt;/p&gt;
6248
6249 &lt;p&gt;The problem is that some systems do not understand the WPAD system.
6250 In other words, how do one get from a WPAD file like this (this is a
6251 simple one, they can run arbitrary code):&lt;/p&gt;
6252
6253 &lt;blockquote&gt;&lt;pre&gt;
6254 function FindProxyForURL(url, host)
6255 {
6256 if (!isResolvable(host) ||
6257 isPlainHostName(host) ||
6258 dnsDomainIs(host, &quot;.intern&quot;))
6259 return &quot;DIRECT&quot;;
6260 else
6261 return &quot;PROXY webcache:3128; DIRECT&quot;;
6262 }
6263 &lt;/pre&gt;&lt;/blockquote&gt;
6264
6265 &lt;p&gt;to a proxy setting in the process environment looking like this:&lt;/p&gt;
6266
6267 &lt;blockquote&gt;&lt;pre&gt;
6268 http_proxy=http://webcache:3128/
6269 ftp_proxy=http://webcache:3128/
6270 &lt;/pre&gt;&lt;/blockquote&gt;
6271
6272 &lt;p&gt;To do this conversion I developed a perl script that will execute
6273 the javascript fragment in the WPAD file and return the proxy that
6274 would be used for
6275 &lt;tt&gt;&lt;a href=&quot;http://www.debian.org/&quot;&gt;http://www.debian.org/&lt;/a&gt;&lt;/tt&gt;,
6276 and insert this extracted proxy URL in &lt;tt&gt;/etc/environment&lt;/tt&gt; and
6277 &lt;tt&gt;/etc/apt/apt.conf&lt;/tt&gt;. The perl script wpad-extract work just
6278 fine in Squeeze, but in Wheezy the library it need to run the
6279 javascript code is &lt;a href=&quot;http://bugs.debian.org/631045&quot;&gt;no longer
6280 able to build&lt;/a&gt; because the C library it depended on is now a C++
6281 library. I hope someone find a solution to that problem before Wheezy
6282 is frozen. An alternative would be for us to rewrite wpad-extract to
6283 use some other javascript library currently working in Wheezy, but no
6284 known alternative is known at the moment.&lt;/p&gt;
6285
6286 &lt;p&gt;This automatic proxy system allow the roaming workstation (aka
6287 laptop) setup in Debian Edu/Squeeze to use the proxy when the laptop
6288 is connected to the backbone network in a Debian Edu setup, and to
6289 automatically use any proxy present and announced using the WPAD
6290 feature when it is connected to other networks. And if no proxy is
6291 announced, direct connections will be used instead.&lt;/p&gt;
6292
6293 &lt;p&gt;Silently using a proxy announced on the network might be a privacy
6294 or security problem. But those controlling DHCP and DNS on a network
6295 could just as easily set up a transparent proxy, and force all HTTP
6296 and FTP connections to use a proxy anyway, so I consider that
6297 distinction to be academic. If you are afraid of using the wrong
6298 proxy, you should avoid connecting to the network in question in the
6299 first place. In Debian Edu, the proxy setup is updated using dhcp and
6300 ifupdown hooks, to make sure the configuration is updated every time
6301 the network setup changes.&lt;/p&gt;
6302
6303 &lt;p&gt;The WPAD system is documented in a
6304 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-wrec-wpad-01&quot;&gt;IETF
6305 draft&lt;/a&gt; and a
6306 &lt;a href=&quot;http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol&quot;&gt;Wikipedia
6307 page&lt;/a&gt; for those that want to learn more.&lt;/p&gt;
6308 </description>
6309 </item>
6310
6311 <item>
6312 <title>Skolelinux-intervju: Axel Bojer</title>
6313 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Axel_Bojer.html</link>
6314 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Axel_Bojer.html</guid>
6315 <pubDate>Tue, 7 Feb 2012 14:50:00 +0100</pubDate>
6316 <description>&lt;p&gt;I serien med intervjuer av folk i
6317 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet har jeg
6318 fått en av oversetterne som har vært med siden starten i tale.&lt;/p&gt;
6319
6320 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6321
6322 &lt;p&gt;Jeg heter Axel Bojer og er datalærer, tysklærer, oversetter med
6323 mere.&lt;/p&gt;
6324
6325 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6326
6327 &lt;p&gt;Tror jeg så en annonsering på nettet i slutten av 2001 og ville
6328 være med som oversetter. Jeg kom med på en utviklersamling og
6329 prosjektet var da helt i starten. Det var spennende å være med mens
6330 prosjektet vokste til og utviklet seg.&lt;/p&gt;
6331
6332 &lt;p&gt;Jeg har «alltid» vært språkinteressert og hadde nettopp startet med
6333 Linux og tror jeg tenkte det passet å bidra. Var også glad for å få
6334 en Debian-distribusjon, og ville gjerne bruke den selv. Til å begynne
6335 med brukte jeg først Mandrake og så Debian. Og siden jeg oppdaget at
6336 det ikke var noen mulighet for å bruke den som enkeltstående i lang
6337 tid, så gikk jeg etterhvert over til Kubuntu&lt;/p&gt;
6338
6339 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6340
6341 &lt;p&gt;Løsningen er forholdsvis lett å sette opp, gratis, fri programvare
6342 og gjør det mulig å gjenbruke eldre maskiner. Det fine med Debian er
6343 at det er stabilt og har en veldig stor mengde programmer. Jeg liker
6344 også apt. :-) Jeg liker også friheten ved Linux og muligheten til å
6345 delta og forme sin egen datahverdag.&lt;/p&gt;
6346
6347 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6348
6349 &lt;p&gt;Skolelinux er for lite kjent og for sent ute med å gi ut nye
6350 versjoner.&lt;/p&gt;
6351
6352 &lt;p&gt;Da jeg selv i hovedsak bruker Kubuntu, så kan jeg egentlig ikke
6353 svare så detaljert rundt ulempene med Skolelinux. Hovedårsaken til at
6354 jeg bruker Kubuntu er nok at da vi begynte med det mener jeg det ikke
6355 var noen annen løsning. «Vandrende arbeidsstasjon» mener jeg ikke
6356 fantes da. Dessuten ville jeg ha siste versjon, da den KDE-versjonen
6357 som var i Skolelinux den gangen var en god del enklere (tror det var
6358 KDE 2) var dårligere i mine øyne enn versjon 3.&lt;/p&gt;
6359
6360 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
6361
6362 &lt;p&gt;Jeg bruker blant annet Kubuntu, LibreOffice, Thunderbird, Firefox,
6363 Kate, &lt;a href=&quot;http://comix.sourceforge.net/&quot;&gt;Comix&lt;/a&gt; og Konsole. Og
6364 en hel haug andre ved behov :-)&lt;/p&gt;
6365
6366 &lt;p&gt;Har oversatt Comix selv, men det er jo ikke skjedd noe med Comix
6367 siden 2009, så den er det nok bare jeg som har. Om andre vil ha den
6368 gir jeg den gjerne videre. Ser at noen har startet på
6369 &lt;a href=&quot;http://mcomix.sourceforge.net/&quot;&gt;MComix&lt;/a&gt; siden jeg så på så
6370 på dette sist, så nå er jeg igang med å teste og oversette den
6371 også.&lt;/p&gt;
6372
6373 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
6374 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
6375
6376 &lt;p&gt;Det viktigste er å forankre beslutningen i kollegiet og med de som
6377 er ansvarlige for å vedlikeholde og bruke datamaskinene. Flest mulig
6378 bør være med på å holde det (sosialt) vedlike, kjenne og støtte
6379 prinsippene. Som enkeltmannsprosjekt blir det lett veldig sårbart,
6380 særlig når (Skole)linux ennå i stor grad er en motkultur og ikke noe
6381 en stor nok andel av beslutningstakere, brukere osv kjenner til og
6382 bruker.&lt;/p&gt;
6383
6384 &lt;p&gt;Jeg tror det viktigste er å fortsette å holde fri programvare godt,
6385 oppdatert, minimere antall feil, ha en god kontakt med brukerne og
6386 attraktivt og spennende programmer. Beholde alt som er bra og ha det
6387 tilgjengelig samtidig som man tilbyr det nyeste og rareste for de som
6388 vil ha det.&lt;/p&gt;
6389 </description>
6390 </item>
6391
6392 <item>
6393 <title>Saving power with Debian Edu / Skolelinux using shutdown-at-night</title>
6394 <link>http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</link>
6395 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</guid>
6396 <pubDate>Sun, 5 Feb 2012 09:45:00 +0100</pubDate>
6397 <description>&lt;p&gt;Since the Lenny version of
6398 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, a
6399 feature to save power have been included. It is as simple as it is
6400 practical: Shut down unused clients at night, and turn them on again
6401 in the morning. This is done using the
6402 &lt;a href=&quot;http://packages.qa.debian.org/s/shutdown-at-night.html&quot;&gt;shutdown-at-night&lt;/a&gt; Debian package.&lt;/p&gt;
6403
6404 &lt;p&gt;To enable this feature on a client, the machine need to be added to
6405 the netgroup shutdown-at-night-hosts. For Debian Edu, this is done in
6406 LDAP, and once this is in place, the machine in question will check
6407 every hour from 16:00 until 06:00 to see if the machine is unused, and
6408 shut it down if it is. If the hardware in question is supported by
6409 the
6410 &lt;a href=&quot;http://packages.qa.debian.org/n/nvram-wakeup.html&quot;&gt;nvram-wakeup&lt;/a&gt;
6411 package, the BIOS is told to turn the machine back on around 07:00 +-
6412 10 minutes. If this isn&#39;t working, one can configure wake-on-lan to
6413 try to turn on the client. The wake-on-lan option is only documented
6414 and not enabled by default in Debian Edu.&lt;/p&gt;
6415
6416 &lt;p&gt;It is important to not turn all machines on at once, as this can
6417 blow a fuse if several computers are connected to the same fuse like
6418 the common setup for a classroom. The nvram-wakeup method only work
6419 for machines with a functioning hardware/BIOS clock. I&#39;ve seen old
6420 machines where the BIOS battery were dead and the hardware clock were
6421 starting from 0 (or was it 1990?) every boot. If you have one of
6422 those, you have to turn on the computer manually.&lt;/p&gt;
6423
6424 &lt;p&gt;The shutdown-at-night package is completely self contained, and can
6425 also be used outside the Debian Edu environment. For those without a
6426 central LDAP server with netgroups, one can instead touch the file
6427 &lt;tt&gt;/etc/shutdown-at-night/shutdown-at-night&lt;/tt&gt; to enable it.
6428 Perhaps you too can use it to save some power?&lt;/p&gt;
6429 </description>
6430 </item>
6431
6432 <item>
6433 <title>Third beta version of Debian Edu / Skolelinux based on Squeeze</title>
6434 <link>http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
6435 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
6436 <pubDate>Sat, 4 Feb 2012 13:25:00 +0100</pubDate>
6437 <description>&lt;p&gt;I am happy to announce that finally we managed today to wrap up and
6438 publish the third beta version of
6439 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
6440 on Squeeze. If you want to test a LDAP backed Kerberos server with
6441 out of the box PXE configuration for running diskless machines and
6442 installing new machines, check it out. If you need a software
6443 solution for your school, check it out too. The full announcement is
6444 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00000.html&quot;&gt;available&lt;/a&gt;
6445 on the project announcement list.&lt;/p&gt;
6446
6447 &lt;p&gt;I am very happy to report these changes and improvements since
6448 beta2 (there are more, see announcement for full list):&lt;/p&gt;
6449
6450 &lt;ul&gt;
6451
6452 &lt;li&gt;It is now possible to change the pre-configured IP subnet from
6453 10.0.0.0/8 to something else by using the subnet-change tool after
6454 the installation.&lt;/li&gt;
6455
6456 &lt;li&gt;Too full partitions are now automatically extended on the Main
6457 Server, based on the rules specified in /etc/fsautoresizetab.&lt;/li&gt;
6458
6459 &lt;li&gt;The CUPS queues are now automatically flushed every night, and all
6460 disabled queues are restarted every hour. This should cut down on
6461 the amount of manual administration needed for printers.&lt;/li&gt;
6462
6463 &lt;li&gt;The set of initial users have been changed. Now a personal user
6464 for the local system administrator is created during installation
6465 instead of the previously created localadmin and super-admin users,
6466 and this user is granted administrative privileges using group
6467 membership. This reduces the number of passwords one need to keep
6468 up to date on the system.&lt;/li&gt;
6469
6470 &lt;/ul&gt;
6471
6472 &lt;p&gt;The new main server seem to work so well that I am testing it as my
6473 private DNS/LDAP/Kerberos/PXE/LTSP server at home. I will use it look
6474 for issues we could fix to polish Debian Edu even further before the
6475 final Squeeze release is published.&lt;/p&gt;
6476
6477 &lt;p&gt;Next weekend the project organise a
6478 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00001.html&quot;&gt;developer
6479 gathering&lt;/a&gt; in Oslo. We will continue the work on the Squeeze
6480 version, and start initial planning for the Wheezy version. Perhaps I
6481 will see you there?&lt;/p&gt;
6482 </description>
6483 </item>
6484
6485 <item>
6486 <title>Handling non-free firmware in Debian Edu/Squeeze</title>
6487 <link>http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</link>
6488 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</guid>
6489 <pubDate>Fri, 27 Jan 2012 23:30:00 +0100</pubDate>
6490 <description>&lt;p&gt;With some computer hardware, one need non-free firmware blobs.
6491 This is the sad fact of todays computers. In the next version of
6492 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
6493 on Squeeze, we provide several scripts and modifications to make
6494 firmware blobs easier to handle. The common use case I run into is a
6495 laptop with a wireless network card requiring non-free firmware to
6496 work, but there are other use cases as well.&lt;/p&gt;
6497
6498 &lt;p&gt;First and foremost, Debian Edu provide ISO images for DVD and CD
6499 with all firmware packages in the Debian sections main and non-free
6500 included, to ensure debian-installer find and can install all of them
6501 during installation. This take care firmware for network devices used
6502 by the installer when installing from from local media. But for
6503 example multimedia devices are not activated in the installer and are
6504 not taken care of by this.&lt;/p&gt;
6505
6506 &lt;p&gt;For non-network devices, we provide the script
6507 &lt;tt&gt;/usr/share/debian-edu-config/tools/auto-addfirmware&lt;/tt&gt; which
6508 search through the &lt;tt&gt;dmesg&lt;/tt&gt; output for drivers requesting extra
6509 firmware. The firmware file name is looked up in the Contents-ARCH.gz
6510 file available in the package repository, and the packages providing
6511 the requested firmware file(s) is installed. I have proposed to do
6512 something similar in debian-installer (BTS report
6513 &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;#655507&lt;/a&gt;), to allow PXE
6514 installs of Debian to handle firmware installation better. Run the
6515 script as root from the command line to fetch and install the needed
6516 firmware packages.&lt;/p&gt;
6517
6518 &lt;p&gt;Debian Edu provide PXE installation of Debian out of the box, and
6519 because some machines need firmware to get their network cards
6520 working, the installation initrd some times need extra firmware
6521 included to be able to install at all. To fill the PXE installation
6522 initrd with extra firmware, the
6523 &lt;tt&gt;/usr/share/debian-edu-config/tools/pxe-addfirmware&lt;/tt&gt; script is
6524 provided. Again, just run it as root on the command line to fill the
6525 PXE initrd with firmware packages.&lt;/p&gt;
6526
6527 &lt;p&gt;Last, some LTSP clients might also need firmware to get their
6528 network cards working. For this,
6529 &lt;tt&gt;/usr/share/debian-edu-config/tools/ltsp-addfirmware&lt;/tt&gt; is
6530 provided to update the LTSP initrd with firmware blobs. It is used
6531 the same way as the other firmware related tools.&lt;/p&gt;
6532
6533 &lt;p&gt;At the moment, we do not run any of these during installation. We
6534 do not know if this is acceptable for the local administrator to use
6535 non-free software, and it is their choice.&lt;/p&gt;
6536
6537 &lt;p&gt;We plan to release beta3 this weekend. You might want to give it a
6538 try.&lt;/p&gt;
6539 </description>
6540 </item>
6541
6542 <item>
6543 <title>Skjermbilder fra nordsamisk installasjon av Skolelinux/Squeeze</title>
6544 <link>http://people.skolelinux.org/pere/blog/Skjermbilder_fra_nordsamisk_installasjon_av_Skolelinux_Squeeze.html</link>
6545 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skjermbilder_fra_nordsamisk_installasjon_av_Skolelinux_Squeeze.html</guid>
6546 <pubDate>Thu, 26 Jan 2012 20:00:00 +0100</pubDate>
6547 <description>&lt;p&gt;For morro skyld har jeg gjennomført en nordsamisk installasjon for
6548 neste utgave av &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;
6549 (Squeeze) og knipset skjermbilder av resultatet.&lt;/p&gt;
6550
6551 &lt;p&gt;Som en kan se der er det noen oversettelser som mangler. Det hadde
6552 vært hyggelig hvis alle tekstene som vises i Skolelinux-installasjonen
6553 ble oversatt til nordsamisk, men for å få det til må noen som forstår
6554 språket melde seg til dyst. Det er mangel på nordsamiske oversettere
6555 av fri programvare. Hvis noen starter raskt, så bør en rekke å
6556 fullføre Wheezy-utgaven før den gis ut. :)&lt;/p&gt;
6557
6558 &lt;p&gt;Se &lt;a href=&quot;http://d-i.debian.org/l10n-stats/&quot;&gt;oversetterstatistikk for
6559 debian installer&lt;/a&gt; for detaljert status. Jeg har tipset
6560 &lt;a href=&quot;https://lister.ping.uio.no/mailman/listinfo/i18n-sme&quot;&gt;epostlisten for samiskoversettelser&lt;/a&gt;,
6561 men det har vært veldig liten aktivitet der de siste årene.&lt;/p&gt;
6562
6563 &lt;p&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/01-isomenu.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/01-isomenu.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6564 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/02-sme-lang.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/02-sme-lang.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6565 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/03-sme-place.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/03-sme-place.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6566 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/04-sme-keymap.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/04-sme-keymap.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6567 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/05-sme-profile.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/05-sme-profile.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6568 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/06-sme-autopart.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/06-sme-autopart.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6569 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/07-sme-popcon.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/07-sme-popcon.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6570 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/08-sme-rootpw1.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/08-sme-rootpw1.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6571 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/09-sme-rootpw2.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/09-sme-rootpw2.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6572 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/10-sme-firstuser.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/10-sme-firstuser.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6573 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/11-sme-firstusername.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/11-sme-firstusername.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6574 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/12-sme-firstuserpw1.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/12-sme-firstuserpw1.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6575 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/13-sme-firstuserpw2.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/13-sme-firstuserpw2.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6576 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/14-sme-part.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/14-sme-part.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6577 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/15-sme-debootstrap.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/15-sme-debootstrap.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6578 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/16-sme-tasksel.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/16-sme-tasksel.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6579 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/17-sme-wordlist.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/17-sme-wordlist.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6580 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/18-sme-tasksel.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/18-sme-tasksel.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6581 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/19-sme-ltsp.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/19-sme-ltsp.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6582 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/20-sme-grub.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/20-sme-grub.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6583 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/21-sme-finish-install.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/21-sme-finish-install.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;
6584 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/22-sme-finish-message.png&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2012-01-26-skolelinux-sme/22-sme-finish-message.png&quot; width=&quot;40%&quot;&gt;&lt;/a&gt;&lt;/p&gt;
6585 </description>
6586 </item>
6587
6588 <item>
6589 <title>Setting up a new school with Debian Edu/Squeeze</title>
6590 <link>http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</link>
6591 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</guid>
6592 <pubDate>Wed, 25 Jan 2012 21:00:00 +0100</pubDate>
6593 <description>&lt;p&gt;The next version of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu
6594 / Skolelinux&lt;/a&gt; will include a new tool
6595 &lt;tt&gt;sitesummary2ldapdhcp&lt;/tt&gt;, which can be used to quickly set up all
6596 the computers in a school without much manual labour. Here is a short
6597 summary on how to use it to set up a new school.&lt;/p&gt;
6598
6599 &lt;p&gt;First, install a combined Main Server and Thin Client Server as the
6600 central server in the network. Next, PXE boot all the client machines
6601 as thin clients and wait 5 minutes after the last client booted to
6602 allow the clients to report their existence to the central server. When
6603 this is done, log on to the central server and run
6604 &lt;tt&gt;sitesummary2ldapdhcp -a&lt;/tt&gt; in the &lt;tt&gt;konsole&lt;/tt&gt; to use the
6605 collected information to generate system objects in LDAP. The output
6606 will look similar to this:&lt;/p&gt;
6607
6608 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
6609 % sitesummary2ldapdhcp -a
6610 info: Updating machine tjener.intern [10.0.2.2] id ether-00:01:02:03:04:05.
6611 info: Create GOsa machine for auto-mac-00-01-02-03-04-06 [10.0.16.20] id ether-00:01:02:03:04:06.
6612
6613 Enter password if you want to activate these changes, and ^c to abort.
6614
6615 Connecting to LDAP as cn=admin,ou=ldap-access,dc=skole,dc=skolelinux,dc=no
6616 enter password: *******
6617 %
6618 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
6619
6620 &lt;p&gt;After providing the LDAP administrative password (the same as the
6621 root password set during installation), the LDAP database will be
6622 populated with system objects for each PXE booted machine with
6623 automatically generated names. The final step to set up the school is
6624 then to log into &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa&lt;/a&gt;,
6625 the web based user, group and system administration system to change
6626 system names, add systems to the correct host groups and finally
6627 enable DHCP and DNS for the systems. All clients that should be used
6628 as diskless workstations should be added to the workstation-hosts
6629 group. After this is done, all computers can be booted again via PXE
6630 and get their assigned names and group based configuration
6631 automatically.&lt;/p&gt;
6632
6633 &lt;p&gt;We plan to release beta3 with the updated version of this feature
6634 enabled this weekend. You might want to give it a try.&lt;/p&gt;
6635
6636 &lt;p&gt;Update 2012-01-28: When calling sitesummary2ldapdhcp to add new
6637 hosts, one need to add the option -a. I forgot to mention this in my
6638 original text, and have added it to the text now.&lt;/p&gt;
6639 </description>
6640 </item>
6641
6642 <item>
6643 <title>Skolelinux-intervju: Paul Reidar Løsnesløkken</title>
6644 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Paul_Reidar_L_snesl_kken.html</link>
6645 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Paul_Reidar_L_snesl_kken.html</guid>
6646 <pubDate>Wed, 18 Jan 2012 14:30:00 +0100</pubDate>
6647 <description>&lt;p&gt;I serien med intervjuer av folk i
6648 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-miljøet, har jeg nå
6649 lyktes med å få tak i en skolemann som ikke er aktiv med utviklingen,
6650 men likevel har vært med nesten siden starten av prosjektet. Jeg
6651 ønsker derfor velkommen til Paul Reidar Løsnesløkken, en mann med
6652 mange års erfaring i bruk av Skolelinux.&lt;/p&gt;
6653
6654 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6655
6656 &lt;p&gt;Jeg driftet tidligere IKT løsningen for skolene i
6657 &lt;a href=&quot;http://www.nord-odal.kommune.no/&quot;&gt;Nord-Odal&lt;/a&gt;. I dag er jeg
6658 IKT-konsulent for hele kommunen og samarbeider med
6659 &lt;a href=&quot;http://www.hedmarken-ikt.no/&quot;&gt;Hedmark-IKT&lt;/a&gt; for best mulig
6660 tjenester til kommunen. Jeg har bakgrunn som elektronikkreparatør og
6661 grunnskolelærer og har tatt en del fag innen IKT, i hovedsak
6662 driftsfag. IKT i Nord-Odal kommune blir i dag driftet av Hedmark IKT
6663 som er et samarbeid mellom Løten, Stange, Grue, Hamar, Kongsvinger og
6664 Nord-Odal. Jeg er fortsatt &quot;IKT-personen&quot; på skolene i kommunen og
6665 følger opp og gjør enkelte mindre endringer der.&lt;/p&gt;
6666
6667 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6668
6669 &lt;p&gt;Kommunen satset på Skolelinux i 2004. Jeg var ikke med i
6670 beslutningsprosessen den gang, men ble likevel med fra starten når
6671 dette ble levert.&lt;/p&gt;
6672
6673 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6674
6675 &lt;p&gt;Fordelene med Skolelinux er rask oppstart, sentral drift av
6676 klientene, klienter som jobber raskt og effektivt, bedre
6677 funksjonalitet på eldre utstyr og en ganske god programpakke med fri
6678 programvare som følger med. Løsningen med halvtykke klienter gjør at
6679 prosessering skjer lokalt med alltid ferske maskiner.&lt;/p&gt;
6680
6681 &lt;p&gt;Skolelinux kan fungere godt på gammelt utstyr, men det er klart at
6682 utstyr også blir for gammelt selv for Skolelinux. I forbindelese med
6683 at vi nylig fikk nye servere og ny installasjon kastet jeg ut ca 60
6684 klienter som fortsatt var i drift etter at de var kjøpt godt brukt i
6685 2004. Noe var rundt 15 år gammelt, men var fortsatt i bruk. Noen
6686 klaget på at det nå gikk veldig tregt på en del pedagogiske nettsider
6687 med flash o.l. Det er fullt forståelig.&lt;/p&gt;
6688
6689 &lt;p&gt;Jeg fikk nylig et spørsmål fra ungdomsskolens rektor om jeg kunne
6690 legge inn &lt;a href=&quot;http://freemind.sourceforge.net/&quot;&gt;FreeMind&lt;/a&gt;, et
6691 tankekartprogram , på skolens elev-Windowsmaskiner. Lærerne hadde
6692 vært på kurs og ville ta dette i bruk. Skolen har ca halvparten av
6693 elevmaskinene på bærbare Windowsmaskiner. Da kunne jeg fortelle at
6694 dette programmet allerede lå inne på den nye Skolelinuxløsningen
6695 som nettopp var satt i drift, klart til bruk.&lt;/p&gt;
6696
6697 &lt;p&gt;Vi har de bærbare maskinene på ungdomsskolen i domene med
6698 Skolelinux. Dette fungerer også meget bra nå. Elevene får opp en
6699 midlertidig windowsprofil når de logger på. Denne profilen slettes
6700 etter at de logger av, noe som medfører rene profiler hver gang de
6701 starter opp en maskin. De må lagre i sin Skolelinprofil, noe som
6702 medfører at de får tak i sine filer uavhengig av om de starter en
6703 Windowsmaskin eller en Skolelinuxklient. Det er mye mindre trafikk i
6704 det trådløse nettet etter at ikke hele profiler blir lastet opp til de
6705 enkelte Windowsmaskinene og tilbake når man avslutter. Jeg vet ikke om
6706 dette er standardoppsett i Skolelinux, men slik er vårt oppsett
6707 nå.&lt;/p&gt;
6708
6709 &lt;p&gt;Vi har i flere år satt opp vår løsning slik at skriverkøer slettes
6710 og skrivere startes hver natt. Hyggelig å høre at dette nå skal bli
6711 en standard i Skolelinuxløsningen. Dette har vært en god hjelp for
6712 oss.&lt;/p&gt;
6713
6714 &lt;p&gt;Elevene er lite opptatt av om de jobber på en Skolelinux eller en
6715 Windowsmaskin bare de har de programmene de trenger og at det virker
6716 når det skal brukes. Vi kjører mest mulig de samme programmene på
6717 Windows som i Skolelinux, som f.eks Audacity og LibreOffice.&lt;/p&gt;
6718
6719 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6720
6721 &lt;p&gt;Lærere bruker hos oss Windows. Dette fordi de da selv har mer
6722 kontroll over sin maskin, kan bruke den overalt, og kan legge inn
6723 programmer selv når de trenger noe i forhold til kurs o.l de er
6724 på. Jeg tror lærernes selvstendighet her gjør dem tryggere på IKT-bruk
6725 generelt. Det at de av og til får opp advarsler og lignende gjør også
6726 at de må tenke igjennom og spørre om ting rundt datasikkerhet.&lt;/p&gt;
6727
6728 &lt;p&gt;Det er en del programmer vi bruker som ikke finnes for Linux. Mest
6729 brukt er nok Photostory3 som brukes i mange sammenhenger, særlig på
6730 ungdomsskolen, bl.a. til å lage herbarier (plantesamling) . Dette
6731 finnes gratis for Windows, men er ikke fri programvare. Vi er opptatt
6732 av at programmer elevene bruker på skolen også kan brukes gratis
6733 hjemme. Det er også en del programmer som brukes til spesielle elever
6734 som bare går i Windows. Det er viktig med fokus på funksjoner og ikke
6735 på hvilket OS man bruker.&lt;/p&gt;
6736
6737 &lt;p&gt;For oss er det kombinasjonen mellom Skolelinux og Windows som gir
6738 oss en god og hel løsning. Skolelinux er best der de er gode.&lt;/p&gt;
6739
6740 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
6741
6742 &lt;p&gt;Selv er det LibreOffice jeg bruker til daglig. Jeg bruker selv en
6743 Windowsmaskin. Jeg har benyttet en del fri programvare i forbindelse
6744 med sjekking av trafikk i nettverk, slik som Wireshark, men dette er
6745 jo ikke aktuelt for skolene. Jeg er generelt glad i programmer som
6746 fungerer på både Linux og Windows og gjerne MAC.&lt;/p&gt;
6747
6748 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
6749 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
6750
6751 &lt;p&gt;Det er viktig at det benyttes programmer som elevene også kan ta i
6752 bruk hjemme. Det skal da være enkelt, lovlig og gratis for
6753 elevene. Da er jeg ikke lenger veldig opptatt av om det kalles &quot;fri
6754 programvare&quot;. For skolene tror jeg &quot;gratis&quot; og &quot;funksjonelt&quot; er bedre
6755 begreper enn &quot;fri&quot; i forhold til programmer. De fleste skiller nok
6756 ikke mellom &quot;fri&quot; og &quot;gratis&quot;. Det er nå svært mange elever som
6757 benytter OpenOffice eller LibreOffice som sin primære kontorpakke
6758 hjemme.&lt;/p&gt;
6759 </description>
6760 </item>
6761
6762 <item>
6763 <title>Changing the default Iceweasel start page in Debian Edu/Squeeze</title>
6764 <link>http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</link>
6765 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</guid>
6766 <pubDate>Tue, 10 Jan 2012 15:30:00 +0100</pubDate>
6767 <description>&lt;p&gt;In the Squeeze version of
6768 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; soon
6769 to be released, users of the system will get their default browser
6770 start page set from LDAP, allowing the system administrator to point
6771 all users to the school web page by updating one setting in LDAP. In
6772 addition to setting the default start page when a machine boots, users
6773 are shown the same page as a welcome page when they log in for the
6774 first time.&lt;/p&gt;
6775
6776 &lt;p&gt;The LDAP object dc=skole,dc=skolelinux,dc=no have an attribute
6777 labeledURI with &quot;http://www/ LDAP for Debian Edu/Skolelinux&quot; as the
6778 default content. By changing this value to another URL, all users get
6779 to see the page behind this new URL.&lt;/p&gt;
6780
6781 &lt;p&gt;An easy way to update it is by using the ldapvi tool. It can be
6782 called as &quot;&lt;tt&gt;ldapvi -ZD &#39;(cn=admin)&#39;&lt;/tt&gt;&#39; to update LDAP with the
6783 new setting.&lt;/p&gt;
6784
6785 &lt;p&gt;We have written the code to adjust the default start page and show
6786 the welcome page, and I wonder if there is an easier way to do this
6787 from within Iceweasel instead.&lt;/p&gt;
6788 </description>
6789 </item>
6790
6791 <item>
6792 <title>Second beta version of Debian Edu / Skolelinux based on Squeeze</title>
6793 <link>http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
6794 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
6795 <pubDate>Sat, 7 Jan 2012 22:50:00 +0100</pubDate>
6796 <description>&lt;p&gt;I am happy to announce that today we managed to wrap up and publish
6797 the second beta version of
6798 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;. If
6799 you want to test a LDAP backed Kerberos server with out of the box PXE
6800 configuration for running diskless machines and installing new
6801 machines, check it out. If you need a software solution for your
6802 school, check it out too. The full announcement is
6803 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00000.html&quot;&gt;available&lt;/a&gt;
6804 on the project announcement list.&lt;/p&gt;
6805 </description>
6806 </item>
6807
6808 <item>
6809 <title>Fixing an hanging debian installer for Debian Edu</title>
6810 <link>http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</link>
6811 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</guid>
6812 <pubDate>Tue, 3 Jan 2012 11:25:00 +0100</pubDate>
6813 <description>&lt;p&gt;During christmas, I have been working getting the next version of
6814 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ready
6815 for release. The initial problem I looked at was particularly
6816 interesting.&lt;/p&gt;
6817
6818 &lt;P&gt;The installer would hang at the end when it was doing it
6819 post-installation configuration, and whatevery I did to try to find
6820 the cause and fix it always worked while I tested it, but never when I
6821 integrated it into the installer and ran the installation from
6822 scratch. I would try to restart processes, close file descriptors,
6823 remove or create files, and the installer would always unblock and
6824 wrap up its tasks.&lt;/p&gt;
6825
6826 &lt;p&gt;Eventually the cause was found. The kernel was simply running out
6827 of entropy, causing the Kerberos setup to hang waiting for more.
6828 Pressing keys was adding entropy to the kernel, and thus all my tries
6829 to fix the problem worked not because what I was typing to fix it, but
6830 because I was typing.&lt;/P&gt;
6831
6832 &lt;p&gt;The fix I implemented was to add a background process looking at
6833 the level of entropy in the kernel (by checking
6834 /proc/sys/kernel/random/entropy_avail), and if it was too small, the
6835 installer will flush the kernel file buffers and do &#39;find /&#39; to
6836 generate some disk IO. Disk IO generate entropy in the kernel, and is
6837 one of the few things that can be initated from within the system to
6838 generate entropy.&lt;/p&gt;
6839
6840 &lt;p&gt;The fix is in
6841 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/Installation&quot;&gt;beta1
6842 of the Debian Edu/Squeeze&lt;/a&gt; version, and we
6843 &lt;a href=&quot;http://wiki.debian.org/DebianEdu&quot;&gt;welcome more testers and
6844 developers&lt;/a&gt;. We plan to release beta2 this weekend.&lt;/p&gt;
6845 </description>
6846 </item>
6847
6848 <item>
6849 <title>Skolelinux-intervju: Peter Hansteen</title>
6850 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Peter_Hansteen.html</link>
6851 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Peter_Hansteen.html</guid>
6852 <pubDate>Sun, 11 Dec 2011 23:10:00 +0100</pubDate>
6853 <description>&lt;p&gt;Etter en lang pause er det klart for neste mann ut i min serie med
6854 intervjuer av
6855 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-relaterte personer.
6856
6857 Denne gangen har jeg besøk av et avtroppende styremedlem i
6858 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRISK&lt;/a&gt;, og en mann
6859 som har vært aktiv i Linux-miljøet i Bergen siden 90-tallet.&lt;/p&gt;
6860
6861 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6862
6863 &lt;p&gt;Jeg heter Peter Hansteen, og jobber til daglig som seniorkonsulent
6864 i EDB ErgoGroup i Bergen. I praksis betyr det systemadministrasjon på
6865 Unix (primært Solaris, men en viss komponent av Linux). Men Solaris
6866 er for meg et relativt nytt bekjentskap, hovedplattformen min har
6867 generelt vært OpenBSD og til dels FreeBSD.&lt;/p&gt;
6868
6869 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6870
6871 &lt;p&gt;Jeg husker ikke helt alle detaljene mer ;) - men jeg tror det var
6872 gjennom news-gruppen no.it.os.unix.linux.diverse, efn-listen og
6873 etterhvert også BLUG-miljøet her i Bergen. Vi hadde et par
6874 Skolelinux-sentrerte BLUG-møter for noen år siden, og det har vært et
6875 par Skolelinux-utviklersamlinger her.&lt;/p&gt;
6876
6877 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6878
6879 &lt;p&gt;Jeg bruker dessverre ikke Skolelinux daglig. Men slik jeg kjenner
6880 prosjektet har det vært i stand til å ta opp i seg det beste av fri
6881 programvare i mange kategorier, så fra et sysadmin-perspektiv ser det
6882 ut som en svært behagelig sak. For brukerne er det vel både en fordel
6883 og en ulempe at det ikke er Windows. Men vi håper at fordelene med et
6884 fritt system etterhvert vil bli åpenbare for både elever, lærekrefter
6885 og foreldre.&lt;/p&gt;
6886
6887 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6888
6889 &lt;p&gt;Vel, ulempen er vel først og fremst at andre aktører med mer
6890 kapitalmuskel har klart å etablere seg som det både lærere og foreldre
6891 føler seg trygge på, selv om det etter mitt hode ikke er noen grunn
6892 til å være spesielt trygg på de kommersielle alternativene.&lt;/p&gt;
6893
6894 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
6895
6896 &lt;p&gt;Når jeg får bestemme helt selv, bruker jeg kun fri programvare. Da
6897 helst med vekt på ting som kjører greit på OpenBSD. Hjemme er det
6898 OpenBSD, Ubuntu eller FreeBSD vi bruker. På skrivebordet er det en
6899 avveining mellom Gnome, KDE eller hva-det-nå-heter som er
6900 standardvalget i Ubuntu, ellers er det de kjente tingene som
6901 LibreOffice, Emacs, mplayer. På server er det selvfølgelig Apache,
6902 for overvåking både OpenNMS og Nagios (det bare ble sånn, og
6903 forskjellige siter). Jeg skriver til tider om slikt jeg holder på med
6904
6905 &lt;a href=&quot;http://bsdly.blogspot.com&quot;&gt;http://bsdly.blogspot.com&lt;/a&gt;.&lt;/p&gt;
6906
6907 &lt;p&gt;Men vi må nevne at selv vi har en Microsoft-ting som vi slår på når
6908 vi av en eller annen grunn må. Det betyr igjen vanligvis når en
6909 mobiltelefon eller en annen lukket elektronisk dings krever kontakt
6910 via en slik for å få oppdateringene sine.&lt;/p&gt;
6911
6912 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
6913 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
6914
6915 &lt;p&gt;Hadde vi hatt det rette svaret på det spørsmålet, så hadde vi
6916 gjerne hatt Skolelinux som førstevalg på alle skoler ;)&lt;/p&gt;
6917
6918 &lt;p&gt;Men jeg tror vi må legge vekt på flere forskjellige ting. En helt
6919 sentral sak er å fokusere på fri programvare og åpne standarder som de
6920 demokratiske verdiene de faktisk er. Det har kanskje kommet litt for
6921 mye i bakgrunnen i forhold til strevet etter å lage det mest mulig
6922 &#39;brukervennlige&#39; systemet. Det er en tung vei å gå, så det er
6923 forståelig at freenix-aktivister heller velger å skrive kode og annet
6924 som er mer lystbetont. Mer praktisk tror jeg vi må gjøre i alle fall
6925 to ting: For det første sørge for å fortsette med å levere det best
6926 mulige frie produktet, slik at det er lett å både komme i gang og
6927 holde systemene i daglig drift, og for det andre 2) spore opp mulige
6928 aktivister der de finnes, via lokale brukergrupper, sosiale medier
6929 eller annet og sørge for at de fortsetter å være aktive. Mer og
6930 mindre uformelle treff kan være nyttig i tillegg til de mer
6931 organiserte møtene med foredrag, konferanser og utviklersamlinger.&lt;/p&gt;
6932 </description>
6933 </item>
6934
6935 <item>
6936 <title>Skolelinux-intervju: Frode Jemtland</title>
6937 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Frode_Jemtland.html</link>
6938 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Frode_Jemtland.html</guid>
6939 <pubDate>Wed, 27 Jul 2011 08:50:00 +0200</pubDate>
6940 <description>&lt;p&gt;Neste mann ut i min serie med intervjuer av Skolelinux-relaterte
6941 personer er en tidligere styreleder i
6942 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRISK&lt;/a&gt; som var med
6943 fra starten av
6944 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-prosjektet.&lt;/p&gt;
6945
6946 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
6947
6948 &lt;p&gt;Mitt navn er Frode Jemtland, og jeg jobber i Hedmark IKT, som er et
6949 driftsselskap for Grue, Hamar, Kongsvinger, Løten, Nord-Odal og Stange
6950 kommuner. Her er jeg leder for avdelingen Løsninger og Arkitektur. Vi
6951 har i hovedansvar for servere, infrastruktur og løsninger som
6952 helhet.&lt;/p&gt;
6953
6954 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
6955
6956 &lt;p&gt;Jobbet i IBM fra 2000, og da spesielt med Linux. Dette var da et av
6957 de mest tydelige linux prosjektene i Norge, og her ønsket jeg å
6958 bidra. Var aktivt med i prosjektet i 4-5 år.&lt;/p&gt;
6959
6960 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6961
6962 &lt;p&gt;Fordelene slik jeg ser det er den sentraliserte driftmodellen, og
6963 alle de vel gjennomtenkte løsningene som er inkludert i denne
6964 løsningen. Samtidig er det basert på en stabil, og godt kjent
6965 plattform. Dette vil si at man har en løsning som skal være mye
6966 tilgjengelig, og hvor det er relativt enkelt å få tak i personer som
6967 kan mye om den grunnleggende plattformen.&lt;/p&gt;
6968
6969 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
6970
6971 &lt;p&gt;De største utfordringene med en løsningen er at den er intensiv på f.eks
6972 nettverk. I seg selv ikke et problem for en enkelt skole, men skal løsningen
6973 kjøres i større skala, med sentraliserte servere, så gir dette noen
6974 utfordringer.&lt;/p&gt;
6975
6976 &lt;p&gt;Utifra hva jeg har sett på større installasjoner så er det ikke så
6977 enkelt å skjønne, hva som bør gjøres for at den skal skaleres opp, og
6978 da ta godt vare på alle sider av dette, ikke bare mer server å fordele
6979 last/trykk, men hvordan også beholde robustheten og fleksibiliteten i
6980 løsningen.&lt;/p&gt;
6981
6982 &lt;p&gt;En annen utfordring er at stadig flere produkter som skal brukes i
6983 skoleløsningen ikke er laget til å kunne brukes i en
6984 skolelinuxløsning. Det blir derfor fort mye skreddersøm i de
6985 forskjellige installasjonene, for å få diverse pedagogiske programmer,
6986 webløsninger, smartboards, m.m. til å fungere. Man er også en for
6987 liten kundebase til at leverandørene ønsker å gjøre noe med
6988 utfordringen. Problemet overlates til oss.&lt;/p&gt;
6989
6990 &lt;p&gt;Det er også en kontinuerlig utfordring rundt problemet med å holde
6991 programvare på stabile versjoner, kontra å få ny funksjonalitet. Dette
6992 er jo en konflikt mellom oss som ønsker å drifte en stabil, og
6993 kostnadseffektiv løsning, mot sluttbrukerne som ønsker seg funksjoner
6994 det er vant med fra andre løsninger, eller som de må ha for at et
6995 eller annet nytt produkt skal fungere i løsningen. Dette er en
6996 utfordring også for andre plattformer.&lt;/p&gt;
6997
6998 &lt;p&gt;En siste utfordring som ikke har noe med løsningen å gjøre, men med
6999 det omkringliggende miljøet denne skal kjøre i, er at de enhetene som
7000 skal drifte dataløsninger for kommuner og fylkeskommuner begynner å
7001 profesjonaliseres, og er da avhengig av å ha standard løsninger for å
7002 drifte store brukermasser. MS er selvsagt klar over dette, og har jo
7003 nå flere områder de begynner å bli veldig dominerende på. Den største,
7004 og mest problematiske er katalogtjenesten. Man får snart ikke tak i
7005 større løsninger som ikke krever en AD. Når man da har store enheter
7006 som drifter både kommunalt ansatte og skoler, så vil det være et
7007 stordriftargument å standardisere på en katalog tjeneste, og da har
7008 man ikke noe valg. Her er alle slike driftsenheter for små til å få
7009 gjort om på dette. Her burde konkurransemyndighetene kommet på
7010 banen. Men konkurransetilsynet i USA griper sjeldent (og ikke før det
7011 har gått veldig lang tid) inn i monopolsituasjoner så lenge
7012 monopolisten er et amerikansk firma, så da har vel ikke andre
7013 myndigheter så mye de skulle ha sagt....&lt;/p&gt;
7014
7015 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7016
7017 &lt;p&gt;Privat kjører jeg Debian på alle mine datamaskiner. Det gjør jeg
7018 også på min jobbmaskin. Vi har også 15-20 linux servere av typene
7019 SuSE, Debian, Redhat, CentOS m.m. Jeg bruker derfor mye fri
7020 programvare. Av enkelt programmer kan sikkert masse nevnes. Hvis vi
7021 skal begrense oss til daglig, så må jeg si: OpenOffice, Firefox,
7022 Kontact, Kopete, Amarok,
7023 &lt;a href=&quot;http://gramps-project.org/&quot;&gt;Gramps&lt;/a&gt;, Kate, ssh, bash,
7024 rsync, backuppc m.m.&lt;/p&gt;
7025
7026 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7027 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7028
7029 &lt;p&gt;Det er et godt spørsmål, som jeg har lurt på selv.&lt;/p&gt;
7030
7031 &lt;p&gt;Argumentene som ofte har vært brukt om at ting koster mindre holder
7032 ikke mål når man ser på hva som faktisk koster penger. Det er de
7033 ansatte som er en kostnadsdriver. Det vil si at hvis man har et system
7034 som den ansatte kan, så vil en kostnad på dette systemet kunne
7035 forsvares ganske mye ved at den ansatte gjør dette raskere og
7036 effektivt. Også uten å måtte eventuelt leie inn folk.&lt;/p&gt;
7037
7038 &lt;p&gt;Jeg syns det er viktigere å fokusere på prinsippet med å velge fri
7039 programvare, men det er også et felt hvor man fort møter lite
7040 forståelse blant de ansatte i skolen.&lt;/p&gt;
7041
7042 &lt;p&gt;Her må nok strategien fortsette å være at de sentrale myndighetene
7043 må sende tydelige signaler for hva de ønsker at offentlige enheter
7044 skal gjøre. Det var mye positivt på gang ang. dette for et par år
7045 siden. Både med eNorge og eKommune planene, men dette syns jeg har
7046 stoppet opp. En del av dette kan jo kanskje være usikkerheten som
7047 etter hvert har blitt, når man har sett kompleksiteten i de
7048 prosjektene som har blitt igangsatt. Det har også blitt noe usikkerhet
7049 i markedet ref. Sun, Oracle, Novell, Microsoft m.m. Samtidig har jo
7050 også de proprietære programleverandørene sørget for å endre sine
7051 lisenser slik at man uansett ikke slipper unna kostnaden til deres
7052 produkter, selv om man skulle velge alternativer. Da er det økonomiske
7053 argumentet, som jeg nevnte tidligere, spilt ganske godt ut over
7054 sidelinjen.&lt;/p&gt;
7055 </description>
7056 </item>
7057
7058 <item>
7059 <title>Skolelinux-intervju: Marius Kotsbak</title>
7060 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Marius_Kotsbak.html</link>
7061 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Marius_Kotsbak.html</guid>
7062 <pubDate>Sun, 10 Apr 2011 11:00:00 +0200</pubDate>
7063 <description>&lt;p&gt;Neste mann ut er Marius Kotsbak, styremedlem i
7064 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRISK&lt;/a&gt; og mangeårig
7065 bidragsyter i
7066 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-prosjektet.&lt;/p&gt;
7067
7068 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7069
7070 &lt;p&gt;Jeg er en systemutvikler/kybernetiker og jobber med dette til
7071 daglig. På fritiden tester jeg ut/bruker mye fri programvare, og
7072 bidrar med testing og utvikling når jeg ser stort nok behov for det og
7073 jeg har noe å bidra med.&lt;/p&gt;
7074
7075 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7076
7077 &lt;p&gt;Hmm, det er lenge siden, så det er nesten så jeg ikke husker. Jeg
7078 hadde vel hørt om prosjektet i media før en gjeng i Trondheim startet
7079 opp SPIST, Skolelinux-prosjektet i Sør-Trøndelag, hvor vi hjalp noen
7080 skoler i nærområdet med å installere Skolelinux og finne brukt
7081 IT-utstyr til disse. Det var moro å gjøre noe praktisk for å spre
7082 Skolelinux, og å se hvor fort gjort det var å sette opp utrangerte
7083 klientmaskiner og få disse opp som tynnklienter på helt nye datasaler
7084 på skolene, kun med kostnaden til servere.&lt;/p&gt;
7085
7086 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7087
7088 &lt;p&gt;Det er et system spesielt skreddersydd for drift av et stort antall
7089 klienter mot servere, og da spesielt i henhold til skolers behov. Det
7090 er enkelt og billig å installere og drifte, og det trenger ikke ny
7091 maskinvare for god ytelse.&lt;/p&gt;
7092
7093 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7094
7095 &lt;p&gt;Hardwarestøtten kunne vært bedre og i enda større grad
7096 installerbart rett ut av boksen. Distribusjonen har til tider hatt
7097 litt gammel programvare pga. at den følger Debian sine utgivelser.
7098 Kanskje man skulle vurdert en versjon basert på Ubuntu eller andre
7099 distribusjoner i tillegg?&lt;/p&gt;
7100
7101 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7102
7103 &lt;p&gt;Oi, det er ikke lite. Her er det jeg kommer på i farta. Jeg bruker
7104 Linux og Ubuntu, og på Ubuntu programene Firefox, Thunderbird,
7105 Chromium, Pidgin, Digikam, OpenOffice, Wireshark, git og irssi.
7106 Telefonen min er en Android, og der bruker jeg programmene K-9 Mail,
7107 OI Shopping list, Shuffle, ZXing, OI Notepad og ADW Desktop. På jobb
7108 bruker jeg JBoss, Eclipse, uCLinux for Blackfin, RCF-CPP, Qt, Maven,
7109 og boost-bibliotekene for C++.&lt;/p&gt;
7110
7111 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7112 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7113
7114 &lt;p&gt;En bør fokusere på totalkostnader inkludert driftsbehov,
7115 fleksibilitet, åpenhet og ikke låsing til en leverandør framfor sparte
7116 lisenskostnader, samt programvarens kvalitet og fortrinn, og at den
7117 fritt kan brukes på et ubegrenset antall PC-er, også hjemme hos
7118 elevene. En bør også forbedre den fri programvaren ved testing,
7119 bugrapportering og kodebidrag om man kan, og ikke anbefale programvare
7120 uten at man har forsikret seg at den har tilstrekkelig kvalitet,
7121 ellers kan man lett oppnå det motsatte. Tror en bør selge inn
7122 konseptet til fylkes-/statsnivå, kanskje med bidrag til
7123 utviklingsarbeid fra disse som alle landets skoler kan få glede
7124 av.&lt;/p&gt;
7125 </description>
7126 </item>
7127
7128 <item>
7129 <title>Skolelinux-intervju: Odin Hetland Nøsen</title>
7130 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Odin_Hetland_N_sen.html</link>
7131 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Odin_Hetland_N_sen.html</guid>
7132 <pubDate>Mon, 28 Mar 2011 13:30:00 +0200</pubDate>
7133 <description>&lt;p&gt;Mine bloggposter om Linux i skolene i Norge førte til at inspektør
7134 og ildsjel på Harestad skole tok kontakt og fortalte at de bruker
7135 Linux på sin skole, og lurte på om de kunne bidra til å gjøre
7136 fordelene kjent. Riktig nok bruker de ikke
7137 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; på denne skolen,
7138 men jeg synes dette er en god anledning til å gjøre flere fasetter
7139 rundt Linux-økosystemet kjent, og tok et lite intervju.&lt;/p&gt;
7140
7141 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7142
7143 &lt;p&gt;Mitt navn er Odin Hetland Nøsen og er en 70-modell. Jeg er bosatt i
7144 Stavanger og jobber nå på 9. året som undervisninginspektør på
7145 Harestad skole i Randaberg kommune (nabokommune til Stavanger).&lt;/p&gt;
7146
7147 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7148
7149 &lt;p&gt;I 2002 begynte daværende IKT-ansvarlige og jeg et arbeid på skolen
7150 med å gå over fra Win98 til... noe annet. Vi testet en rekke
7151 forskjellige løsninger, deriblant Skolelinux, men endte opp med
7152 RedHat. Skolelinux var den gang ikke modent for det vi ville ha. Jeg
7153 har siden fulgt jevnlig med på hva skolelinux holder på med, men har
7154 hele tiden vært bedre fornøyd med vår egen &quot;standardiserte&quot; løsning på
7155 RedHat/CentOS og Fedora. Vi snuser for tiden på Ubuntu som løsning på
7156 klientsiden.&lt;/p&gt;
7157
7158 &lt;p&gt;I dag har vi på skolen vår en større linux-løsning med 400 klienter
7159 som kjører en blanding av LTSP (tynnklient) og DRBL (tykk klient uten
7160 harddisk) med en masse tjenere på serverrommet. Vi drifter hele
7161 sulamitten selv med webtjener, eposttjener, webmail, filtjenere,
7162 virtuelle tjenere osv. Og IT-ansvarlig har en 80% stilling som
7163 IT-ansvarlig - og så er han KoH-lærer i de resterende 20% :-)&lt;/p&gt;
7164
7165 &lt;p&gt;Du kan få en ide om hva vi holder på med om du går inn på
7166 &lt;a href=&quot;http://www.gnuskole.no/&quot;&gt;http://www.gnuskole.no/&lt;/a&gt;.&lt;/p&gt;
7167
7168 &lt;p&gt;For å ta brodden av frykten for at ildsjeler gjør skolen sårbar om
7169 ildsjelene falle fra, har jeg forsikret kommunen og skolesjefen i
7170 Randaberg om at det finnes godt kommersielle tjenester vi kan benytte
7171 oss av - om det skulle bli nødvendig. Vi er tre stykker i kommunen som
7172 nå har &lt;strong&gt;god&lt;/strong&gt; linux-kompetanse ift. å drifte et større
7173 system. IT-avdelingen i kommunen vil ikke ta på oss med ildtang -
7174 selv om vi nok har større IT-kompetanse mot linux enn det de selv har
7175 mot windows (de kjøper en &lt;strong&gt;masse&lt;/strong&gt; konsulenttjenester
7176 fra ErgoGroup).&lt;/p&gt;
7177
7178 &lt;p&gt;I kvantitet er Harestad og Grødem skole tilsammen et større
7179 IT-system enn resten av Randaberg kommune + Kvitsøy og Rennesøy, som
7180 kommunen også har driftsansvar for. Vi har som sagt rundt 800
7181 maskiner, mens kommunen med sitt driftsansvar har ansvar for rundt 500
7182 maskiner. Det er selvfølgelig litt forskjell i hvor kritiske
7183 tjenestene våre er, men det gir allikevel et litt rart bilde når
7184 IT-avdelingen overhode ikke er interessert i å snakke med oss om
7185 hvordan vi gjør ting :-)&lt;/p&gt;
7186
7187 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7188
7189 &lt;p&gt;Fra linux-perspektivet (ikke bare Skolelinux) er det en fordel av
7190 systemet er basert på fri programvare - og dermed fritt i ordets mange
7191 betydninger. Det er alt vi trenger: stabilt, relativt enkelt å drifte
7192 (tross alt - et større windowssystem er ikke enkelt å holde live det
7193 heller), rimelig i innkjøp og drift, og sist, men ikke minst, det er
7194 moderne for sluttbruker! Linux, i sine mange varianter,
7195 &lt;strong&gt;ser&lt;/strong&gt; nytt ut, fordi det hele tiden blir
7196 oppdatert. Derfor lever systemet opp til hvordan elever forventer at
7197 et moderne GUI skal være (i motsetning til WinXP :-).&lt;/p&gt;
7198
7199 &lt;p&gt;Vi var veldig pragmatiske da vi begynte med linux i skolen. Det var
7200 billig, det fungerte og kunne bruke alle de gamle windows-maskinene
7201 som &quot;nye&quot; tynne klienter. I dag er vi mer bevisste fri
7202 programvare-tilhengere. Vi har oppdaget hva det er - og vi liker
7203 det!&lt;/p&gt;
7204
7205 &lt;p&gt;En av de &lt;strong&gt;store&lt;/strong&gt; fordelene med fri programvare er at
7206 vi kan installere tjenester vi ønsker å tilby brukerne våre - uten å
7207 måtte tenke på om vi har råd til lisensene (fordi det er ingen). Alt
7208 vi setter i produksjon er ut i fra brukernes behov og vår kapasitet
7209 til å drifte dem. Vi skreddersyr tjenestene etter behovet og dermed
7210 trenger vi ikke ende opp med å kjøpe en pakke der vi egentlig bare var
7211 interessert i en liten del av den.&lt;/p&gt;
7212
7213 &lt;p&gt;Bruk av linux frigjør ikke økonomiske midler, fordi midlene til IKT
7214 i skole er for få i utgangspunktet - men vi får så
7215 &lt;strong&gt;mye&lt;/strong&gt; mer igjen for dem når vi bruker en linux-løsning
7216 fremfor en windows-løsning. I praksis ser vi at vi måtte ut med det
7217 dobbelte på budsjettet vårt om vi skulle hatt en tilsvarende
7218 windows-løsning, som det vi i dag drifter med linux.&lt;/p&gt;
7219
7220 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7221
7222 &lt;p&gt;Ikke all pedagogisk programvare er tilgjengelig. Det er en del
7223 programvare i skolen som er laget med utviklerverktøy som bare virker
7224 i windows, f.eks. Drillpro, LingDys/LingWrite. Det er også
7225 &quot;programmer&quot; som bare virker om du har tilgang til Microsoft Office,
7226 f.eks. AskiRaski.&lt;/p&gt;
7227
7228 &lt;p&gt;Vi sliter også litt med at video-codecer ikke alltid er like lett å
7229 få opp å gå på klientene. Det er alltid en eller annen videosnutt fra
7230 nrk.no som ikke er så samarbeidsvillig, uansett mediaplayer.&lt;/p&gt;
7231
7232 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7233
7234 &lt;p&gt;Alt :-) På skolen bruker vi det som finnes og som er nyttig. Det vi
7235 bruker mest er Firefox (jobber med Chrome, fordi det er
7236 &lt;strong&gt;mye&lt;/strong&gt; raskere med Flash enn Firefox), OpenOffice (skal
7237 over til LibreOffice), GIMP osv. Standardpakken av
7238 sluttbrukerprogrammer.&lt;/p&gt;
7239
7240 &lt;p&gt;På tjenernivå bruker vi OpenWebMail (skal over til Zimbra), Exim
7241 osv.&lt;/p&gt;
7242
7243 &lt;p&gt;Personlig bruker jeg de fleste programmer over flere plattformer,
7244 men jeg har lagt meg til en vane å prioritere bruken av fri
7245 programvare også i Windows 7 og OSX.&lt;/p&gt;
7246
7247 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7248 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7249
7250 &lt;p&gt;Jeg er langt i fra sikker. For det første handler det mye om at
7251 IKT-avdelingen i kommunen ofte er de som styrer hva som er IKT på
7252 skolene - og de liker å bruke avtalene med Microsoft, som de garantert
7253 har fra før. Dessuten - Select 6-avtalen til skolene gjør Microsoft
7254 skvettbillig.&lt;/p&gt;
7255
7256 &lt;p&gt;Vi la vekt på effektiv drift av systemet - og at vi kunne øke
7257 antall maskiner uten å måtte øke budsjett for utstyr eller personell
7258 særlig mye, enn om vi hadde gått for en Microsoft-løsning. I praksis
7259 ser vi at en ren linux-installasjon driftes til halve prisen av en
7260 Microsoft-løsning.&lt;/p&gt;
7261
7262 &lt;p&gt;Vi har i praksis også sett at det lærerne (og elevene) liker er at
7263 vi tilbyr &lt;strong&gt;veldig&lt;/strong&gt; mange tjenester som ikke er så
7264 vanlige i en Microsoft-løsning. Det er ikke så vanlig at
7265 &lt;strong&gt;elevene&lt;/strong&gt; også har epost, hjemmekontor osv. Det har vi
7266 også brukt som et vellykket argument mot Microsoft.&lt;/p&gt;
7267
7268 &lt;p&gt;Den beste måten er selvfølgelig at noen bare bestemmer
7269 det. Problemet er å få dem som har makt til å bestemme det til faktisk
7270 å gjøre det ;-)&lt;/p&gt;
7271 </description>
7272 </item>
7273
7274 <item>
7275 <title>Skolelinux-intervju: Astri Sletteng</title>
7276 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Astri_Sletteng.html</link>
7277 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Astri_Sletteng.html</guid>
7278 <pubDate>Sun, 27 Feb 2011 12:50:00 +0100</pubDate>
7279 <description>&lt;p&gt;En dame som har bidratt lenge til fri programvare i skoleverket og
7280 i foreningen som organiserer skolelinux-utviklersamlinger,
7281 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRISK&lt;/a&gt;, er neste
7282 intervjuoffer. Det er en glede å her presentere en lærer fra Håkvik.&lt;/p&gt;
7283
7284 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7285
7286 &lt;p&gt;Jeg heter Astri Sletteng. Jeg er lærer og IKT veileder ved Håkvik
7287 skole i Narvik kommune. Min bakgrunn når det gjelder IKT: Av formell
7288 utdannelse har jeg lærerutdanning, Master i skoleledelse og IKT for
7289 lærere. Har jobba som IKT veileder siden 2002.&lt;/p&gt;
7290
7291 &lt;p&gt;Det viktigste for meg som IKT veileder er å få fundamentert den
7292 5. basisferdigheten, digital kompetanse ved skolen min på en god måte
7293 slik at hele skolesamfunnet tar i bruk IKT i alle fag. Dette arbeidet
7294 gjøres i nært samarbeid med skolens ledelse.&lt;/p&gt;
7295
7296 &lt;p&gt;Min viktigste jobb som IKT veileder er å være motivator og pådriver
7297 i IKT arbeidet ved skolen.&lt;/p&gt;
7298
7299 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7300
7301 &lt;p&gt;Jobber i en kommune hvor vi satser på Fri programvare. I 2004 ble
7302 det gjort et politisk vedtak om at vi skulle innføre Skolelinux ved
7303 alle skolene i kommunen. Jeg har dermed en god del erfaring med
7304 Skolelinux, samt annen fri programvare som Open Office, Joomla, Moodle
7305 etc.&lt;/p&gt;
7306
7307 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7308
7309 &lt;p&gt;Siden vi jobber med åpen kildekode kan vi få programmene og
7310 produktene tilpasset vår bruk. Det er jo heller ikke en ulempe at
7311 skolen kommer bedre ut økonomisk, men først og fremst er det viktig
7312 for oss at vi har digitale systemer som gjør at vi kan følge
7313 læreplanen i alle fag. Det syns jeg at vi kan gjøre gjennom
7314 Skolelinux.&lt;/p&gt;
7315
7316 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7317
7318 &lt;p&gt;Skolen er avhengige av å ha folk på IT avdelinga i kommunen som kan
7319 drive support, og være tilgjengelige når vi trenger hjelp. Det er en
7320 ulempe at ikke alle på denne avdelingen nødvendigvis er god på
7321 Linux.&lt;/p&gt;
7322
7323 &lt;p&gt;Vi har også noen utfordringer når det kommer til spesielle
7324 programmer som enkelte elever er avhengige av ? og som ikke er
7325 plattform uavhengige. Her har vi i Friprog-verden, men også
7326 departement en jobb å gjøre.&lt;/p&gt;
7327
7328 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7329
7330 &lt;p&gt;Skolen vår bruker Skolelinux, Open Office, Iceweazel (Mozilla),
7331 VLC, Tux paint, Scribus, FreeMind, GIMP, digiKam, Ksnapshot, GeoGebra,
7332 Moodle (innført på alle klassetrinn + som et administrativt verktøy)
7333 og Joomla som hjemmeside.&lt;p&gt;
7334
7335 &lt;p&gt;Det er de jeg kommer på i farten. I tillegg har vi Smartboard
7336 installert på server, men det regnes vel ikke som fri programvare?&lt;/p&gt;
7337
7338 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7339 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7340
7341 &lt;p&gt;Først og fremst trenger skolen oppetider på sine datasystemer. Syns
7342 også at det at vi kan få tilpasset plattform og systemer til vår bruk
7343 er en god strategi å bruke.&lt;/p&gt;
7344 </description>
7345 </item>
7346
7347 <item>
7348 <title>Skolelinux-intervju: Rubén Romero y Cordero</title>
7349 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Rub_n_Romero_y_Cordero.html</link>
7350 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Rub_n_Romero_y_Cordero.html</guid>
7351 <pubDate>Wed, 16 Feb 2011 12:00:00 +0100</pubDate>
7352 <description>&lt;p&gt;Styret i foreningen som organiserer skolelinux-utviklersamlinger,
7353 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;FRISK&lt;/a&gt;, er fullt av
7354 flinke folk. Denne gangen har jeg fått et ferskt styremedlem som
7355 kommer fra Ubuntu-miljøet i tale.&lt;/p&gt;
7356
7357 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7358
7359 &lt;p&gt;Rubén Romero y Cordero, 81-modell, deltidspappa (50%) for en jente
73606 år. Jobber i Oslo som Global Sales Executive hos Varnish Software
7361 og til daglig har jeg kontakt med kunder fra hele verden. Min
7362 forkjærlighet for fri programvare har gjort at jeg har nå flere års
7363 erfaring med salg av slike løsninger (bl.a. fra Redpill Linpro og
7364 Freecode) og mye innsikt og kunnskap om det globale IT-markedet.
7365 Ellers er jeg involvert i flere prosjekter bl.a. er jeg Ubuntu
7366 Community medlem, kontaktpersonen for Ubuntu Norge og driveren av
7367 SpreadUbuntu marketing prosjektet og nå fersk styremedlem i FRISK. Jeg
7368 har brukt GNU/Linux siden 1997.&lt;/p&gt;
7369
7370 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7371
7372 &lt;p&gt;Som Debian bruker siden slutten av 90-tallet var det uunngåelig å
7373 ikke komme bort i Skolelinux. Dette var vel i slutten av 2001 når jeg
7374 var student ved UiO. Flere år senere fikk jeg lastet og testet Venus
7375 (Skolelinux 1.0) på release dagen.&lt;/p&gt;
7376
7377 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7378
7379 &lt;p&gt;Fri programvare bygges sten for sten i det åpne, slik at koden og
7380 prosessen den lages på kan gjennomskues av andre enn de som har laget
7381 det. Det er et vitenskapelig og gjennomsiktig måte å lage programvare
7382 på.&lt;/p&gt;
7383
7384 &lt;p&gt;Skoler i vårt samfunn skal være steder hvor vitenskapelig kunnskap
7385 deles til alle. I dag har vi ikke et vitenskapelig tilnærming til
7386 hvordan programvaren som brukes på skolen lages. Skolelinux bringer
7387 inn at slik tilnærming i skoleverkets klasserom, siden
7388 operativsystemet er en åpent platform som gir skolene muligheten til å
7389 dra nytte av programvare som er laget av tusenvis av mennesker verden
7390 rundt og som gir elevene så vel som lærerne muligheten til å bruke,
7391 dele, forandre og forbedre OSet sitt uten begrensninger. I den
7392 forbindelsen representerer Skolelinux også konkrete resultater utfra
7393 samhandling på tvers av grenser.&lt;/p&gt;
7394
7395 &lt;p&gt;Når det gjelder de tekniske fordelene av Skolelinux er jeg sikker
7396 på at andre enn meg har allerede beskrevet disse bedre enn det jeg
7397 kan. Men jeg kan likevel tilføye noe: Skolelinux som sådan er en
7398 community-drevet operativsystemplatform. Som i ethvert
7399 community-prosjekt har alle Skolelinux brukere muligheten til å
7400 påvirke retning av prosjektet og resultatet som gjenspeiles i
7401 programvaren. Dette kommer sjeldent frem og jeg mener at det er noe
7402 som burde fokuseres mer på.&lt;/p&gt;
7403
7404 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7405
7406 &lt;p&gt;De største ulempene er:&lt;/p&gt;
7407
7408 &lt;ul&gt;
7409 &lt;li&gt;Mangel på kompetanse&lt;/li&gt;
7410 &lt;li&gt;Mangel av administrative verktøy som kunne hjelpe lokale IT
7411 avdelinger å bruke Skolelinux til mer enn bare en tjener for
7412 terminalklienter. Et eksempel: Zentyal sin web-dashboard.&lt;/li&gt;
7413 &lt;/ul&gt;
7414
7415 &lt;p&gt;Bedre og mer intuitive administrative verktøy kunne løst deler av
7416 problemet, men det er unektelig at ved bruk av Skolelinux må
7417 IT-personalet vite hva de gjør for å få ting gjort riktig, eller i det
7418 hele tatt. Med andre platformer er kompetansen enklere tilgjengelig og
7419 løsningene kan fungere på en tilfredstillende, om ikke riktig
7420 måte.&lt;/p&gt;
7421
7422 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7423
7424 &lt;p&gt;Har brukt GNU/Linux utelukkende sommitt skrivebord OS siden 2000. I
7425 dag bruker jeg Ubuntu og gjør det meste med friprogramvare verktøyene
7426 som er tilgjengelige der. Med over 20.000 programmer å velge mellom er
7427 dette mer enn nok for de fleste brukerne.&lt;/p&gt;
7428
7429 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7430 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7431
7432 &lt;p&gt;Opplysning og pragmatikk. Vi prøver å løse problemer med bruk av
7433 programvare. De fleste utfordringene skolene har på IKT-siden kan
7434 løses ved hjelp av friprogramvareverktøy i dag. Det som trenges er
7435 opplysning, kunnskap og kompetanse.&lt;/p&gt;
7436 </description>
7437 </item>
7438
7439 <item>
7440 <title>Skolelinux-intervju: Morten Amundsen</title>
7441 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Morten_Amundsen.html</link>
7442 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Morten_Amundsen.html</guid>
7443 <pubDate>Sun, 23 Jan 2011 12:00:00 +0100</pubDate>
7444 <description>&lt;p&gt;Denne gangen er det Tromsøkontoret til Friprog-senteret, og nyvalgt
7445 styremedlem i &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;foreningen
7446 FRISK&lt;/a&gt; jeg har fått i tale i min intervjuserie med
7447 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-folk.&lt;/p&gt;
7448
7449 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7450
7451 &lt;p&gt;Jeg heter Morten Amundsen og jobber i
7452 &lt;a href=&quot;http://www.friprog.no/&quot;&gt;Friprog.no&lt;/a&gt;, men er for tiden leid
7453 ut til &lt;a href=&quot;http://www.bredbandsfylket.no/&quot;&gt;Bredbåndsfylket
7454 Troms&lt;/a&gt; der jeg jobber med ett prosjekt som heter
7455 &quot;&lt;a href=&quot;http://www.bredbandsfylket.no/skolefjoela.157417.no.html&quot;&gt;Skolefjøla&lt;/a&gt;&quot;
7456 Vi ser på en åpen løsning som integrerer eksisterende lukkete
7457 løsninger sammen med fri programvare. Målet er å gi elever og lærere
7458 en plattform som de kan tilpasse utfra behov.&lt;/p&gt;
7459
7460 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7461
7462 &lt;p&gt;Skolelinux har jeg møtt ved flere anledninger opp gjennom åra, både gjennom
7463 entusiastiske skolelinuxbrukere og skeptiske &quot;forståsegpåere&quot; :-)&lt;/p&gt;
7464
7465 &lt;p&gt;Jeg husker en leverandør av et stort OS for noen år siden mente at
7466 Skolelinux var kun for hackere og nerder og at ingen seriøse skoler
7467 kunne ta dette i bruk. Heldigvis er kunnskapen større nå og
7468 skikkelige &quot;IT-folk&quot; søker alltid å utvide sin kunnskap.
7469
7470 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7471
7472 &lt;p&gt;Ja det er mange fordeler. Uavhengighet, stabilitet, åpenhet, standarder
7473 osv. Tror det er viktig at man ikke begrenser mulighetene på den plattformen
7474 elevene skal jobbe.&lt;/p&gt;
7475
7476 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7477
7478 &lt;p&gt;Det største hinderet er det vi opplever på andre områder rundt
7479 fri programvare, nemlig kunnskap. For mange er det trygt å velge det vi
7480 alltid har valgt. Fordi leverandørene rundt oss sitter på den kunnskapen og
7481 de vi støtter oss på har den samme. Hvis vi klarer å riste løs litt og
7482 glemme gamle kriger mellom operativsystemer og leverandører, men sette ned
7483 hva som er viktig og velge ut fra det, så hadde man kanskje kommet ut med
7484 litt andre resultat. Jeg tror IT-folk er konservative og velger tradisjonelt
7485 og det er synd.&lt;/p&gt;
7486
7487 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7488
7489 &lt;p&gt;Jeg bruker Ubuntu, Android, Jolicloud, Open Office, Zimbra, Picasa
7490 og Firefox samt en bråte med tjenester som er webbasert. Det eneste
7491 som er betalingslisens for er OSX. Ser at jeg jobber mer og mer i
7492 skyen og setter pris på alt jeg slipper egen klient til. Derfor er
7493 jeg veldig sjarmert av små kjappe operativsystemer som krever minimalt
7494 av maskinvaren.&lt;/p&gt;
7495
7496 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7497 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7498
7499 &lt;p&gt;Tror en blanding av krav og informasjon er veien å gå. Krav om
7500 sikkerhet, oppetid og åpne standarder. Informasjon om muligheter og
7501 alternativer. Her har leverandører, IT-avdelinger og pedagoger en vei
7502 å gå sammen. Det er til slutt LÆRING det dreier seg om, og da må man
7503 få mest mulig læring for pengene man har.&lt;/p&gt;
7504 </description>
7505 </item>
7506
7507 <item>
7508 <title>Skolelinux-intervju: Sturle Sunde</title>
7509 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Sturle_Sunde.html</link>
7510 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Sturle_Sunde.html</guid>
7511 <pubDate>Wed, 19 Jan 2011 12:00:00 +0100</pubDate>
7512 <description>&lt;p&gt;Denne gang har jeg fått tak i en mangeårig unix-mann som etter
7513 mange år ved Universitetet i Oslo, der jeg først traff ham, har
7514 flyttet tilbake til vestlandet, og der bidratt til å revitalisere
7515 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;-oppsettet i
7516 Florø.&lt;/p&gt;
7517
7518 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7519
7520 &lt;p&gt;Sturle Sunde, ansvarleg for skulenettet i Flora kommune. Eg driv,
7521 vidareutviklar og er andrelinje brukarstøtte for datanettet ved
7522 skulane i Flora kommune. 10 skular og meir enn 700 maskiner med
7523 Linux, medrekna tynnklientar. Tidlegare jobba eg i mange år med
7524 unix-drift ved Universitetets senter for informasjonsteknologi ved
7525 Universitetet i Oslo.&lt;/p&gt;
7526
7527 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7528
7529 &lt;p&gt;Det er vanskeleg å svare konkret på. Eg har drive med Unix og Linux i
7530 alle år, og Skulelinux er eit godt kjent prosjekt i miljøet. Det var
7531 først i 2008, då eg tok til i min noverande jobb, at eg fekk bruk for
7532 Skulelinux for alvor.&lt;/p&gt;
7533
7534 &lt;p&gt;Jobben min skulle vere drift av eit nytt skulenett i Flora kommune,
7535 levert av eit firma eg ikkje vil reklamere for. Systemet skulle vere
7536 ferdig levert i september året før. Dette viste seg å ta mykje lenger
7537 tid, og i haustferien 2008 hadde dei endå ikkje klart å få opp ei
7538 fungerande løysing. Situasjonen var prekær for den største skulen i
7539 kommunen med meir enn 500 elevar på ungdomssteget. Skulen hadde brukt
7540 Skulelinux før, og var tilfredse med det. No hadde dei vore utan
7541 fungerande datasystem i nesten eit år. Difor fekk eg opp ein ny tenar
7542 utanfor prosjektet og installerte Skulelinux på den. Etter litt
7543 justering av konfigurasjonen med god hjelp av #skolelinux på IRC, var
7544 den nye tenaren oppe og gjekk med både tynne og halv-tjukke klientar.
7545 Autentisering gjekk mot det nye systemet, slik at elevar og lærarar
7546 framleis har same brukarnamn og passord over alt. Dette berre
7547 fungerte, og vi bestemte oss for å erstatte delar av løysinga vi
7548 skulle få levert med Skulelinux.&lt;/p&gt;
7549
7550 &lt;p&gt;Det høyrer med til historia at det nye systemet eg skulle drive frå
7551 januar 2008 endå ikkje er ferdig levert. Dei jobbar med saka, seier
7552 dei, og har von om å fullføre leveransen i løpet av 2011.&lt;/p&gt;
7553
7554 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7555
7556 &lt;p&gt;Det er veldig mange. Eg skal ta nokre få.&lt;/p&gt;
7557
7558 &lt;p&gt;Den viktigaste fordelen er at det igrunn berre er ei maskin å passe
7559 på, og det er tenaren. Med andre løysingar har ein gjerne programvare
7560 og anna som skal vedlikehaldast på kvar enkelt maskin. Med Skulelinux
7561 kan alle feil rettast og alle program oppgraderast på alle maskiner
7562 samstundes ved å gjere endringa som må til på tenaren. Eg kan sitje
7563 på kontoret og passe på alle tenarane i kommunen derifrå.&lt;/p&gt;
7564
7565 &lt;ul&gt;
7566
7567 &lt;li&gt;Tynne klientar gjer det mogleg å bruke eldre utstyr lenge, so lenge
7568 tenaren er sterk nok. Ein liten tenar med eit par halv-moderne CPUar
7569 og 2 GiB RAM held lenge for eit typisk klasserom med 30 tynnklientar,
7570 og det er lett å utvide med fleire.
7571
7572 &lt;li&gt;Halvtjukke klientar gjer det mogleg å utnytte kapasiteten i litt
7573 nyare maskiner betre, og avlaste tenaren. Ingenting vert installert
7574 lokalt på desse heller, og harddisken kan gjerne koblast frå. Gode
7575 halvtjukke klientar kan kjøpast brukt for under 1000-lappen, og det er
7576 heile kostnaden. Ingen lisensar eller anna på toppen, og det er ikkje
7577 krav til kraftigare tenar heller.
7578
7579 &lt;li&gt;Det er Linux. Vi har ikkje noko kluss med drivarar, dei berre er
7580 der. Heller ikkje med virus, dei finst i realiteten ikkje. Eller med
7581 elevar som klussar med installert programvare, for dei klarar ikkje å
7582 øydeleggje for nokon andre enn seg sjølve.
7583
7584 &lt;/ul&gt;
7585
7586 &lt;p&gt;Skulelinux er lagt opp til å vere veldig lett å installere rett ut
7587 av boksen på ein heil skule av ein interessert lærar. Det er ofte ei
7588 god løysing for skulen. Å ha nokon til stades som kjenner systemet og
7589 kan forklare enkle ting eller løyse problem der og då, er uvurderleg
7590 viktig for ein stressa lærar fem minutt før det ringer inn.&lt;/p&gt;
7591
7592 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7593
7594 &lt;p&gt;All den ferdige konfigurasjonen gjer det tungvint å tilpasse
7595 Skulelinux til eit system som skal fungere saman med mange andre
7596 installasjonar i eit felles datanett for skulane i ein kommune. Det
7597 heile er prekonfigurert for ein skule, og utviding til mange skular
7598 med eigne tenarar er ikkje berre enkelt.&lt;/p&gt;
7599
7600 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7601
7602 &lt;p&gt;Eg brukar mest alle små hjelpeprogram som føl med operativsystemet,
7603 samt scriptspråket perl. Elles er Firefox/Iceweasel, Gnome-terminal
7604 og ssh i kontinuerleg bruk. Av Linux-distribusjonar brukar eg både
7605 Debian, Ubuntu, SuSE og RedHat dagleg. Eg prøvar å finne det verktyet
7606 som passar best til kvar del av jobben.&lt;/p&gt;
7607
7608 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7609 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7610
7611 &lt;p&gt;Det er to målgrupper ein må sikte mot. Det eine er alle skulane som
7612 manglar eller har eit lite tilfredsstillande opplegg i dag, og ikkje
7613 har råd til å kjøpe noko nytt og blankpussa opplegg. Der er det om å
7614 gjere å gjere det enkelt for skulane å finne Skulelinux, og gjere det
7615 enkelt for dei å få hjelp til installasjon på skulen. Gjerne med
7616 lokale kontaktpersonar. Her er det dugnadsinnsats som må til, for
7617 desse skulane har ikkje råd til å betale for dette.&lt;/p&gt;
7618
7619 &lt;p&gt;Den andre og kanskje viktigare målgruppa er dei meir eller mindre
7620 profesjonelle kundane. Alle store offentlege innkjøp, inkludert
7621 innkjøp av nytt datasystem for skular, må ut på offentleg anbod.
7622 Offentlege anbod er mykje meir lukka enn dei gjev inntrykk av, og både
7623 regelboka og boka med triks for å sminke tilbodet er tjukk. Det er
7624 vanskeleg å komme inn utan eit solid salsapparat i ryggen. Kanskje
7625 Skulelinux skulle prøve aktivt å få seg eit partnarskap med eit av dei
7626 store som gjerne vil sterkare inn på den offentlege IT-marknaden?
7627 Nokon som kjenner triksa og har krefter til å ta opp kampen mot både
7628 dårlege anbod og Rudolf Blostrupmoen IT AS. Leveranse til skulane i
7629 ein kommune er ein god måte å få ein fot inn døra som leverandør til
7630 ein lukrativ kommunemarknad som kjøper alle tenester. Ta kontakt med
7631 nokon som er passeleg store og ikkje er Microsoft-partnar, og fortell:
7632 «Vi har eit ferdig produkt som du kan selje. Nei vi skal ikkje ha for
7633 det. Du kan gjerne gjere kva du vil med det, berre vi får lov til å
7634 hjelpe deg. Målgruppa er alle kommunar, og det er noko dei vil ha.
7635 Det er eit godt produkt, brukt av mange og godt likt.»&lt;/p&gt;
7636 </description>
7637 </item>
7638
7639 <item>
7640 <title>Skolelinux-intervju: Embrik Kaslegard</title>
7641 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Embrik_Kaslegard.html</link>
7642 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Embrik_Kaslegard.html</guid>
7643 <pubDate>Sun, 16 Jan 2011 12:00:00 +0100</pubDate>
7644 <description>&lt;p&gt;Neste ut i min intervjuserie med folk i
7645 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinuxprosjektet&lt;/a&gt; er
7646 lærer, mangeårig bidragsyter på epostlistene og tidligere
7647 Skolelinux-administrator på en skole i Hemsedal.&lt;/p&gt;
7648
7649 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7650
7651 &lt;p&gt;Embrik Kaslegard, 1964-modell, fire barn (7-20 år). Begynte som
7652 lærer i 1989 - har hatt IKT-ansvar siden første året i jobb. Har
7653 jobbet som lærer/IKT-ansvarlig uavbrutt siden 1989. Jobbet med
7654 Skolelinux fra 2004 til 2010. Nå har jeg fått ny arbeidsplass og er
7655 40% lærer og 60% IKT med Windows XP, Win2003 server og et regionalt
7656 IKT-regime som legger premissene og begrensingene for hva vi kan gjøre
7657 på skolen.&lt;/p&gt;
7658
7659 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7660
7661 &lt;p&gt;Jeg leste en artikkel om en dugnadsinstallasjon av Skolelinux på en
7662 skole på Jæren et sted. Tanken om dugnad og frihet appellerte til
7663 meg. Da vi skulle bygge ny skole var det en del vi måtte spare på,
7664 fordi vi beveget oss mot en kostnadssprekk. Kabling og investering i
7665 PC-er var en av tingene vi sparte på. Derfor kjøpe vi 72 pc-er for 390
7666 pr stk. En filtjener og en applikasjonsserver.&lt;/p&gt;
7667
7668 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7669
7670 &lt;p&gt;Fordelen er at så mye er satt opp fra starten. I tillegg er det
7671 tydelig at pakka er laga for skoleverket. Brukerne har egne
7672 skrivebord, tilgang på mange gode verktøyprogrammer. Vi slipper å
7673 tenke på virus. Brukerne har ikke mulighet til å ødelegge
7674 klientoppsett, men har gode muligheter til å endre eget oppsett. Dette
7675 tror jeg er inspirerende og kjekt for mange brukere. Mappestrukturen
7676 er ferdig og det er &quot;enkelt&quot; å designe lokale mappestrukturer via
7677 skeleton. Noen av oss i skoleverket mener skolen skal være en
7678 &quot;mot-kultur&quot;. Da er Skolelinux et av valgene man kan ta. Et annet er å
7679 spise på indisk restaurant i stedet for Mc Donald&#39;s når vi er på bytur
7680 osv.. Ordene deling, frihet, dugnad osv er positive ord i
7681 skoleverket. Det er viktig at elevene blir bevisst dette.&lt;/p&gt;
7682
7683 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7684
7685 &lt;p&gt;Kompabiliteten er selvsagt et problem, selv om det er mindre nå enn
7686 før. For IKT-personer på skolene som skal drifte dette er det
7687 problematisk med kommandoer i terminalen. I tillegg er det alt for
7688 mange programmer i Skolelinux som ikke blir brukt. Jeg tror
7689 Skolelinux er tjent med å tone ned begrepet pedagogisk programvare.
7690 Slik jeg ser det finnes ikke denne kategorien programmer lengre slik
7691 de gjorde før, som frittsående programmer som installeres på en
7692 datamaskin eller på serveren. Det finnes en del spesialpedagogiske
7693 programmer, som Textpilot, LingDys, LingRight, AskiRaski, Ny i Norge
7694 osv. Men dette er programmer for enkelt-elever eller små grupper av
7695 elever. Det som bør være fokus er at alle undervisningsressurser som
7696 lages for nettet skal være nettleseruavhengig.&lt;/p&gt;
7697
7698 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7699
7700 &lt;p&gt;OpenOffice bruker jeg til vanlig kontorarbeide. VLC bruker jeg som
7701 videoavspiller og av og til streaming av film. Gimp bruker jeg i
7702 undervisningen til bildemanipulering. Firefox og Chrome er mine
7703 favoritt-nettlesere. Firefox har lenge vært førstevalget mitt, nå
7704 bruker jeg mest Chrome. Opplever den som raskere og smidigere enn
7705 Firefox. Ubuntu bruker jeg som dualboot på jobb-maskinen min i
7706 tillegg til at alle PCer hjemme har en eller annen Ubuntu-distribusjon
7707 installert. Jeg bruker Clonezilla på Ubuntu 10.04 til kloning av
7708 datamaskiner på jobb. Det er selvsagt en haug andre frie programmer
7709 jeg bruker men jeg bruker dem ikke daglig. Jeg kan ramse opp:
7710 recordmydesktop, cinelerra, acidrip, soundjuicer, audacity, NX
7711 (no-machine), Kino, Rythmbox...&lt;/p&gt;
7712
7713 &lt;p&gt;&lt;strong&gt;Hvilken strategi tror du er den rette å bruke for å få
7714 skoler til å ta i bruk fri programvare?&lt;/strong&gt;&lt;/p&gt;
7715
7716 &lt;p&gt;Jeg tror oppsøkende virksomhet er den rette strategien.
7717 Ressurspersoner gjør avtaler med rådmenn, skolesjefer, rektorer. Det
7718 er slik konkurrentene gjør det. Fokuset i slike samtaler bør være
7719 kost-nytte. Dersom personer med økonomisk ansvar ser at de kan få
7720 like godt tilbud til mindre utgifter, tror jeg det er mulighet til å
7721 få innpass. Dersom de også kan få konkrete tilbud på drift i slike
7722 samtaler, vil de kanskje bli litt mer interesserte i hvor mye penger
7723 som faktisk går til IKT i skolene. Det er også viktig at vi ikke
7724 firer for mye på krav til datamaskiner. Det er flott at Skolelinux
7725 går på &quot;utrangert&quot; utstyr, men dette bør bare presenteres som et
7726 alternativ. Skolelinux-installasjoner med utrangert utstyr er ikke å
7727 foretrekke dersom man kan unngå det. Det skaper ikke entusiasme hos
7728 brukerne (elever og lærere) når de bruker gamle datamaskiner som går
7729 tregt. Det er kjempefint med skoler som har kommet seg frem til
7730 Skolelinux og fri programvare av seg selv, men de lever på nåde.
7731 Slike valg må fundamenteres hos skoleeier.&lt;/p&gt;
7732
7733 &lt;p&gt;Oppdatering 2011-01-16 22:40: Oppdatert svarene for de tre siste
7734 spørsmålene litt mer tekst fra Embrik.&lt;/p&gt;
7735 </description>
7736 </item>
7737
7738 <item>
7739 <title>Skolelinux-intervju: Viggo Fedreheim</title>
7740 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Viggo_Fedreheim.html</link>
7741 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Viggo_Fedreheim.html</guid>
7742 <pubDate>Wed, 12 Jan 2011 12:00:00 +0100</pubDate>
7743 <description>&lt;p&gt;Jeg fortsetter min intervjuserie med folk i
7744 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinuxprosjektet&lt;/a&gt;. Denne
7745 gang er det en av folkene som har vært med lenge og som har tatt i
7746 bruk Skolelinux på alle skolene i Narvik kommune som skal i ilden.
7747 Han er styremedlem i
7748 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;foreningen
7749 FRISK&lt;/a&gt;.&lt;/p&gt;
7750
7751 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7752
7753 &lt;p&gt;Mitt navn er Viggo Fedreheim, og jeg er pedagogisk og teknisk
7754 IKT-veileder for alle skoler i Narvik kommune. Jeg drifter totalt 17
7755 servere basert på Skolelinux og Debian. Jeg holder i tillegg noen kurs
7756 mellom all driftingen. For tiden arbeider jeg med en sentral
7757 LDAP-tjener for alle skoleservere samt våre Moodle- og
7758 Joomla-installasjoner.&lt;/p&gt;
7759
7760 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7761
7762 &lt;p&gt;Gjennom en eller annen nettavis i 2001 der var det skrevet om
7763 Skolelinux. Artikkelen ga meg lyst til å prøve ut systemet.&lt;/p&gt;
7764
7765 &lt;p&gt;Det startet i 2002 ved at jeg installerte en av de første utgavene
7766 av Skolelinux på en standard pc på Solneset skole i Tromsø. Denne var
7767 oppe fram til desember 2003 da jeg sluttet på den skolen og begynte i
7768 ny jobb i Narvik kommune.&lt;/p&gt;
7769
7770 &lt;p&gt; I Narvik kommune var det i 2004 kun 2 servere på da totalt 15
7771 skoler. Disse var Windows NT baserte. På disse to skolene var det lite
7772 med maskiner. Jobben med å få Narvik Kommune opp på akseptabelt nivå
7773 virket å være formidabel. Men med hjelp av gode kollegaer og leder
7774 skrev jeg en IKT plan for Narvik kommune som ble vedtatt av politikere
7775 i august 2004. I denne planen ble det bestemt at Narvik kommune skulle
7776 bruke Skolelinux. Her ble det også satt av midler til kabling av god
7777 infrastruktur på alle skoler samt innkjøp av nye datamaskiner. Så i
7778 dag har vi 17 servere hvorav 13 er på Skolelinux, med ca 1500 klienter
7779 basert på tynne, &quot;halvtykke&quot; og et stort antall bærbare pcer basert på
7780 Kubuntu.&lt;/p&gt;
7781
7782 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7783
7784 &lt;p&gt;Lisenskostnader, driftkostnader og hardwarekrav som er mye lavere
7785 enn for andre systemer.&lt;/p&gt;
7786
7787 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7788
7789 &lt;p&gt;Pedagogiske programvare som ikke fungerer mot Linux. En Stoooor
7790 flaskehals og som gjør at Linux kanskje ikke blir valgt andre
7791 plasser.&lt;/p&gt;
7792
7793 &lt;p&gt;Eksempler er Relemo, Lindys (lingit sine programmer), 5plus
7794 (matematikk). Disse er programmer som ikke lar seg kjøre i Linux.&lt;/p&gt;
7795
7796 &lt;p&gt; Men det ser ut for at mange leverandører går over til mer
7797 nettbaserte programmer istedet for å installere lokalt. Dette med
7798 enkelte leverandører som ikke kan levere programmer til Linux er et
7799 lite problem og over tid tror jeg at denne barrieren er borte.&lt;/p&gt;
7800
7801 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7802
7803 &lt;p&gt;Kjører Kubuntu på laptoper, Debian squeeze på stasjonær
7804 kontorpc. Ut over dette arbeder jeg svært mye via konsoll mot andre
7805 servere.&lt;/p&gt;
7806 </description>
7807 </item>
7808
7809 <item>
7810 <title>Skolelinux-intervju: Arnt Ove Gregersen</title>
7811 <link>http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Arnt_Ove_Gregersen.html</link>
7812 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_intervju__Arnt_Ove_Gregersen.html</guid>
7813 <pubDate>Sun, 9 Jan 2011 12:00:00 +0100</pubDate>
7814 <description>&lt;p&gt;Inspirert av
7815 &lt;a href=&quot;http://raphaelhertzog.com/tag/interview/&quot;&gt;intervjurunden&lt;/a&gt;
7816 som Raphael Hertzog har startet med folk i Debianprosjektet, fikk jeg
7817 lyst til å gjøre det samme med folk i
7818 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinuxprosjektet&lt;/a&gt;. Håpet
7819 er at de som til daglig bidrar til å fremme fri programvare i
7820 skoleverket og utvikler en linux-distribusjon spesiallaget for
7821 skolebruk kan bli bedre kjent og kanskje inspirere flere til å bidra
7822 til Skolelinux-prosjektet.&lt;/p&gt;
7823
7824 &lt;p&gt;Først ut er nyvalgt leder i
7825 &lt;a href=&quot;http://www.friprogramvareiskolen.no/&quot;&gt;foreningen FRISK&lt;/a&gt; som
7826 organiserer utviklingen av Skolelinux-distribusjonen. FRISK trenger
7827 alltid flere medlemmer, så
7828 &lt;a href=&quot;http://medlem.friprogramvareiskolen.no/index.php?page=signup&quot;&gt;meld
7829 deg gjerne inn&lt;/a&gt; hvis du vil støtte oss.&lt;/p&gt;
7830
7831 &lt;p&gt;&lt;strong&gt;Hvem er du, og hva driver du med til daglig?&lt;/strong&gt;&lt;/p&gt;
7832
7833 &lt;p&gt;&lt;!-- Mitt navn er Arnt Ove Gregersen, jeg er en småbarnfar på 32 år som
7834 for tiden bor Trondheim. --&gt;
7835 Mitt navn er Arnt Ove Gregersen, jeg er 32 år og bor for tiden i Trondheim.
7836
7837 Her jobber jeg som systemutvikler i et firma
7838 som heter &lt;a href=&quot;http://www.geomatikk-ikt.no/&quot;&gt;Geomatikk IKT AS&lt;/a&gt;,
7839 hvor jeg er på et Vegmeldings-prosjekt for Statens Vegvesen. På
7840 fritiden er jeg styreleder i FRISK (Fri programvare i skolen) og
7841 bidrar til bl.a. Skolelinux-prosjektet når jeg får tid til det. Det er
7842 primært hjemmesiden til Skolelinux-prosjektet og
7843 &lt;a href=&quot;http://linuxveiviseren.no/&quot;&gt;Linux-veiviseren&lt;/a&gt; jeg har
7844 jobbet med her, men jeg har også gjort en del arbeid i forhold til
7845 FRISK sin hjemmeside.&lt;/p&gt;
7846
7847 &lt;p&gt;&lt;strong&gt;Hvordan kom du i kontakt med Skolelinux-prosjektet?&lt;/strong&gt;&lt;/p&gt;
7848
7849 &lt;p&gt;Jeg var på en presentasjon av prosjektet i regi av Knut Yrvin på
7850 Gløshaugen i Trondheim, hvor jeg fattet stor interesse for prosjektet
7851 og ville hjelpe til så godt jeg kunne. Dette var vel i 2002 eller
7852 2003.&lt;/p&gt;
7853
7854 &lt;p&gt;Jeg hadde fra før hørt om prosjektet fra før og syntes tanken bak var
7855 ganske fin, men hadde ikke noen interesse av bruke min egen fritid på
7856 det selv.&lt;/p&gt;
7857
7858 &lt;p&gt;I etterkant av presentasjonen startet jeg og noen andre fra
7859 Trondheim &quot;Skolelinux-prosjektet i Sør-Trøndelag&quot; . Hvor vi var med å
7860 bidra til at Trondheim kommune satte igang Selsbakk ungdomskole som et
7861 pilotprosjekt med Skolelinux, som egentlig var og er en stor suksess,
7862 men det virker ut som det ikke skjer noe mer på. I tillegg var vi med
7863 på dugnad på Brundalen videregående skole hvor vi installerte
7864 Skolelinux som såvidt jeg vet fortsatt kjører på Skolelinux.&lt;/p&gt;
7865
7866 &lt;p&gt;&lt;strong&gt;Hva er fordelene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7867
7868 &lt;p&gt;Det bygger på fri programvare og har lav kostnad i forhold til
7869 nytteverdien. Dette fordi det har forholdsvis lav inngangsum og bruker
7870 en arkitektur med sentral-drift som gir mange driftfordeler. I
7871 tillegg vil det kunne frigjøre kostnader for skolene slik at de kan
7872 bruke dem til å ansette f,eks flere lærere om det er ønskelig.&lt;/p&gt;
7873
7874 &lt;p&gt;&lt;strong&gt;Hva er ulempene med Skolelinux slik du ser det?&lt;/strong&gt;&lt;/p&gt;
7875
7876 &lt;P&gt;Ikke all pedagogisk programvare er tilgjengelig der, som f.eks
7877 Drillpro om jeg ikke husker feil.&lt;/p&gt;
7878
7879 &lt;p&gt;&lt;strong&gt;Hvilken fri programvare bruker du til daglig?&lt;/strong&gt;&lt;/p&gt;
7880
7881 &lt;p&gt;Til utvikling av Java-applikasjoner og Android bruker jeg Eclipse og
7882 Quanta til web-utvikling via php. For all bildebehandling bruker jeg
7883 GIMP og Blender til 3d-modellering . Dessverre har Blender en bratt
7884 læringskurve i starten, men det er absolutt verdt det.
7885
7886 &lt;p&gt;Til musikk bruker jeg stort Rhytmbox. Firefox til surfing på nettet og
7887 Thunderbird og Evolution til e-post,
7888
7889 &lt;p&gt;På database-siden bruker jeg PostgreSQL, Postgis og av og til Mysql.
7890
7891 &lt;p&gt;Når jeg får tid til å spille bruker jeg som regel et strategi-spill
7892 som er basert på TA Spring-motoren (springrts.com), her er det et
7893 veldig bra utvalg av gratis spill som er av høy kvalitet. Veldig lett
7894 å bli hektet :)&lt;/p&gt;
7895 </description>
7896 </item>
7897
7898 <item>
7899 <title>Inspirerende fra en ukjent Skolelinux-skole</title>
7900 <link>http://people.skolelinux.org/pere/blog/Inspirerende_fra_en_ukjent_Skolelinux_skole.html</link>
7901 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Inspirerende_fra_en_ukjent_Skolelinux_skole.html</guid>
7902 <pubDate>Tue, 4 Jan 2011 07:50:00 +0100</pubDate>
7903 <description>&lt;p&gt;Følgende inspirerende historie fant jeg i
7904 &lt;a href=&quot;http://www.digi.no/php/ny_debatt.php?id=858869#innlegg_770926&quot;&gt;kommentarfeltet
7905 hos digi.no&lt;/a&gt; i forbindelse med en trist sak om hvordan
7906 &lt;a href=&quot;http://www.digi.no/858869/datakaos-etter-linux-satsing&quot;&gt;skolen
7907 i Hemsedal har fått ødelagt&lt;/a&gt; sin Skolelinux-installasjon. Jeg har
7908 fikset endel åpenbare skrivefeil for lesbarhetens skyld.&lt;/p&gt;
7909
7910 &lt;blockquote&gt;
7911 &lt;p&gt;&lt;strong&gt;Lignende situasjon i annen kommune, se bare her:&lt;/strong&gt;
7912 &lt;br&gt;av Inspektør Siri (gjest)
7913
7914 &lt;p&gt;Kommunen min har to omtrent jevnstore tettsteder, og en
7915 ungdomsskole i hvert av tettstedene. Den minste av disse har ca 300
7916 elever og til denne sogner det 3 barneskoler. Den største har ca 350
7917 elever og til denne sogner det 4 barneskoler.&lt;/p&gt;
7918
7919 &lt;ul&gt;
7920
7921 &lt;li&gt;Kommunen har i veldig lang tid forsømt IKT i skolen, og det har
7922 bare blitt gitt smuler i ny og ne. Det er kun den største av
7923 ungdomsskolene som har hatt en skikkelig datapark, og dette takket
7924 være en naturfaglærer som ble lei av å vente på kommunen. Det gjorde
7925 at vi bestemte oss for å ta ting i egne hender, og da vha
7926 skolelinux. En testinstallasjon med 10 gamle PCer ble gjort, og vi så
7927 raskt at dette var veldig lovende. Neste etappe var å gi alle lærere
7928 egen PC på arbeidsplassene sine (2004), og så sette opp 16 PCer på to
7929 datarom. Vi har kun basert oss på å kjøpe inn brukte maskiner, og
7930 aldri dyrere enn 1000 kr pr klient. For to år siden så hadde vi
7931 klienter i alle klasserom, og totalt hadde vi da rundt 250 stk. Rundt
7932 40 klienter brukes av lærerne og kjører på en egen server. Elvene har
7933 resten, og kjører også en egen server. Servere har vi også kjøpt
7934 brukt, 2 år gamle servere koster 6-7000 kroner.&lt;/li&gt;
7935
7936 &lt;li&gt;Skolen vår er et relativt gammelt bygg, men en meget dyktig
7937 vaktmester har sammen med IKT-ansvarlig/Naturfaglærer lagt kabler til alle
7938 rom. Gradvis har vi byttet ut billige svitsjer med mer solide saker
7939 som er mulig å fjernstyre.&lt;/li&gt;
7940
7941 &lt;li&gt;Vi har i all hovedsak greid å få dette til over eget budsjett, men
7942 vi har også passet på å få penger når de andre skolene har fått
7943 bærbare PCer til lærere osv.&lt;/li&gt;
7944
7945 &lt;li&gt;Vår IKT-ansvarlig har gjort (og gjør) en fenomenal jobb, og vi har
7946 en maskinpark som de andre av kommunens skoler bare kan drømme
7947 om.&lt;/li&gt;
7948
7949 &lt;/ul&gt;
7950
7951 &lt;p&gt;Så skjer det som ofte skjer. Det kommer en eller annen
7952 selger/blåruss og skal fikse ALT. I vårt tilfelle betyr dette også
7953 sentralisering av drift. Den ny-ansatte på kommunens IT-avdelingen
7954 skal også ha jobb, og ser for seg å ta over skoledriften. Kommunen
7955 kjøper inn eksterne driftstjenester, og nekter i samme slengen å ta
7956 hensyn til skolen vår. Dette til tross for at vi alene har like mange
7957 datamaskiner som de andre til sammen. &lt;/p&gt;
7958
7959 &lt;ul&gt;
7960
7961 &lt;li&gt;Det blir krevd at vi skal innlemmes i de kommunale systemet, og
7962 det er VI som får ansvar for at dette kommer på plass. Og det er her
7963 de horrible tingene begynner å skje. &lt;/li&gt;
7964
7965 &lt;li&gt;Det settes opp en lukket Exchange server som gjør av vi ikke kan
7966 hente epost for våre ansatte. Og det kreves at vi finner løsning på
7967 dette.&lt;/li&gt;
7968
7969 &lt;li&gt;Det velges sak arkivsystem som vi pålegges å bruke, noe som gjør
7970 at vi må bruke en terminalløsning mot kommunal server. Ikke i seg selv
7971 et problem i følge IKT-ansvarlig hos oss. Men kommunens IT-avd nektet
7972 faktisk å åpne de porter OSV som vi måtte bruke.&lt;/li&gt;
7973
7974 &lt;li&gt;Vi blir pålagt å flytte på innsiden av det kommunale
7975 nettverket. Dette gjorde at vi mistet hjemmekontor for lærere og
7976 elever. Å få åpnet porter i kommunal brannmur var ikke
7977 aktuelt. Mulighet for fjerndrift ble også vekk i samme slengen. &lt;/li&gt;
7978
7979 &lt;li&gt;Vår LMS Moodle er ikke mulig å nå for elevene og lærerne.
7980
7981 &lt;/ul&gt;
7982
7983 &lt;p&gt;Den andre ungdomsskolen i kommunen begynner så å kreve at de skal
7984 få bedre datatetthet, og komme opp på et nivå som ligner det vi
7985 har. De ser at vi kan avholde eksamen hvor alle 10. klassingene får
7986 sitte ved hver sin PC. Og de har fått tilbakemelding (klager) fra VGS
7987 om manglende datakompetanse på elevene som kommer fra dem. Dette fører
7988 videre til at kommunen endelig innser at de må ta grep. &lt;/p&gt;
7989
7990 &lt;p&gt;Grepet betyr sentralisering, og farvel til vår plattform får vi
7991 høre. Det blir gjort en rekke bestemmelser og vedtak som vi ikke får
7992 være en del av. Det blir helt klart at vi må redusere antall maskiner,
7993 og det skal satses på bærbare maskiner. Siden vi ikke har fått tatt
7994 del i prosessene som angår oss, så bruker vi fagforening. Vi har ikke
7995 blitt hørt i forbindelse med endringer som er betydelig for vår
7996 hverdag, og greier å stoppe omlegging. I tillegg så har vi et politisk
7997 vedtak i kommunen på at vi skal kjøre Linux på elevnett, og dette
7998 vedtaket kan ikke administrasjonen i kommunene helt uten videre
7999 tilsidesette. &lt;/p&gt;
8000
8001 &lt;p&gt;I sum har dette gjort at vi har fått jobbe videre i fred. Og en del
8002 runder i kommunens kontrollutvalg har gjort det tydelig at vi har blitt
8003 systematisk motarbeidet. &lt;/p&gt;
8004
8005 &lt;p&gt;I dag har de andre skolene fått sine bærbare maskiner til elever og
8006 lærere, men etter 2 år med innkjøring er det fremdeles problemer
8007 her. &lt;/p&gt;
8008
8009 &lt;ul&gt;
8010
8011 &lt;li&gt;Ungdomsskolen med windows kan ikke kjøre eksamen med sine bærbare,
8012 det er for mye arbeid å renske disse for innhold slik at juks ikke er
8013 mulig.&lt;/li&gt;
8014
8015 &lt;li&gt;Utskrift er et mareritt, etter sigende pga at utskrift først
8016 sendes til sentral server, og så sendes ut til rett skriver. I snitt
8017 så tar det 7-8 minutter før utskrift starter på enkelte av
8018 skolene.&lt;/li&gt;
8019
8020 &lt;li&gt;Trådløst skaper store problemer, og det er i perioder helt umulig
8021 å komme seg på nett. Og lagring på felles server er bare å glemme i
8022 perioder.&lt;/li&gt;
8023
8024 &lt;/ul&gt;
8025
8026 &lt;p&gt;Vi har slitt mye, kranglet og sloss. Ikke med tekniske problemer,
8027 men med omgivelsene rundt som vil oss til livs. Men det har vært verdt
8028 hver dråpe med svette, og timer med irritasjon. Men vi har begynt å få
8029 rutine her nå. &lt;/p&gt;
8030
8031 &lt;ul&gt;
8032
8033 &lt;li&gt;Vi har fremdeles et system som vi styrer helt selv. &lt;/li&gt;
8034 &lt;li&gt;Vi har vist at argumentet med at vår IKT-ansvarlig kan finne seg annen jobb ikke holder mål. Vi har kjøpt driftskonto hos et firma i tilfelle krise, og vi har kjørt opplæring på flere av de yngre lærerne. &lt;/li&gt;
8035 &lt;li&gt;Vi har til enhver tid en lærling IKT driftsfag, og velger selvsagt ut dem som satser på Linux. Vi har nå begynt å få tilbake av våre tidligere elever som vil til oss nettopp fordi vi har Linux.&lt;/li&gt;
8036 &lt;li&gt;Vi har vist at vi greier å opprettholde en dobbelt så stor datapark som naboskolen, og det til en billigere penge. &lt;/li&gt;
8037 &lt;li&gt;Vi har datastøtte og support på huset, ALLTID tilgjengelig. De andre skolene må vente flere dager hvis det ikke er noe kritisk. &lt;/li&gt;
8038 &lt;li&gt;Vår IKT-ansvarlig har 50% stilling som lærer og 50% som IKT-ansvarlig. &lt;/li&gt;
8039 &lt;li&gt;Vi har en lærer på hvert trinn som har 3 timer i uka til å drive support/støtte til de andre lærerne. &lt;/li&gt;
8040 &lt;li&gt;Vi opplever at de yngste lærerne ved den andre ungdomsskolen ønsker seg over til oss. &lt;/li&gt;
8041
8042 &lt;/ul&gt;
8043
8044 &lt;p&gt;Vi skal i løpet av året starte prosess med å planlegge ny skole, og vi har fått gjennomslag for at jeg (inspektør) og IKT-ansvarlig skal ha det fulle og hele ansvar for IKT/Infrastruktur. Begrunnelsen vår som ble avgjørende her, var at IT-avd i kommunen ikke kan noe om data i skolen. &lt;/p&gt;
8045
8046 &lt;p&gt;Beklager hvis dette ble litt usammenhengende, men det ble tastet i
8047 fei, og jeg har ikke lest gjennom&lt;/p&gt;
8048 &lt;/blockquote&gt;
8049
8050 &lt;p&gt;Det kom raskt et lite svar:&lt;/p&gt;
8051
8052 &lt;blockquote&gt;
8053 &lt;p&gt;&lt;strong&gt;SV: Lignende situasjon i annen kommune, se bare her:&lt;/strong&gt;
8054 &lt;br&gt;av captain_obvious&lt;/p&gt;
8055
8056 &lt;p&gt;Inspirerende å lese. Har dere gjort noe for å fortelle denne
8057 historien videre?&lt;/p&gt;
8058
8059 &lt;p&gt;Hadde vært svært interessant om dere tok kontakt med dokument 2 eller
8060 lignende for å fortelle hvordan det egentlig står til med
8061 IT-satsningen i kommune-Norge. Om ikke annet kan du begynner med å
8062 raffinere innlegget ditt og få en gjesteartikkel på digi.no&lt;/p&gt;
8063 &lt;/blockquote&gt;
8064
8065 &lt;p&gt;Og deretter en lengre oppfølging.&lt;/p&gt;
8066
8067 &lt;blockquote&gt;
8068 &lt;p&gt;&lt;strong&gt;SV: Lignende situasjon i annen kommune, se bare her:&lt;/strong&gt;
8069 &lt;br&gt;av Inspektør Siri (gjest)
8070
8071 &lt;p&gt;Joda, vi har lekt med tanken, og vi har t.o.m skrevet flere lengre
8072 leserinnlegg myntet på aviser. Disse er ikke sendt til aviser, men
8073 brukt internt i forbindelse med møter med kommune. Vår IKT-ansvarlig
8074 har også truet med å si opp jobben sin hvis det ikke ble tatt hensyn i
8075 større grad enn hva som har vært tilfelle. VI kan også dokumentere
8076 flere brudd på anbudsregler, og vi kjenner til at relativt store
8077 IT-leverandører som ikke har fått tatt del i disse anbudene, rett og
8078 slett ikke tør melde fra av redsel for å få et dårlig rykte. &lt;/p&gt;
8079
8080 &lt;p&gt;Alt ser ut til å roe seg ned, og vi har fått opp øynene på
8081 politikerne. I sum gjør dette at vi ikke ønsker for mye publisitet nå,
8082 det vil bare rote til igjen. &lt;/p&gt;
8083
8084 &lt;p&gt;Jeg glemte å nevne at vi nå nesten ikke bruker tid på å drifte
8085 systemet vårt, noe som gjør at det aller meste av tid blir brukt til å
8086 støtte lærerne og elevene. F.eks så bruker vår IKT-ansvarlig den
8087 første timen på jobb, 0730-0830 kun til å gå ute på arbeidsplassene
8088 til læreren. Dette for å kunne svare på små og store problem, gi tips
8089 og råd, eller bare for å plukke opp hva som er behovet ute i
8090 undervisningsarealene. Det er dessverre ikke slik at alle lærerne har
8091 nok digital kompetanse til å kunne formulere alle spørsmålene de har,
8092 men ved å kunne få vise eller lufte tanker med IKT-ansvarlig så er det
8093 utrolig hva som kommer fram. &lt;/p&gt;
8094
8095 &lt;ul&gt;
8096
8097 &lt;li&gt;Jeg ser at mange bruker økonomi som argument i forhold til å bruke
8098 SkoleLinux, og jeg skal ikke legge skjul på at det var dette som i
8099 utgangspunktet var årsaken til vårt valg. Men diskusjonene og kampen
8100 med kommunens IT-avdeling har gjort at vi har fått et noe annet
8101 fokus. Fordelene med drift og stabilitet, gjør at vi ville ha valgt
8102 samme løsning selv om den var dyrere. At vi slipper langt billigere
8103 unna, som følge av 0,- lisenskostnader og lave maskinvarekostnader, er
8104 bare en bonus. &lt;/li&gt;
8105
8106 &lt;li&gt;Etter å ha kranglet oss til å få skikkelig oversikt over hva de
8107 andre skolene i kommunen bruker på IT, så har vi fått gehør for å få
8108 samme midler til innkjøp. Dette har gjort at vi nå kan kjøpe inn
8109 utstyr som de andre skolene bare kan se langt etter. Vi har nettopp
8110 kjøpt inn 3 videokamera i semiproff-klassen for å kunne lage film,
8111 samt sende live fra skoleteater/konserter. Vi har kjøpt inn digitale
8112 kompaktkamera til alle klassene. Vi har et team av lærere som skal i
8113 gang med å teste ut tablets på svake elever. Håpet et at teknologien
8114 kan være med på å gi noen av elevene litt mer motivasjon. Vi har kjøpt
8115 inn et halvt klassesett med pulsklokker, noe som har vist seg å være
8116 overraskende inspirerende for en del av elevene. Vi har også oss på
8117 fag på en høyskole litt lengre sør for oss, slik at 3 av oss nå skal
8118 ta faget &quot;Linux tjenestedrift&quot;. Som inspektør og en del av skolens
8119 administrasjon er det veldig praktisk å kunne trå til hvis det
8120 kniper. Men IKT-ansvarlig har vært UTROLIG flink til å lage rene
8121 smørbrødlister for hvordan de mest vanlige driftsproblem løses, så det
8122 er lett for flere av oss å ta del i den daglige driften. Vi har svært
8123 stor nytte av lærling (som også hjelper to av naboskolene), men det er
8124 nesten blitt slik at det er om å gjøre å komme til først for å få løse
8125 problem. Det å få fingrene på problem og utfordringer er den aller
8126 beste læremester. &lt;/li&gt;
8127
8128 &lt;/ul&gt;
8129
8130 &lt;p&gt;Når vi nå tar til med planlegging av ny skole, så vil det være med
8131 tanke på at det skal være mulig med datautstyr på alle plasser. Vi
8132 kommer i all hovedsak til å legge kabel til alle tenkelige og
8133 utenkelige plasser. WiFi koster tilnærmet NULL å sette opp i
8134 ettertid.&lt;/p&gt;
8135
8136 &lt;p&gt;Vi har ikke vært noe flink til å bidra til SkoleLinux-prosjektet,
8137 vi har rett og slett vært for opptatt med vår egen kamp. Vi har hentet
8138 mye inspirasjon fra diskusjoner som har gått i det miljøet, og vi
8139 håper at vi nå framover kan få tid til å bidra. Vi er i ferd med å
8140 bytte ut en av serverne våre, og da vil denne trolig bli satt opp som
8141 testserver for neste versjon av Skolelinux. På den måten vil vi i alle
8142 fall kunne gi tilbakemeldinger og rapportere feil. I tillegg så vil
8143 det kanskje gi oss noen nye utfordringer, for som lærlingen vår sier:
8144 &quot;Skolelinux er noe herk, det skjer jo ikke noe galt og hvordan skal
8145 jeg da lære?&quot;&lt;/p&gt;
8146
8147 &lt;/blockquote&gt;
8148
8149 &lt;p&gt;Det er veldig hyggelig å høre at
8150 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; fungerer så bra i
8151 skoleverdagen etter å ha jobbet med det i 10 år.&lt;/p&gt;
8152 </description>
8153 </item>
8154
8155 <item>
8156 <title>How to test if a laptop is working with Linux</title>
8157 <link>http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</link>
8158 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</guid>
8159 <pubDate>Wed, 22 Dec 2010 14:55:00 +0100</pubDate>
8160 <description>&lt;p&gt;The last few days I have spent at work here at the &lt;a
8161 href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; testing if the new
8162 batch of computers will work with Linux. Every year for the last few
8163 years the university have organised shared bid of a few thousand
8164 computers, and this year HP won the bid. Two different desktops and
8165 five different laptops are on the list this year. We in the UNIX
8166 group want to know which one of these computers work well with RHEL
8167 and Ubuntu, the two Linux distributions we currently handle at the
8168 university.&lt;/p&gt;
8169
8170 &lt;p&gt;My test method is simple, and I share it here to get feedback and
8171 perhaps inspire others to test hardware as well. To test, I PXE
8172 install the OS version of choice, and log in as my normal user and run
8173 a few applications and plug in selected pieces of hardware. When
8174 something fail, I make a note about this in the test matrix and move
8175 on. If I have some spare time I try to report the bug to the OS
8176 vendor, but as I only have the machines for a short time, I rarely
8177 have the time to do this for all the problems I find.&lt;/p&gt;
8178
8179 &lt;p&gt;Anyway, to get to the point of this post. Here is the simple tests
8180 I perform on a new model.&lt;/p&gt;
8181
8182 &lt;ul&gt;
8183
8184 &lt;li&gt;Is PXE installation working? I&#39;m testing with RHEL6, Ubuntu Lucid
8185 and Ubuntu Maverik at the moment. If I feel like it, I also test with
8186 RHEL5 and Debian Edu/Squeeze.&lt;/li&gt;
8187
8188 &lt;li&gt;Is X.org working? If the graphical login screen show up after
8189 installation, X.org is working.&lt;/li&gt;
8190
8191 &lt;li&gt;Is hardware accelerated OpenGL working? Running glxgears (in
8192 package mesa-utils on Ubuntu) and writing down the frames per second
8193 reported by the program.&lt;/li&gt;
8194
8195 &lt;li&gt;Is sound working? With Gnome and KDE, a sound is played when
8196 logging in, and if I can hear this the test is successful. If there
8197 are several audio exits on the machine, I try them all and check if
8198 the Gnome/KDE audio mixer can control where to send the sound. I
8199 normally test this by playing
8200 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20101012-chef/ &quot;&gt;a HTML5
8201 video&lt;/a&gt; in Firefox/Iceweasel.&lt;/li&gt;
8202
8203 &lt;li&gt;Is the USB subsystem working? I test this by plugging in a USB
8204 memory stick and see if Gnome/KDE notices this.&lt;/li&gt;
8205
8206 &lt;li&gt;Is the CD/DVD player working? I test this by inserting any CD/DVD
8207 I have lying around, and see if Gnome/KDE notices this.&lt;/li&gt;
8208
8209 &lt;li&gt;Is any built in camera working? Test using cheese, and see if a
8210 picture from the v4l device show up.&lt;/li&gt;
8211
8212 &lt;li&gt;Is bluetooth working? Use the Gnome/KDE browsing tool to see if
8213 any bluetooth devices are discovered. In my office, I normally see a
8214 few.&lt;/li&gt;
8215
8216 &lt;li&gt;For laptops, is the SD or Compaq Flash reader working. I have
8217 memory modules lying around, and stick them in and see if Gnome/KDE
8218 notice this.&lt;/li&gt;
8219
8220 &lt;li&gt;For laptops, is suspend/hibernate working? I&#39;m testing if the
8221 special button work, and if the laptop continue to work after
8222 resume.&lt;/li&gt;
8223
8224 &lt;li&gt;For laptops, is the extra buttons working, like audio level,
8225 adjusting background light, switching on/off external video output,
8226 switching on/off wifi, bluetooth, etc? The set of buttons differ from
8227 laptop to laptop, so I just write down which are working and which are
8228 not.&lt;/li&gt;
8229
8230 &lt;li&gt;Some laptops have smart card readers, finger print readers,
8231 acceleration sensors etc. I rarely test these, as I do not know how
8232 to quickly test if they are working or not, so I only document their
8233 existence.&lt;/li&gt;
8234
8235 &lt;/ul&gt;
8236
8237 &lt;p&gt;By now I suspect you are really curious what the test results are
8238 for the HP machines I am testing. I&#39;m not done yet, so I will report
8239 the test results later. For now I can report that HP 8100 Elite work
8240 fine, and hibernation fail with HP EliteBook 8440p on Ubuntu Lucid,
8241 and audio fail on RHEL6. Ubuntu Maverik worked with 8440p. As you
8242 can see, I have most machines left to test. One interesting
8243 observation is that Ubuntu Lucid has almost twice the frame rate than
8244 RHEL6 with glxgears. No idea why.&lt;/p&gt;
8245 </description>
8246 </item>
8247
8248 <item>
8249 <title>Debian Edu development gathering and General Assembly for FRiSK</title>
8250 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</link>
8251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</guid>
8252 <pubDate>Mon, 29 Nov 2010 18:40:00 +0100</pubDate>
8253 <description>&lt;p&gt;On friday, the first Debian Edu / Skolelinux
8254 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2010-12-03-05-Oslo&quot;&gt;development
8255 gathering&lt;/a&gt; in a long time take place here in Oslo, Norway. I
8256 really look forward to seeing all the good people working on the
8257 Squeeze release. The gathering is open for everyone interested in
8258 learning more about Debian Edu / Skolelinux.&lt;/p&gt;
8259
8260 &lt;p&gt;On Saturday, the Norwegian member organization taking care of
8261 organizing these development gatherings, Fri Programvare i Skolen,
8262 will hold its
8263 &lt;a href=&quot;http://friprogramvareiskolen.no/Genfors/2010&quot;&gt;General Assembly
8264 for 2010&lt;/a&gt;. Membership is open for all, and currently there are 388
8265 people registered as members. Last year 32 members cast their vote in
8266 the memberdb based election system. I hope more people find time to
8267 vote this year.&lt;/p&gt;
8268 </description>
8269 </item>
8270
8271 <item>
8272 <title>Why isn&#39;t Debian Edu using VLC?</title>
8273 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</link>
8274 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</guid>
8275 <pubDate>Sat, 27 Nov 2010 11:30:00 +0100</pubDate>
8276 <description>&lt;p&gt;In the latest issue of Linux Journal, the readers choices were
8277 presented, and the winner among the multimedia player were VLC.
8278 Personally, I like VLC, and it is my player of choice when I first try
8279 to play a video file or stream. Only if VLC fail will I drag out
8280 gmplayer to see if it can do better. The reason is mostly the failure
8281 model and trust. When VLC fail, it normally pop up a error message
8282 reporting the problem. When mplayer fail, it normally segfault or
8283 just hangs. The latter failure mode drain my trust in the program.&lt;p&gt;
8284
8285 &lt;p&gt;But even if VLC is my player of choice, we have choosen to use
8286 mplayer in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
8287 Edu/Skolelinux&lt;/a&gt;. The reason is simple. We need a good browser
8288 plugin to play web videos seamlessly, and the VLC browser plugin is
8289 not very good. For example, it lack in-line control buttons, so there
8290 is no way for the user to pause the video. Also, when I
8291 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;last
8292 tested the browser plugins&lt;/a&gt; available in Debian, the VLC plugin
8293 failed on several video pages where mplayer based plugins worked. If
8294 the browser plugin for VLC was as good as the gecko-mediaplayer
8295 package (which uses mplayer), we would switch.&lt;/P&gt;
8296
8297 &lt;p&gt;While VLC is a good player, its user interface is slightly
8298 annoying. The most annoying feature is its inconsistent use of
8299 keyboard shortcuts. When the player is in full screen mode, its
8300 shortcuts are different from when it is playing the video in a window.
8301 For example, space only work as pause when in full screen mode. I
8302 wish it had consisten shortcuts and that space also would work when in
8303 window mode. Another nice shortcut in gmplayer is [enter] to restart
8304 the current video. It is very nice when playing short videos from the
8305 web and want to restart it when new people arrive to have a look at
8306 what is going on.&lt;/p&gt;
8307 </description>
8308 </item>
8309
8310 <item>
8311 <title>Lenny-&gt;Squeeze upgrades of the Gnome and KDE desktop, now with apt-get autoremove</title>
8312 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</link>
8313 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</guid>
8314 <pubDate>Mon, 22 Nov 2010 14:15:00 +0100</pubDate>
8315 <description>&lt;p&gt;Michael Biebl suggested to me on IRC, that I changed my automated
8316 upgrade testing of the
8317 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
8318 Gnome and KDE Desktop&lt;/a&gt; to do &lt;tt&gt;apt-get autoremove&lt;/tt&gt; when using apt-get.
8319 This seem like a very good idea, so I adjusted by test scripts and
8320 can now present the updated result from today:&lt;/p&gt;
8321
8322 &lt;p&gt;This is for Gnome:&lt;/p&gt;
8323
8324 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
8325
8326 &lt;blockquote&gt;&lt;p&gt;
8327 apache2.2-bin
8328 aptdaemon
8329 baobab
8330 binfmt-support
8331 browser-plugin-gnash
8332 cheese-common
8333 cli-common
8334 cups-pk-helper
8335 dmz-cursor-theme
8336 empathy
8337 empathy-common
8338 freedesktop-sound-theme
8339 freeglut3
8340 gconf-defaults-service
8341 gdm-themes
8342 gedit-plugins
8343 geoclue
8344 geoclue-hostip
8345 geoclue-localnet
8346 geoclue-manual
8347 geoclue-yahoo
8348 gnash
8349 gnash-common
8350 gnome
8351 gnome-backgrounds
8352 gnome-cards-data
8353 gnome-codec-install
8354 gnome-core
8355 gnome-desktop-environment
8356 gnome-disk-utility
8357 gnome-screenshot
8358 gnome-search-tool
8359 gnome-session-canberra
8360 gnome-system-log
8361 gnome-themes-extras
8362 gnome-themes-more
8363 gnome-user-share
8364 gstreamer0.10-fluendo-mp3
8365 gstreamer0.10-tools
8366 gtk2-engines
8367 gtk2-engines-pixbuf
8368 gtk2-engines-smooth
8369 hamster-applet
8370 libapache2-mod-dnssd
8371 libapr1
8372 libaprutil1
8373 libaprutil1-dbd-sqlite3
8374 libaprutil1-ldap
8375 libart2.0-cil
8376 libboost-date-time1.42.0
8377 libboost-python1.42.0
8378 libboost-thread1.42.0
8379 libchamplain-0.4-0
8380 libchamplain-gtk-0.4-0
8381 libcheese-gtk18
8382 libclutter-gtk-0.10-0
8383 libcryptui0
8384 libdiscid0
8385 libelf1
8386 libepc-1.0-2
8387 libepc-common
8388 libepc-ui-1.0-2
8389 libfreerdp-plugins-standard
8390 libfreerdp0
8391 libgconf2.0-cil
8392 libgdata-common
8393 libgdata7
8394 libgdu-gtk0
8395 libgee2
8396 libgeoclue0
8397 libgexiv2-0
8398 libgif4
8399 libglade2.0-cil
8400 libglib2.0-cil
8401 libgmime2.4-cil
8402 libgnome-vfs2.0-cil
8403 libgnome2.24-cil
8404 libgnomepanel2.24-cil
8405 libgpod-common
8406 libgpod4
8407 libgtk2.0-cil
8408 libgtkglext1
8409 libgtksourceview2.0-common
8410 libmono-addins-gui0.2-cil
8411 libmono-addins0.2-cil
8412 libmono-cairo2.0-cil
8413 libmono-corlib2.0-cil
8414 libmono-i18n-west2.0-cil
8415 libmono-posix2.0-cil
8416 libmono-security2.0-cil
8417 libmono-sharpzip2.84-cil
8418 libmono-system2.0-cil
8419 libmtp8
8420 libmusicbrainz3-6
8421 libndesk-dbus-glib1.0-cil
8422 libndesk-dbus1.0-cil
8423 libopal3.6.8
8424 libpolkit-gtk-1-0
8425 libpt2.6.7
8426 libpython2.6
8427 librpm1
8428 librpmio1
8429 libsdl1.2debian
8430 libsrtp0
8431 libssh-4
8432 libtelepathy-farsight0
8433 libtelepathy-glib0
8434 libtidy-0.99-0
8435 media-player-info
8436 mesa-utils
8437 mono-2.0-gac
8438 mono-gac
8439 mono-runtime
8440 nautilus-sendto
8441 nautilus-sendto-empathy
8442 p7zip-full
8443 pkg-config
8444 python-aptdaemon
8445 python-aptdaemon-gtk
8446 python-axiom
8447 python-beautifulsoup
8448 python-bugbuddy
8449 python-clientform
8450 python-coherence
8451 python-configobj
8452 python-crypto
8453 python-cupshelpers
8454 python-elementtree
8455 python-epsilon
8456 python-evolution
8457 python-feedparser
8458 python-gdata
8459 python-gdbm
8460 python-gst0.10
8461 python-gtkglext1
8462 python-gtksourceview2
8463 python-httplib2
8464 python-louie
8465 python-mako
8466 python-markupsafe
8467 python-mechanize
8468 python-nevow
8469 python-notify
8470 python-opengl
8471 python-openssl
8472 python-pam
8473 python-pkg-resources
8474 python-pyasn1
8475 python-pysqlite2
8476 python-rdflib
8477 python-serial
8478 python-tagpy
8479 python-twisted-bin
8480 python-twisted-conch
8481 python-twisted-core
8482 python-twisted-web
8483 python-utidylib
8484 python-webkit
8485 python-xdg
8486 python-zope.interface
8487 remmina
8488 remmina-plugin-data
8489 remmina-plugin-rdp
8490 remmina-plugin-vnc
8491 rhythmbox-plugin-cdrecorder
8492 rhythmbox-plugins
8493 rpm-common
8494 rpm2cpio
8495 seahorse-plugins
8496 shotwell
8497 software-center
8498 system-config-printer-udev
8499 telepathy-gabble
8500 telepathy-mission-control-5
8501 telepathy-salut
8502 tomboy
8503 totem
8504 totem-coherence
8505 totem-mozilla
8506 totem-plugins
8507 transmission-common
8508 xdg-user-dirs
8509 xdg-user-dirs-gtk
8510 xserver-xephyr
8511 &lt;/p&gt;&lt;/blockquote&gt;
8512
8513 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
8514
8515 &lt;blockquote&gt;&lt;p&gt;
8516 cheese
8517 ekiga
8518 eog
8519 epiphany-extensions
8520 evolution-exchange
8521 fast-user-switch-applet
8522 file-roller
8523 gcalctool
8524 gconf-editor
8525 gdm
8526 gedit
8527 gedit-common
8528 gnome-games
8529 gnome-games-data
8530 gnome-nettool
8531 gnome-system-tools
8532 gnome-themes
8533 gnuchess
8534 gucharmap
8535 guile-1.8-libs
8536 libavahi-ui0
8537 libdmx1
8538 libgalago3
8539 libgtk-vnc-1.0-0
8540 libgtksourceview2.0-0
8541 liblircclient0
8542 libsdl1.2debian-alsa
8543 libspeexdsp1
8544 libsvga1
8545 rhythmbox
8546 seahorse
8547 sound-juicer
8548 system-config-printer
8549 totem-common
8550 transmission-gtk
8551 vinagre
8552 vino
8553 &lt;/p&gt;&lt;/blockquote&gt;
8554
8555 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
8556
8557 &lt;blockquote&gt;&lt;p&gt;
8558 gstreamer0.10-gnomevfs
8559 &lt;/p&gt;&lt;/blockquote&gt;
8560
8561 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
8562
8563 &lt;blockquote&gt;&lt;p&gt;
8564 [nothing]
8565 &lt;/p&gt;&lt;/blockquote&gt;
8566
8567 &lt;p&gt;This is for KDE:&lt;/p&gt;
8568
8569 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
8570
8571 &lt;blockquote&gt;&lt;p&gt;
8572 ksmserver
8573 &lt;/p&gt;&lt;/blockquote&gt;
8574
8575 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
8576
8577 &lt;blockquote&gt;&lt;p&gt;
8578 kwin
8579 network-manager-kde
8580 &lt;/p&gt;&lt;/blockquote&gt;
8581
8582 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
8583
8584 &lt;blockquote&gt;&lt;p&gt;
8585 arts
8586 dolphin
8587 freespacenotifier
8588 google-gadgets-gst
8589 google-gadgets-xul
8590 kappfinder
8591 kcalc
8592 kcharselect
8593 kde-core
8594 kde-plasma-desktop
8595 kde-standard
8596 kde-window-manager
8597 kdeartwork
8598 kdeartwork-emoticons
8599 kdeartwork-style
8600 kdeartwork-theme-icon
8601 kdebase
8602 kdebase-apps
8603 kdebase-workspace
8604 kdebase-workspace-bin
8605 kdebase-workspace-data
8606 kdeeject
8607 kdelibs
8608 kdeplasma-addons
8609 kdeutils
8610 kdewallpapers
8611 kdf
8612 kfloppy
8613 kgpg
8614 khelpcenter4
8615 kinfocenter
8616 konq-plugins-l10n
8617 konqueror-nsplugins
8618 kscreensaver
8619 kscreensaver-xsavers
8620 ktimer
8621 kwrite
8622 libgle3
8623 libkde4-ruby1.8
8624 libkonq5
8625 libkonq5-templates
8626 libnetpbm10
8627 libplasma-ruby
8628 libplasma-ruby1.8
8629 libqt4-ruby1.8
8630 marble-data
8631 marble-plugins
8632 netpbm
8633 nuvola-icon-theme
8634 plasma-dataengines-workspace
8635 plasma-desktop
8636 plasma-desktopthemes-artwork
8637 plasma-runners-addons
8638 plasma-scriptengine-googlegadgets
8639 plasma-scriptengine-python
8640 plasma-scriptengine-qedje
8641 plasma-scriptengine-ruby
8642 plasma-scriptengine-webkit
8643 plasma-scriptengines
8644 plasma-wallpapers-addons
8645 plasma-widget-folderview
8646 plasma-widget-networkmanagement
8647 ruby
8648 sweeper
8649 update-notifier-kde
8650 xscreensaver-data-extra
8651 xscreensaver-gl
8652 xscreensaver-gl-extra
8653 xscreensaver-screensaver-bsod
8654 &lt;/p&gt;&lt;/blockquote&gt;
8655
8656 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
8657
8658 &lt;blockquote&gt;&lt;p&gt;
8659 ark
8660 google-gadgets-common
8661 google-gadgets-qt
8662 htdig
8663 kate
8664 kdebase-bin
8665 kdebase-data
8666 kdepasswd
8667 kfind
8668 klipper
8669 konq-plugins
8670 konqueror
8671 ksysguard
8672 ksysguardd
8673 libarchive1
8674 libcln6
8675 libeet1
8676 libeina-svn-06
8677 libggadget-1.0-0b
8678 libggadget-qt-1.0-0b
8679 libgps19
8680 libkdecorations4
8681 libkephal4
8682 libkonq4
8683 libkonqsidebarplugin4a
8684 libkscreensaver5
8685 libksgrd4
8686 libksignalplotter4
8687 libkunitconversion4
8688 libkwineffects1a
8689 libmarblewidget4
8690 libntrack-qt4-1
8691 libntrack0
8692 libplasma-geolocation-interface4
8693 libplasmaclock4a
8694 libplasmagenericshell4
8695 libprocesscore4a
8696 libprocessui4a
8697 libqalculate5
8698 libqedje0a
8699 libqtruby4shared2
8700 libqzion0a
8701 libruby1.8
8702 libscim8c2a
8703 libsmokekdecore4-3
8704 libsmokekdeui4-3
8705 libsmokekfile3
8706 libsmokekhtml3
8707 libsmokekio3
8708 libsmokeknewstuff2-3
8709 libsmokeknewstuff3-3
8710 libsmokekparts3
8711 libsmokektexteditor3
8712 libsmokekutils3
8713 libsmokenepomuk3
8714 libsmokephonon3
8715 libsmokeplasma3
8716 libsmokeqtcore4-3
8717 libsmokeqtdbus4-3
8718 libsmokeqtgui4-3
8719 libsmokeqtnetwork4-3
8720 libsmokeqtopengl4-3
8721 libsmokeqtscript4-3
8722 libsmokeqtsql4-3
8723 libsmokeqtsvg4-3
8724 libsmokeqttest4-3
8725 libsmokeqtuitools4-3
8726 libsmokeqtwebkit4-3
8727 libsmokeqtxml4-3
8728 libsmokesolid3
8729 libsmokesoprano3
8730 libtaskmanager4a
8731 libtidy-0.99-0
8732 libweather-ion4a
8733 libxklavier16
8734 libxxf86misc1
8735 okteta
8736 oxygencursors
8737 plasma-dataengines-addons
8738 plasma-scriptengine-superkaramba
8739 plasma-widget-lancelot
8740 plasma-widgets-addons
8741 plasma-widgets-workspace
8742 polkit-kde-1
8743 ruby1.8
8744 systemsettings
8745 update-notifier-common
8746 &lt;/p&gt;&lt;/blockquote&gt;
8747
8748 &lt;p&gt;Running apt-get autoremove made the results using apt-get and
8749 aptitude a bit more similar, but there are still quite a lott of
8750 differences. I have no idea what packages should be installed after
8751 the upgrade, but hope those that do can have a look.&lt;/p&gt;
8752 </description>
8753 </item>
8754
8755 <item>
8756 <title>Migrating Xen virtual machines using LVM to KVM using disk images</title>
8757 <link>http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</link>
8758 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</guid>
8759 <pubDate>Mon, 22 Nov 2010 11:20:00 +0100</pubDate>
8760 <description>&lt;p&gt;Most of the computers in use by the
8761 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux project&lt;/a&gt;
8762 are virtual machines. And they have been Xen machines running on a
8763 fairly old IBM eserver xseries 345 machine, and we wanted to migrate
8764 them to KVM on a newer Dell PowerEdge 2950 host machine. This was a
8765 bit harder that it could have been, because we set up the Xen virtual
8766 machines to get the virtual partitions from LVM, which as far as I
8767 know is not supported by KVM. So to migrate, we had to convert
8768 several LVM logical volumes to partitions on a virtual disk file.&lt;/p&gt;
8769
8770 &lt;p&gt;I found
8771 &lt;a href=&quot;http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM&quot;&gt;a
8772 nice recipe&lt;/a&gt; to do this, and wrote the following script to do the
8773 migration. It uses qemu-img from the qemu package to make the disk
8774 image, parted to partition it, losetup and kpartx to present the disk
8775 image partions as devices, and dd to copy the data. I NFS mounted the
8776 new servers storage area on the old server to do the migration.&lt;/p&gt;
8777
8778 &lt;pre&gt;
8779 #!/bin/sh
8780
8781 # Based on
8782 # http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM
8783
8784 set -e
8785 set -x
8786
8787 if [ -z &quot;$1&quot; ] ; then
8788 echo &quot;Usage: $0 &amp;lt;hostname&amp;gt;&quot;
8789 exit 1
8790 else
8791 host=&quot;$1&quot;
8792 fi
8793
8794 if [ ! -e /dev/vg_data/$host-disk ] ; then
8795 echo &quot;error: unable to find LVM volume for $host&quot;
8796 exit 1
8797 fi
8798
8799 # Partitions need to be a bit bigger than the LVM LVs. not sure why.
8800 disksize=$( lvs --units m | grep $host-disk | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
8801 swapsize=$( lvs --units m | grep $host-swap | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
8802 totalsize=$(( ( $disksize + $swapsize ) ))
8803
8804 img=$host.img
8805 #dd if=/dev/zero of=$img bs=1M count=$(( $disksize + $swapsize ))
8806 qemu-img create $img ${totalsize}MMaking room on the Debian Edu/Sqeeze DVD
8807
8808 parted $img mklabel msdos
8809 parted $img mkpart primary linux-swap 0 $disksize
8810 parted $img mkpart primary ext2 $disksize $totalsize
8811 parted $img set 1 boot on
8812
8813 modprobe dm-mod
8814 losetup /dev/loop0 $img
8815 kpartx -a /dev/loop0
8816
8817 dd if=/dev/vg_data/$host-disk of=/dev/mapper/loop0p1 bs=1M
8818 fsck.ext3 -f /dev/mapper/loop0p1 || true
8819 mkswap /dev/mapper/loop0p2
8820
8821 kpartx -d /dev/loop0
8822 losetup -d /dev/loop0
8823 &lt;/pre&gt;
8824
8825 &lt;p&gt;The script is perhaps so simple that it is not copyrightable, but
8826 if it is, it is licenced using GPL v2 or later at your discretion.&lt;/p&gt;
8827
8828 &lt;p&gt;After doing this, I booted a Debian CD in rescue mode in KVM with
8829 the new disk image attached, installed grub-pc and linux-image-686 and
8830 set up grub to boot from the disk image. After this, the KVM machines
8831 seem to work just fine.&lt;/p&gt;
8832 </description>
8833 </item>
8834
8835 <item>
8836 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome and KDE desktop</title>
8837 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</link>
8838 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</guid>
8839 <pubDate>Sat, 20 Nov 2010 22:50:00 +0100</pubDate>
8840 <description>&lt;p&gt;I&#39;m still running upgrade testing of the
8841 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
8842 Gnome and KDE Desktop&lt;/a&gt;, but have not had time to spend on reporting the
8843 status. Here is a short update based on a test I ran 20101118.&lt;/p&gt;
8844
8845 &lt;p&gt;I still do not know what a correct migration should look like, so I
8846 report any differences between apt and aptitude and hope someone else
8847 can see if anything should be changed.&lt;/p&gt;
8848
8849 &lt;p&gt;This is for Gnome:&lt;/p&gt;
8850
8851 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
8852
8853 &lt;blockquote&gt;&lt;p&gt;
8854 apache2.2-bin aptdaemon at-spi baobab binfmt-support
8855 browser-plugin-gnash cheese-common cli-common cpp-4.3 cups-pk-helper
8856 dmz-cursor-theme empathy empathy-common finger
8857 freedesktop-sound-theme freeglut3 gconf-defaults-service gdm-themes
8858 gedit-plugins geoclue geoclue-hostip geoclue-localnet geoclue-manual
8859 geoclue-yahoo gnash gnash-common gnome gnome-backgrounds
8860 gnome-cards-data gnome-codec-install gnome-core
8861 gnome-desktop-environment gnome-disk-utility gnome-screenshot
8862 gnome-search-tool gnome-session-canberra gnome-spell
8863 gnome-system-log gnome-themes-extras gnome-themes-more
8864 gnome-user-share gs-common gstreamer0.10-fluendo-mp3
8865 gstreamer0.10-tools gtk2-engines gtk2-engines-pixbuf
8866 gtk2-engines-smooth hal-info hamster-applet libapache2-mod-dnssd
8867 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap
8868 libart2.0-cil libatspi1.0-0 libboost-date-time1.42.0
8869 libboost-python1.42.0 libboost-thread1.42.0 libchamplain-0.4-0
8870 libchamplain-gtk-0.4-0 libcheese-gtk18 libclutter-gtk-0.10-0
8871 libcryptui0 libcupsys2 libdiscid0 libeel2-data libelf1 libepc-1.0-2
8872 libepc-common libepc-ui-1.0-2 libfreerdp-plugins-standard
8873 libfreerdp0 libgail-common libgconf2.0-cil libgdata-common libgdata7
8874 libgdl-1-common libgdu-gtk0 libgee2 libgeoclue0 libgexiv2-0 libgif4
8875 libglade2.0-cil libglib2.0-cil libgmime2.4-cil libgnome-vfs2.0-cil
8876 libgnome2.24-cil libgnomepanel2.24-cil libgnomeprint2.2-data
8877 libgnomeprintui2.2-common libgnomevfs2-bin libgpod-common libgpod4
8878 libgtk2.0-cil libgtkglext1 libgtksourceview-common
8879 libgtksourceview2.0-common libmono-addins-gui0.2-cil
8880 libmono-addins0.2-cil libmono-cairo2.0-cil libmono-corlib2.0-cil
8881 libmono-i18n-west2.0-cil libmono-posix2.0-cil
8882 libmono-security2.0-cil libmono-sharpzip2.84-cil
8883 libmono-system2.0-cil libmtp8 libmusicbrainz3-6
8884 libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libopal3.6.8
8885 libpolkit-gtk-1-0 libpt-1.10.10-plugins-alsa
8886 libpt-1.10.10-plugins-v4l libpt2.6.7 libpython2.6 librpm1 librpmio1
8887 libsdl1.2debian libservlet2.4-java libsrtp0 libssh-4
8888 libtelepathy-farsight0 libtelepathy-glib0 libtidy-0.99-0
8889 libxalan2-java libxerces2-java media-player-info mesa-utils
8890 mono-2.0-gac mono-gac mono-runtime nautilus-sendto
8891 nautilus-sendto-empathy openoffice.org-writer2latex
8892 openssl-blacklist p7zip p7zip-full pkg-config python-4suite-xml
8893 python-aptdaemon python-aptdaemon-gtk python-axiom
8894 python-beautifulsoup python-bugbuddy python-clientform
8895 python-coherence python-configobj python-crypto python-cupshelpers
8896 python-cupsutils python-eggtrayicon python-elementtree
8897 python-epsilon python-evolution python-feedparser python-gdata
8898 python-gdbm python-gst0.10 python-gtkglext1 python-gtkmozembed
8899 python-gtksourceview2 python-httplib2 python-louie python-mako
8900 python-markupsafe python-mechanize python-nevow python-notify
8901 python-opengl python-openssl python-pam python-pkg-resources
8902 python-pyasn1 python-pysqlite2 python-rdflib python-serial
8903 python-tagpy python-twisted-bin python-twisted-conch
8904 python-twisted-core python-twisted-web python-utidylib python-webkit
8905 python-xdg python-zope.interface remmina remmina-plugin-data
8906 remmina-plugin-rdp remmina-plugin-vnc rhythmbox-plugin-cdrecorder
8907 rhythmbox-plugins rpm-common rpm2cpio seahorse-plugins shotwell
8908 software-center svgalibg1 system-config-printer-udev
8909 telepathy-gabble telepathy-mission-control-5 telepathy-salut tomboy
8910 totem totem-coherence totem-mozilla totem-plugins
8911 transmission-common xdg-user-dirs xdg-user-dirs-gtk xserver-xephyr
8912 zip
8913 &lt;/p&gt;&lt;/blockquote&gt;
8914
8915 Installed using apt-get, removed with aptitude
8916
8917 &lt;blockquote&gt;&lt;p&gt;
8918 arj bluez-utils cheese dhcdbd djvulibre-desktop ekiga eog
8919 epiphany-extensions epiphany-gecko evolution-exchange
8920 fast-user-switch-applet file-roller gcalctool gconf-editor gdm gedit
8921 gedit-common gnome-app-install gnome-games gnome-games-data
8922 gnome-nettool gnome-system-tools gnome-themes gnome-utils
8923 gnome-vfs-obexftp gnome-volume-manager gnuchess gucharmap
8924 guile-1.8-libs hal libavahi-compat-libdnssd1 libavahi-core5
8925 libavahi-ui0 libbind9-50 libbluetooth2 libcamel1.2-11 libcdio7
8926 libcucul0 libcurl3 libdirectfb-1.0-0 libdmx1 libdvdread3
8927 libedata-cal1.2-6 libedataserver1.2-9 libeel2-2.20 libepc-1.0-1
8928 libepc-ui-1.0-1 libexchange-storage1.2-3 libfaad0 libgadu3
8929 libgalago3 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
8930 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
8931 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
8932 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtk-vnc-1.0-0
8933 libgtkhtml2-0 libgtksourceview1.0-0 libgtksourceview2.0-0
8934 libgucharmap6 libhesiod0 libicu38 libisccc50 libisccfg50 libiw29
8935 libjaxp1.3-java-gcj libkpathsea4 liblircclient0 libltdl3 liblwres50
8936 libmagick++10 libmagick10 libmalaga7 libmozjs1d libmpfr1ldbl libmtp7
8937 libmysqlclient15off libnautilus-burn4 libneon27 libnm-glib0
8938 libnm-util0 libopal-2.2 libosp5 libparted1.8-10 libpisock9
8939 libpisync1 libpoppler-glib3 libpoppler3 libpt-1.10.10 libraw1394-8
8940 libsdl1.2debian-alsa libsensors3 libsexy2 libsmbios2 libsoup2.2-8
8941 libspeexdsp1 libssh2-1 libsuitesparse-3.1.0 libsvga1
8942 libswfdec-0.6-90 libtalloc1 libtotem-plparser10 libtrackerclient0
8943 libvoikko1 libxalan2-java-gcj libxerces2-java-gcj libxklavier12
8944 libxtrap6 libxxf86misc1 libzephyr3 mysql-common rhythmbox seahorse
8945 sound-juicer swfdec-gnome system-config-printer totem-common
8946 totem-gstreamer transmission-gtk vinagre vino w3c-dtd-xhtml wodim
8947 &lt;/p&gt;&lt;/blockquote&gt;
8948
8949 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
8950
8951 &lt;blockquote&gt;&lt;p&gt;
8952 gstreamer0.10-gnomevfs
8953 &lt;/p&gt;&lt;/blockquote&gt;
8954
8955 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
8956
8957 &lt;blockquote&gt;&lt;p&gt;
8958 [nothing]
8959 &lt;/p&gt;&lt;/blockquote&gt;
8960
8961 &lt;p&gt;This is for KDE:&lt;/p&gt;
8962
8963 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
8964
8965 &lt;blockquote&gt;&lt;p&gt;
8966 autopoint bomber bovo cantor cantor-backend-kalgebra cpp-4.3 dcoprss
8967 edict espeak espeak-data eyesapplet fifteenapplet finger gettext
8968 ghostscript-x git gnome-audio gnugo granatier gs-common
8969 gstreamer0.10-pulseaudio indi kaddressbook-plugins kalgebra
8970 kalzium-data kanjidic kapman kate-plugins kblocks kbreakout kbstate
8971 kde-icons-mono kdeaccessibility kdeaddons-kfile-plugins
8972 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
8973 kdeedu kdeedu-data kdeedu-kvtml-data kdegames kdegames-card-data
8974 kdegames-mahjongg-data kdegraphics-kfile-plugins kdelirc
8975 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
8976 kdepim-kfile-plugins kdepim-kio-plugins kdessh kdetoys kdewebdev
8977 kdiamond kdnssd kfilereplace kfourinline kgeography-data kigo
8978 killbots kiriki klettres-data kmoon kmrml knewsticker-scripts
8979 kollision kpf krosspython ksirk ksmserver ksquares kstars-data
8980 ksudoku kubrick kweather libasound2-plugins libboost-python1.42.0
8981 libcfitsio3 libconvert-binhex-perl libcrypt-ssleay-perl libdb4.6++
8982 libdjvulibre-text libdotconf1.0 liberror-perl libespeak1
8983 libfinance-quote-perl libgail-common libgsl0ldbl libhtml-parser-perl
8984 libhtml-tableextract-perl libhtml-tagset-perl libhtml-tree-perl
8985 libio-stringy-perl libkdeedu4 libkdegames5 libkiten4 libkpathsea5
8986 libkrossui4 libmailtools-perl libmime-tools-perl
8987 libnews-nntpclient-perl libopenbabel3 libportaudio2 libpulse-browse0
8988 libservlet2.4-java libspeechd2 libtiff-tools libtimedate-perl
8989 libunistring0 liburi-perl libwww-perl libxalan2-java libxerces2-java
8990 lirc luatex marble networkstatus noatun-plugins
8991 openoffice.org-writer2latex palapeli palapeli-data parley
8992 parley-data poster psutils pulseaudio pulseaudio-esound-compat
8993 pulseaudio-module-x11 pulseaudio-utils quanta-data rocs rsync
8994 speech-dispatcher step svgalibg1 texlive-binaries texlive-luatex
8995 ttf-sazanami-gothic
8996 &lt;/p&gt;&lt;/blockquote&gt;
8997
8998 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
8999
9000 &lt;blockquote&gt;&lt;p&gt;
9001 amor artsbuilder atlantik atlantikdesigner blinken bluez-utils cvs
9002 dhcdbd djvulibre-desktop imlib-base imlib11 kalzium kanagram kandy
9003 kasteroids katomic kbackgammon kbattleship kblackbox kbounce kbruch
9004 kcron kdat kdemultimedia-kappfinder-data kdeprint kdict kdvi kedit
9005 keduca kenolaba kfax kfaxview kfouleggs kgeography kghostview
9006 kgoldrunner khangman khexedit kiconedit kig kimagemapeditor
9007 kitchensync kiten kjumpingcube klatin klettres klickety klines
9008 klinkstatus kmag kmahjongg kmailcvt kmenuedit kmid kmilo kmines
9009 kmousetool kmouth kmplot knetwalk kodo kolf kommander konquest kooka
9010 kpager kpat kpdf kpercentage kpilot kpoker kpovmodeler krec
9011 kregexpeditor kreversi ksame ksayit kshisen ksig ksim ksirc ksirtet
9012 ksmiletris ksnake ksokoban kspaceduel kstars ksvg ksysv kteatime
9013 ktip ktnef ktouch ktron kttsd ktuberling kturtle ktux kuickshow
9014 kverbos kview kviewshell kvoctrain kwifimanager kwin kwin4 kwordquiz
9015 kworldclock kxsldbg libakode2 libarts1-akode libarts1-audiofile
9016 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
9017 libavahi-core5 libavc1394-0 libbind9-50 libbluetooth2
9018 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0
9019 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
9020 libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0 libicu38
9021 libiec61883-0 libindex0 libisccc50 libisccfg50 libiw29
9022 libjaxp1.3-java-gcj libk3b3 libkcal2b libkcddb1 libkdeedu3
9023 libkdegames1 libkdepim1a libkgantt0 libkleopatra1 libkmime2
9024 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
9025 libksieve0 libktnef1 liblockdev1 libltdl3 liblwres50 libmagick10
9026 libmimelib1c2a libmodplug0c2 libmozjs1d libmpcdec3 libmpfr1ldbl
9027 libneon27 libnm-util0 libopensync0 libpisock9 libpoppler-glib3
9028 libpoppler-qt2 libpoppler3 libraw1394-8 librss1 libsensors3
9029 libsmbios2 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90
9030 libtalloc1 libxalan2-java-gcj libxerces2-java-gcj libxtrap6 lskat
9031 mpeglib network-manager-kde noatun pmount tex-common texlive-base
9032 texlive-common texlive-doc-base texlive-fonts-recommended tidy
9033 ttf-dustin ttf-kochi-gothic ttf-sjfonts
9034 &lt;/p&gt;&lt;/blockquote&gt;
9035
9036 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
9037
9038 &lt;blockquote&gt;&lt;p&gt;
9039 dolphin kde-core kde-plasma-desktop kde-standard kde-window-manager
9040 kdeartwork kdebase kdebase-apps kdebase-workspace
9041 kdebase-workspace-bin kdebase-workspace-data kdeutils kscreensaver
9042 kscreensaver-xsavers libgle3 libkonq5 libkonq5-templates libnetpbm10
9043 netpbm plasma-widget-folderview plasma-widget-networkmanagement
9044 xscreensaver-data-extra xscreensaver-gl xscreensaver-gl-extra
9045 xscreensaver-screensaver-bsod
9046 &lt;/p&gt;&lt;/blockquote&gt;
9047
9048 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
9049
9050 &lt;blockquote&gt;&lt;p&gt;
9051 kdebase-bin konq-plugins konqueror
9052 &lt;/p&gt;&lt;/blockquote&gt;
9053 </description>
9054 </item>
9055
9056 <item>
9057 <title>Gnash buildbot slave and Debian kfreebsd</title>
9058 <link>http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</link>
9059 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</guid>
9060 <pubDate>Sat, 20 Nov 2010 07:20:00 +0100</pubDate>
9061 <description>&lt;p&gt;Answering
9062 &lt;a href=&quot;http://www.listware.net/201011/gnash-dev/67431-gnash-dev-buildbot-looking-for-slaves.html&quot;&gt;the
9063 call from the Gnash project&lt;/a&gt; for
9064 &lt;a href=&quot;http://www.gnashdev.org:8010&quot;&gt;buildbot&lt;/a&gt; slaves to test the
9065 current source, I have set up a virtual KVM machine on the Debian
9066 Edu/Skolelinux virtualization host to test the git source on
9067 Debian/Squeeze. I hope this can help the developers in getting new
9068 releases out more often.&lt;/p&gt;
9069
9070 &lt;p&gt;As the developers want less main-stream build platforms tested to,
9071 I have considered setting up a &lt;a
9072 href=&quot;http://www.debian.org/ports/kfreebsd-gnu/&quot;&gt;Debian/kfreebsd&lt;/a&gt;
9073 machine as well. I have also considered using the kfreebsd
9074 architecture in Debian as a file server in NUUG to get access to the 5
9075 TB zfs volume we currently use to store DV video. Because of this, I
9076 finally got around to do a test installation of Debian/Squeeze with
9077 kfreebsd. Installation went fairly smooth, thought I noticed some
9078 visual glitches in the cdebconf dialogs (black cursor left on the
9079 screen at random locations). Have not gotten very far with the
9080 testing. Noticed cfdisk did not work, but fdisk did so it was not a
9081 fatal problem. Have to spend some more time on it to see if it is
9082 useful as a file server for NUUG. Will try to find time to set up a
9083 gnash buildbot slave on the Debian Edu/Skolelinux this weekend.&lt;/p&gt;
9084 </description>
9085 </item>
9086
9087 <item>
9088 <title>Making room on the Debian Edu/Sqeeze DVD</title>
9089 <link>http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</link>
9090 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</guid>
9091 <pubDate>Sun, 7 Nov 2010 11:45:00 +0100</pubDate>
9092 <description>&lt;p&gt;Prioritising packages for the Debian Edu /
9093 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; DVD, which is
9094 supposed provide a school with all the services and user applications
9095 needed on the pupils computer network has always been hard. Even
9096 schools without Internet connections should be able to get Debian Edu
9097 working using this DVD.&lt;/p&gt;
9098
9099 &lt;p&gt;The job became a lot harder when apt and aptitude started
9100 installing recommended packages by default. We want the same set of
9101 packages to be installed when using the DVD and the netinst CD, and
9102 that means all recommended packages need to be on the DVD. I created
9103 a patch for debian-cd in &lt;a href=&quot;http://bugs.debian.org/601203&quot;&gt;BTS
9104 report #601203&lt;/a&gt; to do this, and since this change was applied to
9105 the Debian Edu DVD build, we have been seriously short on space.&lt;/p&gt;
9106
9107 &lt;p&gt;A few days ago we decided to drop blender, wxmaxima and kicad from
9108 the default installation to save space on the DVD, believing that
9109 those needing these applications are few and can get them from the
9110 Debian archive.&lt;/p&gt;
9111
9112 &lt;p&gt;Yesterday, I had a look what source packages to see which packages
9113 were using most space. A few large packages are well know;
9114 openoffice.org, openclipart and fluid-soundfont. But I also
9115 discovered that lilypond used 106 MiB and fglrx-driver used 53 MiB.
9116 The lilypond package is pulled in as a dependency for rosegarden, and
9117 when looking a bit closer I discovered that 99 MiB of the 106 MiB were
9118 the documentation package, which is recommended by the binary package.
9119 I decided to drop this documentation package from our DVD, as most of
9120 our users will use the GUI front-ends and do not need the lilypond
9121 documentation. Similarly, I dropped the non-free fglrx-driver package
9122 which might be installed by d-i when its hardware is detected, as the
9123 free X driver should work.&lt;/p&gt;
9124
9125 &lt;p&gt;With this change, we finally got space for the LXDE and Gnome
9126 desktop packages as well as the language specific packages making the
9127 DVD more useful again.&lt;/p&gt;
9128 </description>
9129 </item>
9130
9131 <item>
9132 <title>Software updates 2010-10-24</title>
9133 <link>http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</link>
9134 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</guid>
9135 <pubDate>Sun, 24 Oct 2010 22:45:00 +0200</pubDate>
9136 <description>&lt;p&gt;Some updates.&lt;/p&gt;
9137
9138 &lt;p&gt;My &lt;a href=&quot;http://pledgebank.com/gnash-avm2&quot;&gt;gnash pledge&lt;/a&gt; to
9139 raise money for the project is going well. The lower limit of 10
9140 signers was reached in 24 hours, and so far 13 people have signed it.
9141 More signers and more funding is most welcome, and I am really curious
9142 how far we can get before the time limit of December 24 is reached.
9143 :)&lt;/p&gt;
9144
9145 &lt;p&gt;On the #gnash IRC channel on irc.freenode.net, I was just tipped
9146 about what appear to be a great code coverage tool capable of
9147 generating code coverage stats without any changes to the source code.
9148 It is called
9149 &lt;a href=&quot;http://simonkagstrom.github.com/kcov/index.html&quot;&gt;kcov&lt;/a&gt;,
9150 and can be used using &lt;tt&gt;kcov &amp;lt;directory&amp;gt; &amp;lt;binary&amp;gt;&lt;/tt&gt;.
9151 It is missing in Debian, but the git source built just fine in Squeeze
9152 after I installed libelf-dev, libdwarf-dev, pkg-config and
9153 libglib2.0-dev. Failed to build in Lenny, but suspect that is
9154 solvable. I hope kcov make it into Debian soon.&lt;/p&gt;
9155
9156 &lt;p&gt;Finally found time to wrap up the release notes for &lt;a
9157 href=&quot;http://lists.debian.org/debian-edu-announce/2010/10/msg00002.html&quot;&gt;a
9158 new alpha release of Debian Edu&lt;/a&gt;, and just published the second
9159 alpha test release of the Squeeze based Debian Edu /
9160 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;
9161 release. Give it a try if you need a complete linux solution for your
9162 school, including central infrastructure server, workstations, thin
9163 client servers and diskless workstations. A nice touch added
9164 yesterday is RDP support on the thin client servers, for windows
9165 clients to get a Linux desktop on request.&lt;/p&gt;
9166 </description>
9167 </item>
9168
9169 <item>
9170 <title>Some notes on Flash in Debian and Debian Edu</title>
9171 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</link>
9172 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</guid>
9173 <pubDate>Sat, 4 Sep 2010 10:10:00 +0200</pubDate>
9174 <description>&lt;p&gt;In the &lt;a href=&quot;http://popcon.debian.org/unknown/by_vote&quot;&gt;Debian
9175 popularity-contest numbers&lt;/a&gt;, the adobe-flashplugin package the
9176 second most popular used package that is missing in Debian. The sixth
9177 most popular is flashplayer-mozilla. This is a clear indication that
9178 working flash is important for Debian users. Around 10 percent of the
9179 users submitting data to popcon.debian.org have this package
9180 installed.&lt;/p&gt;
9181
9182 &lt;p&gt;In the report written by Lars Risan in August 2008
9183&lt;a href=&quot;http://wiki.skolelinux.no/Dokumentasjon/Rapporter?action=AttachFile&amp;do=view&amp;target=Skolelinux_i_bruk_rapport_1.0.pdf&quot;&gt;Skolelinux
9184 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
9185 stiftelsen SLX Debian Labs&lt;/a&gt;»), one of the most important problems
9186 schools experienced with &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
9187 Edu/Skolelinux&lt;/a&gt; was the lack of working Flash. A lot of educational
9188 web sites require Flash to work, and lacking working Flash support in
9189 the web browser and the problems with installing it was perceived as a
9190 good reason to stay with Windows.&lt;/p&gt;
9191
9192 &lt;p&gt;I once saw a funny and sad comment in a web forum, where Linux was
9193 said to be the retarded cousin that did not really understand
9194 everything you told him but could work fairly well. This was a
9195 comment regarding the problems Linux have with proprietary formats and
9196 non-standard web pages, and is sad because it exposes a fairly common
9197 understanding of whose fault it is if web pages that only work in for
9198 example Internet Explorer 6 fail to work on Firefox, and funny because
9199 it explain very well how annoying it is for users when Linux
9200 distributions do not work with the documents they receive or the web
9201 pages they want to visit.&lt;/p&gt;
9202
9203 &lt;p&gt;This is part of the reason why I believe it is important for Debian
9204 and Debian Edu to have a well working Flash implementation in the
9205 distribution, to get at least popular sites as Youtube and Google
9206 Video to working out of the box. For Squeeze, Debian have the chance
9207 to include the latest version of Gnash that will make this happen, as
9208 the new release 0.8.8 was published a few weeks ago and is resting in
9209 unstable. The new version work with more sites that version 0.8.7.
9210 The Gnash maintainers have asked for a freeze exception, but the
9211 release team have not had time to reply to it yet. I hope they agree
9212 with me that Flash is important for the Debian desktop users, and thus
9213 accept the new package into Squeeze.&lt;/p&gt;
9214 </description>
9215 </item>
9216
9217 <item>
9218 <title>Broken hard link handling with sshfs</title>
9219 <link>http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</link>
9220 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</guid>
9221 <pubDate>Mon, 30 Aug 2010 19:30:00 +0200</pubDate>
9222 <description>&lt;p&gt;Just got an email from Tobias Gruetzmacher as a followup on my
9223 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html&quot;&gt;previous
9224 post about sshfs&lt;/a&gt;. He reported another problem with sshfs. It
9225 fail to handle hard links properly. A simple way to spot this is to
9226 look at the . and .. entries in the directory tree. These should have
9227 a link count &gt;1, but on sshfs the count is 1. I just tested to see
9228 what happen when trying to hardlink, and this fail as well:&lt;/p&gt;
9229
9230 &lt;pre&gt;
9231 % ln foo bar
9232 ln: creating hard link `bar&#39; =&gt; `foo&#39;: Function not implemented
9233 %
9234 &lt;/pre&gt;
9235
9236 &lt;p&gt;I have not yet found time to implement a test for this in my file
9237 system test code, but believe having working hard links is useful to
9238 avoid surprised unix programs. Not as useful as working file locking
9239 and symlinks, which are required to get a working desktop, but useful
9240 nevertheless. :)&lt;/p&gt;
9241
9242 &lt;p&gt;The latest version of the file system test code is available via
9243 git from
9244 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;&lt;/p&gt;
9245 </description>
9246 </item>
9247
9248 <item>
9249 <title>Skolelinux i Osloskolen</title>
9250 <link>http://people.skolelinux.org/pere/blog/Skolelinux_i_Osloskolen.html</link>
9251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_i_Osloskolen.html</guid>
9252 <pubDate>Thu, 26 Aug 2010 22:25:00 +0200</pubDate>
9253 <description>&lt;p&gt;Denne høsten skal endelig alle Osloskolene få mulighet til å bruke
9254 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;. Ny IT-løsning
9255 har vært rullet ut i noen måneder nå, og så vidt jeg fikk vite før
9256 sommeren skulle alle skoler ha nytt opplegg på plass før oppstart nå i
9257 høst. På alle skolene skal en kunne velge ved installasjon om en skal
9258 ha Windows eller Skolelinux på maskinene, og en kan i tillegg
9259 PXE-boote maskinene over nett som tynne klienter eller diskløse
9260 arbeidsstasjoner. Jeg er spent på hvor mange skoler som velger å ta i
9261 bruk Skolelinux, og gleder meg til å se hvordan dette utvikler seg.
9262 Løsningen leveres av
9263 &lt;a href=&quot;http://www.logica.no/&quot;&gt;Logica&lt;/a&gt; med
9264 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; som
9265 underleverandør, og jeg har vært involvert i utviklingen av løsningen
9266 via Skolelinux Drift AS siden prosjektet starter. Jeg synes det er
9267 fantastisk at Skolelinux er kommet så langt siden vi startet i 2001 at
9268 alle elevene i Osloskolene nå skal få mulighet til å bruke
9269 løsningen. Jeg håper de vil sette pris på alle de
9270 &lt;a href=&quot;http://www.skolelinux.no/linux-signpost/&quot;&gt;fantastiske
9271 brukerprogrammene&lt;/a&gt; som er tilgjengelig i Skolelinux.&lt;/p&gt;
9272 </description>
9273 </item>
9274
9275 <item>
9276 <title>Broken umask handling with sshfs</title>
9277 <link>http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</link>
9278 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</guid>
9279 <pubDate>Thu, 26 Aug 2010 13:30:00 +0200</pubDate>
9280 <description>&lt;p&gt;My file system sematics program
9281 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html&quot;&gt;presented
9282 a few days ago&lt;/a&gt; is very useful to verify that a file system can
9283 work as a unix home directory,and today I had to extend it a bit. I&#39;m
9284 looking into alternatives for home directory access here at the
9285 University of Oslo, and one of the options is sshfs. My friend
9286 Finn-Arne mentioned a while back that they had used sshfs with Debian
9287 Edu, but stopped because of problems. I asked today what the problems
9288 where, and he mentioned that sshfs failed to handle umask properly.
9289 Trying to detect the problem I wrote this addition to my fs testing
9290 script:&lt;/p&gt;
9291
9292 &lt;pre&gt;
9293 mode_t touch_get_mode(const char *name, mode_t mode) {
9294 mode_t retval = 0;
9295 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, mode);
9296 if (-1 != fd) {
9297 unlink(name);
9298 struct stat statbuf;
9299 if (-1 != fstat(fd, &amp;statbuf)) {
9300 retval = statbuf.st_mode &amp; 0x1ff;
9301 }
9302 close(fd);
9303 }
9304 return retval;
9305 }
9306
9307 /* Try to detect problem discovered using sshfs */
9308 int test_umask(void) {
9309 printf(&quot;info: testing umask effect on file creation\n&quot;);
9310
9311 mode_t orig_umask = umask(000);
9312 mode_t newmode;
9313 if (0666 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
9314 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 000\n&quot;,
9315 newmode);
9316 }
9317 umask(007);
9318 if (0660 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
9319 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 007\n&quot;,
9320 newmode);
9321 }
9322
9323 umask (orig_umask);
9324 return 0;
9325 }
9326
9327 int main(int argc, char **argv) {
9328 [...]
9329 test_umask();
9330 return 0;
9331 }
9332 &lt;/pre&gt;
9333
9334 &lt;p&gt;Sure enough. On NFS to a netapp, I get this result:&lt;/p&gt;
9335
9336 &lt;pre&gt;
9337 Testing POSIX/Unix sematics on file system
9338 info: testing symlink creation
9339 info: testing subdirectory creation
9340 info: testing fcntl locking
9341 Read-locking 1 byte from 1073741824
9342 Read-locking 510 byte from 1073741826
9343 Unlocking 1 byte from 1073741824
9344 Write-locking 1 byte from 1073741824
9345 Write-locking 510 byte from 1073741826
9346 Unlocking 2 byte from 1073741824
9347 info: testing umask effect on file creation
9348 &lt;/pre&gt;
9349
9350 &lt;p&gt;When mounting the same directory using sshfs, I get this
9351 result:&lt;/p&gt;
9352
9353 &lt;pre&gt;
9354 Testing POSIX/Unix sematics on file system
9355 info: testing symlink creation
9356 info: testing subdirectory creation
9357 info: testing fcntl locking
9358 Read-locking 1 byte from 1073741824
9359 Read-locking 510 byte from 1073741826
9360 Unlocking 1 byte from 1073741824
9361 Write-locking 1 byte from 1073741824
9362 Write-locking 510 byte from 1073741826
9363 Unlocking 2 byte from 1073741824
9364 info: testing umask effect on file creation
9365 error: Wrong file mode 644 when creating using mode 666 and umask 000
9366 error: Wrong file mode 640 when creating using mode 666 and umask 007
9367 &lt;/pre&gt;
9368
9369 &lt;p&gt;So, I can conclude that sshfs is better than smb to a Netapp or a
9370 Windows server, but not good enough to be used as a home
9371 directory.&lt;/p&gt;
9372
9373 &lt;p&gt;Update 2010-08-26: Reported the issue in
9374 &lt;a href=&quot;http://bugs.debian.org/594498&quot;&gt;BTS report #594498&lt;/a&gt;&lt;/p&gt;
9375
9376 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
9377 script so useful that he created a GIT repository and stored it in
9378 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
9379 </description>
9380 </item>
9381
9382 <item>
9383 <title>No hardcoded config on Debian Edu clients</title>
9384 <link>http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</link>
9385 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</guid>
9386 <pubDate>Mon, 9 Aug 2010 20:15:00 +0200</pubDate>
9387 <description>&lt;p&gt;As reported earlier, the last few days I have looked at how Debian
9388 Edu clients are configured, and tried to get rid of all hardcoded
9389 configuration settings on the clients. I believe the work to be
9390 mostly done, and the clients seem to work just fine with dynamically
9391 generated configuration.&lt;/p&gt;
9392
9393 &lt;p&gt;What is the point, you might ask? The point is to allow a Debian
9394 Edu desktop to integrate into an existing network infrastructure
9395 without any manual configuration.&lt;/p&gt;
9396
9397 &lt;p&gt;This is what happens when installing a Debian Edu client here at
9398 the University of Oslo using PXE. With the PXE installation, I am
9399 asked for language (Norwegian Bokmål), locality (Norway) and keyboard
9400 layout (no-latin1), Debian Edu profile (Roaming Workstation), if I
9401 accept to reformat the hard drive (yes), if I want to submit info to
9402 popcon.debian.org (no) and root password (secret). After answering
9403 these questions, the installer goes ahead and does its thing, and
9404 after around 50 minutes it is done. I press enter to finish the
9405 installation, and the machine reboots into KDE. When the machine is
9406 ready and kdm asks for login information, I enter my university
9407 username and password, am told by kdm that a local home directory has
9408 been created and that I must log in again, and finally log in with the
9409 same username and password to the KDE 4.4 desktop. At no point during
9410 this process did it ask for university specific settings, and all the
9411 required configuration was dynamically detected using information
9412 fetched via DHCP and DNS. The roaming workstation is now ready for
9413 use.&lt;/p&gt;
9414
9415 &lt;p&gt;How was this done, you might wonder? First of all, here is the
9416 list of things that need to be configured on the client to get it
9417 working properly out of the box:&lt;/p&gt;
9418
9419 &lt;ul&gt;
9420 &lt;li&gt;IP address/netmask and DNS server.&lt;/li&gt;
9421 &lt;li&gt;Web proxy URL.&lt;/li&gt;
9422 &lt;li&gt;LDAP server for NSS directory information (user, group, etc).&lt;/li&gt;
9423 &lt;li&gt;Kerberos server for PAM password checking.&lt;/li&gt;
9424 &lt;li&gt;SMB mount point to access the network home directory. (*)&lt;/li&gt;
9425 &lt;li&gt;Central syslog server to send syslog messages to. (*)&lt;/li&gt;
9426 &lt;li&gt;Sitesummary collector URL to submit info to central server. (*)&lt;/li&gt;
9427 &lt;/ul&gt;
9428
9429 &lt;p&gt;(Hm, did I forget anything? Let me knew if I did.)&lt;/p&gt;
9430
9431 &lt;p&gt;The points marked (*) are not required to be able to use the
9432 machine, but needed to provide central storage and allowing system
9433 administrators to track their machines. Since yesterday, everything
9434 but the sitesummary collector URL is dynamically discovered at boot
9435 and installation time in the svn version of Debian Edu.&lt;/p&gt;
9436
9437 &lt;p&gt;The IP and DNS setup is fetched during boot using DHCP as usual.
9438 When a DHCP update arrives, the proxy setup is updated by looking for
9439 http://wpat/wpad.dat and using the content of this WPAD file to
9440 configure the http and ftp proxy in /etc/environment and
9441 /etc/apt/apt.conf. I decided to update the proxy setup using a DHCP
9442 hook to ensure that the client stops using the Debian Edu proxy when
9443 it is moved outside the Debian Edu network, and instead uses any local
9444 proxy present on the new network when it moves around.&lt;/p&gt;
9445
9446 &lt;p&gt;The DNS names of the LDAP, Kerberos and syslog server and related
9447 configuration are generated using DNS information at boot. First the
9448 installer looks for a host named ldap in the current DNS domain. If
9449 not found, it looks for _ldap._tcp SRV records in DNS instead. If an
9450 LDAP server is found, its root DSE entry is requested and the
9451 attributes namingContexts and defaultNamingContext are used to
9452 determine which LDAP base to use for NSS. If there are several
9453 namingContexts attibutes and the defaultNamingContext is present, that
9454 LDAP subtree is used as the base. If defaultNamingContext is missing,
9455 the subtrees listed as namingContexts are searched in sequence for any
9456 object with class posixAccount or posixGroup, and the first one with
9457 such an object is used as the LDAP base. For Kerberos, a similar
9458 search is done by first looking for a host named kerberos, and then
9459 for the _kerberos._tcp SRV record. I&#39;ve been unable to find a way to
9460 look up the Kerberos realm, so for this the upper case string of the
9461 current DNS domain is used.&lt;/p&gt;
9462
9463 &lt;p&gt;For the syslog server, the hosts syslog and loghost are searched
9464 for, and the _syslog._udp SRV record is consulted if no such host is
9465 found. This algorithm works for both Debian Edu and the University of
9466 Oslo. A similar strategy would work for locating the sitesummary
9467 server, but have not been implemented yet. I decided to fetch and
9468 save these settings during installation, to make sure moving to a
9469 different network does not change the set of users being allowed to
9470 log in nor the passwords required to log in. Usernames and passwords
9471 will be cached by sssd when the user logs in on the Debian Edu
9472 network, and will not change as the laptop move around. For a
9473 non-roaming machine, there is no caching, but given that it is
9474 supposed to stay in place it should not matter much. Perhaps we
9475 should switch those to use sssd too?&lt;/p&gt;
9476
9477 &lt;p&gt;The user&#39;s SMB mount point for the network home directory is
9478 located when the user logs in for the first time. The LDAP server is
9479 consulted to look for the user&#39;s LDAP object and the sambaHomePath
9480 attribute is used if found. If it isn&#39;t found, the home directory
9481 path fetched from NSS is used instead. Assuming the path is of the
9482 form /site/server/directory/username, the second part is looked up in
9483 DNS and used to generate a SMB URL of the form
9484 smb://server.domain/username. This algorithm works for both Debian
9485 edu and the University of Oslo. Perhaps there are better attributes
9486 to use or a better algorithm that works for more sites, but this will
9487 do for now. :)&lt;/p&gt;
9488
9489 &lt;p&gt;This work should make it easier to integrate the Debian Edu clients
9490 into any LDAP/Kerberos infrastructure, and make the current setup even
9491 more flexible than before. I suspect it will also work for thin
9492 client servers, allowing one to easily set up LTSP and hook it into a
9493 existing network infrastructure, but I have not had time to test this
9494 yet.&lt;/p&gt;
9495
9496 &lt;p&gt;If you want to help out with implementing these things for Debian
9497 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
9498
9499 &lt;p&gt;Update 2010-08-09: Simon Farnsworth gave me a heads-up on how to
9500 detect Kerberos realm from DNS, by looking for _kerberos TXT entries
9501 before falling back to the upper case DNS domain name. Will have to
9502 implement it for Debian Edu. :)&lt;/p&gt;
9503 </description>
9504 </item>
9505
9506 <item>
9507 <title>Testing if a file system can be used for home directories...</title>
9508 <link>http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</link>
9509 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</guid>
9510 <pubDate>Sun, 8 Aug 2010 21:20:00 +0200</pubDate>
9511 <description>&lt;p&gt;A few years ago, I was involved in a project planning to use
9512 Windows file servers as home directory servers for Debian
9513 Edu/Skolelinux machines. This was thought to be no problem, as the
9514 access would be through the SMB network file system protocol, and we
9515 knew other sites used SMB with unix and samba as the file server to
9516 mount home directories without any problems. But, after months of
9517 struggling, we had to conclude that our goal was impossible.&lt;/p&gt;
9518
9519 &lt;p&gt;The reason is simply that while SMB can be used for home
9520 directories when the file server is Samba running on Unix, this only
9521 work because of Samba have some extensions and the fact that the
9522 underlying file system is a unix file system. When using a Windows
9523 file server, the underlying file system do not have POSIX semantics,
9524 and several programs will fail if the users home directory where they
9525 want to store their configuration lack POSIX semantics.&lt;/p&gt;
9526
9527 &lt;p&gt;As part of this work, I wrote a small C program I want to share
9528 with you all, to replicate a few of the problematic applications (like
9529 OpenOffice.org and GCompris) and see if the file system was working as
9530 it should. If you find yourself in spooky file system land, it might
9531 help you find your way out again. This is the fs-test.c source:&lt;/p&gt;
9532
9533 &lt;pre&gt;
9534 /*
9535 * Some tests to check the file system sematics. Used to verify that
9536 * CIFS from a windows server do not work properly as a linux home
9537 * directory.
9538 * License: GPL v2 or later
9539 *
9540 * needs libsqlite3-dev and build-essential installed
9541 * compile with: gcc -Wall -lsqlite3 -DTEST_SQLITE fs-test.c -o fs-test
9542 */
9543
9544 #define _FILE_OFFSET_BITS 64
9545 #define _LARGEFILE_SOURCE 1
9546 #define _LARGEFILE64_SOURCE 1
9547
9548 #define _GNU_SOURCE /* for asprintf() */
9549
9550 #include &amp;lt;errno.h&gt;
9551 #include &amp;lt;fcntl.h&gt;
9552 #include &amp;lt;stdio.h&gt;
9553 #include &amp;lt;string.h&gt;
9554 #include &amp;lt;stdlib.h&gt;
9555 #include &amp;lt;sys/file.h&gt;
9556 #include &amp;lt;sys/stat.h&gt;
9557 #include &amp;lt;sys/types.h&gt;
9558 #include &amp;lt;unistd.h&gt;
9559
9560 #ifdef TEST_SQLITE
9561 /*
9562 * Test sqlite open, as done by gcompris require the libsqlite3-dev
9563 * package and linking with -lsqlite3. A more low level test is
9564 * below.
9565 * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
9566 */
9567 #include &amp;lt;sqlite3.h&gt;
9568 #define CREATE_TABLE_USERS \
9569 &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
9570 int test_sqlite_open(void) {
9571 char *zErrMsg;
9572 char *name = &quot;testsqlite.db&quot;;
9573 sqlite3 *db=NULL;
9574 unlink(name);
9575 int rc = sqlite3_open(name, &amp;db);
9576 if( rc ){
9577 printf(&quot;error: sqlite open of %s failed: %s\n&quot;, name, sqlite3_errmsg(db));
9578 sqlite3_close(db);
9579 return -1;
9580 }
9581
9582 /* create tables */
9583 rc = sqlite3_exec(db,CREATE_TABLE_USERS, NULL, 0, &amp;zErrMsg);
9584 if( rc != SQLITE_OK ){
9585 printf(&quot;error: sqlite table create failed: %s\n&quot;, zErrMsg);
9586 sqlite3_close(db);
9587 return -1;
9588 }
9589 printf(&quot;info: sqlite worked\n&quot;);
9590 sqlite3_close(db);
9591 return 0;
9592 }
9593 #endif /* TEST_SQLITE */
9594
9595 /*
9596 * Demonstrate locking issue found in gcompris using sqlite3. This
9597 * work with ext3, but not with cifs server on Windows 2003. This is
9598 * done in the sqlite3 library.
9599 * See also
9600 * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
9601 * POSIX specification
9602 * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
9603 */
9604 int test_gcompris_locking(void) {
9605 struct flock fl;
9606 char *name = &quot;testsqlite.db&quot;;
9607 unlink(name);
9608 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, 0644);
9609 printf(&quot;info: testing fcntl locking\n&quot;);
9610
9611 fl.l_whence = SEEK_SET;
9612 fl.l_pid = getpid();
9613 printf(&quot; Read-locking 1 byte from 1073741824&quot;);
9614 fl.l_start = 1073741824;
9615 fl.l_len = 1;
9616 fl.l_type = F_RDLCK;
9617 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9618
9619 printf(&quot; Read-locking 510 byte from 1073741826&quot;);
9620 fl.l_start = 1073741826;
9621 fl.l_len = 510;
9622 fl.l_type = F_RDLCK;
9623 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9624
9625 printf(&quot; Unlocking 1 byte from 1073741824&quot;);
9626 fl.l_start = 1073741824;
9627 fl.l_len = 1;
9628 fl.l_type = F_UNLCK;
9629 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9630
9631 printf(&quot; Write-locking 1 byte from 1073741824&quot;);
9632 fl.l_start = 1073741824;
9633 fl.l_len = 1;
9634 fl.l_type = F_WRLCK;
9635 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9636
9637 printf(&quot; Write-locking 510 byte from 1073741826&quot;);
9638 fl.l_start = 1073741826;
9639 fl.l_len = 510;
9640 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9641
9642 printf(&quot; Unlocking 2 byte from 1073741824&quot;);
9643 fl.l_start = 1073741824;
9644 fl.l_len = 2;
9645 fl.l_type = F_UNLCK;
9646 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
9647
9648 close(fd);
9649 return 0;
9650 }
9651
9652 /*
9653 * Test if permissions of freshly created directories allow entries
9654 * below them. This was a problem with OpenOffice.org and gcompris.
9655 * Mounting with option &#39;sync&#39; seem to solve this problem while
9656 * slowing down file operations.
9657 */
9658 int test_subdirectory_creation(void) {
9659 #define LEVELS 5
9660 char *path = strdup(&quot;test&quot;);
9661 char *dirs[LEVELS];
9662 int level;
9663 printf(&quot;info: testing subdirectory creation\n&quot;);
9664 for (level = 0; level &amp;lt; LEVELS; level++) {
9665 char *newpath = NULL;
9666 if (-1 == mkdir(path, 0777)) {
9667 printf(&quot; error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
9668 path, strerror(errno));
9669 break;
9670 }
9671 asprintf(&amp;newpath, &quot;%s/%s&quot;, path, &quot;test&quot;);
9672 free(path);
9673 path = newpath;
9674 }
9675 return 0;
9676 }
9677
9678 /*
9679 * Test if symlinks can be created. This was a problem detected with
9680 * KDE.
9681 */
9682 int test_symlinks(void) {
9683 printf(&quot;info: testing symlink creation\n&quot;);
9684 unlink(&quot;symlink&quot;);
9685 if (-1 == symlink(&quot;file&quot;, &quot;symlink&quot;))
9686 printf(&quot; error: Unable to create symlink\n&quot;);
9687 return 0;
9688 }
9689
9690 int main(int argc, char **argv) {
9691 printf(&quot;Testing POSIX/Unix sematics on file system\n&quot;);
9692 test_symlinks();
9693 test_subdirectory_creation();
9694 #ifdef TEST_SQLITE
9695 test_sqlite_open();
9696 #endif /* TEST_SQLITE */
9697 test_gcompris_locking();
9698 return 0;
9699 }
9700 &lt;/pre&gt;
9701
9702 &lt;p&gt;When everything is working, it should print something like
9703 this:&lt;/p&gt;
9704
9705 &lt;pre&gt;
9706 Testing POSIX/Unix sematics on file system
9707 info: testing symlink creation
9708 info: testing subdirectory creation
9709 info: sqlite worked
9710 info: testing fcntl locking
9711 Read-locking 1 byte from 1073741824
9712 Read-locking 510 byte from 1073741826
9713 Unlocking 1 byte from 1073741824
9714 Write-locking 1 byte from 1073741824
9715 Write-locking 510 byte from 1073741826
9716 Unlocking 2 byte from 1073741824
9717 &lt;/pre&gt;
9718
9719 &lt;p&gt;I do not remember the exact details of the problems we saw, but one
9720 of them was with locking, where if I remember correctly, POSIX allow a
9721 read-only lock to be upgraded to a read-write lock without unlocking
9722 the read-only lock (while Windows do not). Another was a bug in the
9723 CIFS/SMB client implementation in the Linux kernel where directory
9724 meta information would be wrong for a fraction of a second, making
9725 OpenOffice.org fail to create its deep directory tree because it was
9726 not allowed to create files in its freshly created directory.&lt;/p&gt;
9727
9728 &lt;p&gt;Anyway, here is a nice tool for your tool box, might you never need
9729 it. :)&lt;/p&gt;
9730
9731 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
9732 script so useful that he created a GIT repository and stored it in
9733 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
9734 </description>
9735 </item>
9736
9737 <item>
9738 <title>Autodetecting Client setup for roaming workstations in Debian Edu</title>
9739 <link>http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</link>
9740 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</guid>
9741 <pubDate>Sat, 7 Aug 2010 14:45:00 +0200</pubDate>
9742 <description>&lt;p&gt;A few days ago, I
9743 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html&quot;&gt;tried
9744 to install&lt;/a&gt; a Roaming workation profile from Debian Edu/Squeeze
9745 while on the university network here at the University of Oslo, and
9746 noticed how much had to change to get it operational using the
9747 university infrastructure. It was fairly easy, but it occured to me
9748 that Debian Edu would improve a lot if I could get the client to
9749 connect without any changes at all, and thus let the client configure
9750 itself during installation and first boot to use the infrastructure
9751 around it. Now I am a huge step further along that road.&lt;/p&gt;
9752
9753 &lt;p&gt;With our current squeeze-test packages, I can select the roaming
9754 workstation profile and get a working laptop connecting to the
9755 university LDAP server for user and group and our active directory
9756 servers for Kerberos authentication. All this without any
9757 configuration at all during installation. My users home directory got
9758 a bookmark in the KDE menu to mount it via SMB, with the correct URL.
9759 In short, openldap and sssd is correctly configured. In addition to
9760 this, the client look for http://wpad/wpad.dat to configure a web
9761 proxy, and when it fail to find it no proxy settings are stored in
9762 /etc/environment and /etc/apt/apt.conf. Iceweasel and KDE is
9763 configured to look for the same wpad configuration and also do not use
9764 a proxy when at the university network. If the machine is moved to a
9765 network with such wpad setup, it would automatically use it when DHCP
9766 gave it a IP address.&lt;/p&gt;
9767
9768 &lt;p&gt;The LDAP server is located using DNS, by first looking for the DNS
9769 entry ldap.$domain. If this do not exist, it look for the
9770 _ldap._tcp.$domain SRV records and use the first one as the LDAP
9771 server. Next, it connects to the LDAP server and search all
9772 namingContexts entries for posixAccount or posixGroup objects, and
9773 pick the first one as the LDAP base. For Kerberos, a similar
9774 algorithm is used to locate the LDAP server, and the realm is the
9775 uppercase version of $domain.&lt;/p&gt;
9776
9777 &lt;p&gt;So, what is not working, you might ask. SMB mounting my home
9778 directory do not work. No idea why, but suspected the incorrect
9779 Kerberos settings in /etc/krb5.conf and /etc/samba/smb.conf might be
9780 the cause. These are not properly configured during installation, and
9781 had to be hand-edited to get the correct Kerberos realm and server,
9782 but SMB mounting still do not work. :(&lt;/p&gt;
9783
9784 &lt;p&gt;With this automatic configuration in place, I expect a Debian Edu
9785 roaming profile installation would be able to automatically detect and
9786 connect to any site using LDAP and Kerberos for NSS directory and PAM
9787 authentication. It should also work out of the box in a Active
9788 Directory environment providing posixAccount and posixGroup objects
9789 with UID and GID values.&lt;/p&gt;
9790
9791 &lt;p&gt;If you want to help out with implementing these things for Debian
9792 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
9793 </description>
9794 </item>
9795
9796 <item>
9797 <title>Debian Edu roaming workstation - at the university of Oslo</title>
9798 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</link>
9799 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</guid>
9800 <pubDate>Tue, 3 Aug 2010 23:30:00 +0200</pubDate>
9801 <description>&lt;p&gt;The new roaming workstation profile in Debian Edu/Squeeze is fairly
9802 similar to the laptop setup am I working on using Ubuntu for the
9803 University of Oslo, and just for the heck of it, I tested today how
9804 hard it would be to integrate that profile into the university
9805 infrastructure. In this case, it is the university LDAP server,
9806 Active Directory Kerberos server and SMB mounting from the Netapp file
9807 servers.&lt;/p&gt;
9808
9809 &lt;p&gt;I was pleasantly surprised that the only three files needed to be
9810 changed (/etc/sssd/sssd.conf, /etc/ldap.conf and
9811 /etc/mklocaluser.d/20-debian-edu-config) and one file had to be added
9812 (/usr/share/perl5/Debian/Edu_Local.pm), to get the client working.
9813 Most of the changes were to get the client to use the university LDAP
9814 for NSS and Kerberos server for PAM, but one was to change a hard
9815 coded DNS domain name in the mklocaluser hook from .intern to
9816 .uio.no.&lt;/p&gt;
9817
9818 &lt;p&gt;This testing was so encouraging, that I went ahead and adjusted the
9819 Debian Edu scripts and setup in subversion to centralise the roaming
9820 workstation setup a bit more and avoid the hardcoded DNS domain name,
9821 so that when I test this tomorrow, I expect to get away with modifying
9822 only /etc/sssd/sssd.conf and /etc/ldap.conf to get it to use the
9823 university servers.&lt;/p&gt;
9824
9825 &lt;p&gt;My goal is to get the clients to have no hardcoded settings and
9826 fetch all their initial setup during installation and first boot, to
9827 allow them to be inserted also into environments where the default
9828 setup in Debian Edu has been changed or as with the university, where
9829 the environment is different but provides the protocols Debian Edu
9830 uses.&lt;/p&gt;
9831 </description>
9832 </item>
9833
9834 <item>
9835 <title>First Debian Edu test release (alpha0) based on Squeeze is released</title>
9836 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</link>
9837 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</guid>
9838 <pubDate>Tue, 27 Jul 2010 17:45:00 +0200</pubDate>
9839 <description>&lt;p&gt;I just posted this announcement culminating several months of work
9840 with the next Debian Edu release. Not nearly done, but one major step
9841 completed.&lt;/p&gt;
9842
9843 &lt;blockquote&gt;
9844 &lt;p&gt;This is the first test release based on Squeeze. The focus of this
9845 release is to test the user application selection. To have a look,
9846 install the standalone profile and let the developers know if the set
9847 of installed packages i.e. applications should be modified. If some
9848 user application is missing, or if there are some applications that no
9849 longer make sense to be included in Debian Edu, please let us know.
9850 Also, if a useful application is missing the translation for your
9851 language of choice, please let us know too.&lt;/p&gt;
9852
9853 &lt;p&gt;In addition, feedback and help to polish the desktop (menus,
9854 artwork, starters, etc.) is appreciated. We would like to ship a nice
9855 and handy KDE4 desktop targeted for schools out of the box.&lt;/p&gt;
9856
9857 &lt;p&gt;The other profiles should be installable, but there is a lot more
9858 work left to be done before they are ready, so do not expect to
9859 much.&lt;/p&gt;
9860
9861 &lt;p&gt;Changes compared to the lenny based version&lt;/p&gt;
9862
9863 &lt;ul&gt;
9864 &lt;li&gt;Everything from Debian Squeeze
9865 &lt;ul&gt;
9866 &lt;li&gt;Desktop environment KDE 4.4 =&gt; the new KDE desktop in
9867 combination with some new artwork
9868 &lt;li&gt;Web browser Iceweasel 3.5
9869 &lt;li&gt;OpenOffice.org 3.2
9870 &lt;li&gt;Educational toolbox GCompris 9.3
9871 &lt;li&gt;Music creator Rosegarden 10.04.2
9872 &lt;li&gt;Image editor Gimp 2.6.10
9873 &lt;li&gt;Virtual universe Celestia 1.6.0
9874 &lt;li&gt;Virtual stargazer Stellarium 0.10.4
9875 &lt;li&gt;3D modeler Blender 2.49.2 (new application)
9876 &lt;li&gt;Video editor Kdenlive 0.7.7 (new application)
9877 &lt;/ul&gt;&lt;/li&gt;
9878 &lt;li&gt;Now using Kerberos for password checking (migration not finished).
9879 Enabled for:
9880 &lt;ul&gt;
9881 &lt;li&gt;PAM
9882 &lt;li&gt;LDAP
9883 &lt;li&gt;IMAP
9884 &lt;li&gt;SMTP (sender verification)
9885 &lt;/ul&gt;
9886 &lt;/li&gt;
9887 &lt;li&gt;New experimental roaming workstation profile for laptops.&lt;/li&gt;
9888 &lt;li&gt;Show welcome page to users when they first log in. The URL is
9889 fetched from LDAP.&lt;/li&gt;
9890 &lt;li&gt;New LXDE desktop option, in addition to KDE (default) and Gnome.&lt;/li&gt;
9891 &lt;li&gt;General cleanup (not finished)&lt;/li&gt;
9892 &lt;/ul&gt;
9893 &lt;p&gt;The following features are not working as they should&lt;/p&gt;
9894
9895 &lt;ul&gt;
9896 &lt;li&gt;No web based administration tool for creating users and groups. The
9897 scripts ldap-createuser-krb and ldap-add-user-to-group can be used
9898 for testing.&lt;/li&gt;
9899 &lt;li&gt;DVD installs are missing debian-installer images for the PXE boot,
9900 and do not set up the PXE menu on eth0 because of this. LTSP
9901 clients should still boot from eth1 on thin client servers.&lt;/li&gt;
9902 &lt;li&gt;The restructured KDE menu is not implemented.&lt;/li&gt;
9903 &lt;li&gt;The LDAP server setup need to be reviewed for security.&lt;/li&gt;
9904 &lt;li&gt;The LDAP directory structure need to be reworked.&lt;/li&gt;
9905 &lt;li&gt;Different sets of packages are installed when using the DVD and the
9906 netinst CD. More packages are installed using the netinst CD.&lt;/li&gt;
9907 &lt;li&gt;The jackd package fail to install. This is believed to be caused by
9908 some ongoing transition, and hopefully should be solved soon. The
9909 jackd1 package can be installed manually for those that need it.&lt;/li&gt;
9910 &lt;li&gt;Some packages lack translations. See
9911 http://wiki.debian.org/DebianEdu/Status/Squeeze for updated status,
9912 and help out with translations.&lt;/li&gt;
9913 &lt;/ul&gt;
9914
9915 &lt;p&gt;To download this multiarch netinstall release you can use&lt;/p&gt;
9916
9917 &lt;ul&gt;
9918 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/a&gt;&lt;/li&gt;
9919 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/a&gt;&lt;/li&gt;
9920 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
9921 &lt;/ul&gt;
9922 &lt;p&gt;To download this multiarch dvd release you can use&lt;/p&gt;
9923
9924 &lt;ul&gt;
9925 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/a&gt;&lt;/li&gt;
9926 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/a&gt;&lt;/li&gt;
9927 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
9928 &lt;/ul&gt;
9929
9930 &lt;p&gt;There is no source DVD available yet. It will be prepared when we
9931 get closer to the final release.&lt;/p&gt;
9932
9933 &lt;p&gt;The MD5SUM of these images are&lt;/p&gt;
9934
9935 &lt;ul&gt;
9936 &lt;li&gt;3dbf45d59f42a53518b6e3c9ec3b5eb6 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
9937 &lt;li&gt;22f2cbfce281d1c6e478be452638675d debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
9938 &lt;/ul&gt;
9939
9940 &lt;p&gt;The SHA1SUM of these images are&lt;/p&gt;
9941 &lt;ul&gt;
9942 &lt;li&gt;c53d1b69b40cf37cd27aefaf33f6f6a3821bedf0 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
9943 &lt;li&gt;2ec29d7db676d59d32197b05c277ffe16348376c debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
9944 &lt;/ul&gt;
9945 &lt;p&gt;How to report bugs:
9946 http://wiki.debian.org/DebianEdu/HowTo/ReportBugsInBugzilla&lt;/p&gt;
9947
9948 &lt;p&gt;Please direct replies to debian-edu@lists.debian.org&lt;/p&gt;
9949 &lt;/blockquote&gt;
9950 </description>
9951 </item>
9952
9953 <item>
9954 <title>One step closer to single signon in Debian Edu</title>
9955 <link>http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</link>
9956 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</guid>
9957 <pubDate>Sun, 25 Jul 2010 10:00:00 +0200</pubDate>
9958 <description>&lt;p&gt;The last few months me and the other Debian Edu developers have
9959 been working hard to get the Debian/Squeeze based version of Debian
9960 Edu/Skolelinux into shape. This future version will use Kerberos for
9961 authentication, and services are slowly migrated to single signon,
9962 getting rid of password questions one at the time.&lt;/p&gt;
9963
9964 &lt;p&gt;It will also feature a roaming workstation profile with local home
9965 directory, for laptops that are only some times on the Skolelinux
9966 network, and for this profile a shortcut is created in Gnome and KDE
9967 to gain access to the users home directory on the file server. This
9968 shortcut uses SMB at the moment, and yesterday I had time to test if
9969 SMB mounting had started working in KDE after we added the cifs-utils
9970 package. I was pleasantly surprised how well it worked.&lt;/p&gt;
9971
9972 &lt;p&gt;Thanks to the recent changes to our samba configuration to get it
9973 to use Kerberos for authentication, there were no question about user
9974 password when mounting the SMB volume. A simple click on the shortcut
9975 in the KDE menu, and a window with the home directory popped
9976 up. :)&lt;/p&gt;
9977
9978 &lt;p&gt;One step closer to a single signon solution out of the box in
9979 Debian Edu. We already had PAM, LDAP, IMAP and SMTP in place, and now
9980 also Samba. Next step is Cups and hopefully also NFS.&lt;/p&gt;
9981
9982 &lt;p&gt;We had planned a alpha0 release of Debian Edu for today, but thanks
9983 to the autobuilder administrators for some architectures being slow to
9984 sign packages, we are still missing the fixed LTSP package we need for
9985 the release. It was uploaded three days ago with urgency=high, and if
9986 it had entered testing yesterday we would have been able to test it in
9987 time for a alpha0 release today. As the binaries for ia64 and powerpc
9988 still not uploaded to the Debian archive, we need to delay the alpha
9989 release another day.&lt;/p&gt;
9990
9991 &lt;p&gt;If you want to help out with implementing Kerberos for Debian Edu,
9992 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
9993 </description>
9994 </item>
9995
9996 <item>
9997 <title>What are they searching for - PowerDNS and ISC DHCP in LDAP</title>
9998 <link>http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</link>
9999 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</guid>
10000 <pubDate>Sat, 17 Jul 2010 21:00:00 +0200</pubDate>
10001 <description>&lt;p&gt;This is a
10002 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;followup&lt;/a&gt;
10003 on my
10004 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html&quot;&gt;previous
10005 work&lt;/a&gt; on
10006 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html&quot;&gt;merging
10007 all&lt;/a&gt; the computer related LDAP objects in Debian Edu.&lt;/p&gt;
10008
10009 &lt;p&gt;As a step to try to see if it possible to merge the DNS and DHCP
10010 LDAP objects, I have had a look at how the packages pdns-backend-ldap
10011 and dhcp3-server-ldap in Debian use the LDAP server. The two
10012 implementations are quite different in how they use LDAP.&lt;/p&gt;
10013
10014 To get this information, I started slapd with debugging enabled and
10015 dumped the debug output to a file to get the LDAP searches performed
10016 on a Debian Edu main-server. Here is a summary.
10017
10018 &lt;p&gt;&lt;strong&gt;powerdns&lt;/strong&gt;&lt;/p&gt;
10019
10020 &lt;a href=&quot;http://www.linuxnetworks.de/doc/index.php/PowerDNS_LDAP_Backend&quot;&gt;Clues
10021 on how to&lt;/a&gt; set up PowerDNS to use a LDAP backend is available on
10022 the web.
10023
10024 &lt;p&gt;PowerDNS have two modes of operation using LDAP as its backend.
10025 One &quot;strict&quot; mode where the forward and reverse DNS lookups are done
10026 using the same LDAP objects, and a &quot;tree&quot; mode where the forward and
10027 reverse entries are in two different subtrees in LDAP with a structure
10028 based on the DNS names, as in tjener.intern and
10029 2.2.0.10.in-addr.arpa.&lt;/p&gt;
10030
10031 &lt;p&gt;In tree mode, the server is set up to use a LDAP subtree as its
10032 base, and uses a &quot;base&quot; scoped search for the DNS name by adding
10033 &quot;dc=tjener,dc=intern,&quot; to the base with a filter for
10034 &quot;(associateddomain=tjener.intern)&quot; for the forward entry and
10035 &quot;dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,&quot; with a filter for
10036 &quot;(associateddomain=2.2.0.10.in-addr.arpa)&quot; for the reverse entry. For
10037 forward entries, it is looking for attributes named dnsttl, arecord,
10038 nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord, mxrecord,
10039 txtrecord, rprecord, afsdbrecord, keyrecord, aaaarecord, locrecord,
10040 srvrecord, naptrrecord, kxrecord, certrecord, dsrecord, sshfprecord,
10041 ipseckeyrecord, rrsigrecord, nsecrecord, dnskeyrecord, dhcidrecord,
10042 spfrecord and modifytimestamp. For reverse entries it is looking for
10043 the attributes dnsttl, arecord, nsrecord, cnamerecord, soarecord,
10044 ptrrecord, hinforecord, mxrecord, txtrecord, rprecord, aaaarecord,
10045 locrecord, srvrecord, naptrrecord and modifytimestamp. The equivalent
10046 ldapsearch commands could look like this:&lt;/p&gt;
10047
10048 &lt;blockquote&gt;&lt;pre&gt;
10049 ldapsearch -h ldap \
10050 -b dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no \
10051 -s base -x &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
10052 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
10053 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
10054 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
10055 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
10056
10057 ldapsearch -h ldap \
10058 -b dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no \
10059 -s base -x &#39;(associateddomain=2.2.0.10.in-addr.arpa)&#39;
10060 dnsttl, arecord, nsrecord, cnamerecord soarecord ptrrecord \
10061 hinforecord mxrecord txtrecord rprecord aaaarecord locrecord \
10062 srvrecord naptrrecord modifytimestamp
10063 &lt;/pre&gt;&lt;/blockquote&gt;
10064
10065 &lt;p&gt;In Debian Edu/Lenny, the PowerDNS tree mode is used with
10066 ou=hosts,dc=skole,dc=skolelinux,dc=no as the base, and these are two
10067 example LDAP objects used there. In addition to these objects, the
10068 parent objects all th way up to ou=hosts,dc=skole,dc=skolelinux,dc=no
10069 also exist.&lt;/p&gt;
10070
10071 &lt;blockquote&gt;&lt;pre&gt;
10072 dn: dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no
10073 objectclass: top
10074 objectclass: dnsdomain
10075 objectclass: domainrelatedobject
10076 dc: tjener
10077 arecord: 10.0.2.2
10078 associateddomain: tjener.intern
10079
10080 dn: dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no
10081 objectclass: top
10082 objectclass: dnsdomain2
10083 objectclass: domainrelatedobject
10084 dc: 2
10085 ptrrecord: tjener.intern
10086 associateddomain: 2.2.0.10.in-addr.arpa
10087 &lt;/pre&gt;&lt;/blockquote&gt;
10088
10089 &lt;p&gt;In strict mode, the server behaves differently. When looking for
10090 forward DNS entries, it is doing a &quot;subtree&quot; scoped search with the
10091 same base as in the tree mode for a object with filter
10092 &quot;(associateddomain=tjener.intern)&quot; and requests the attributes dnsttl,
10093 arecord, nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord,
10094 mxrecord, txtrecord, rprecord, aaaarecord, locrecord, srvrecord,
10095 naptrrecord and modifytimestamp. For reverse entires it also do a
10096 subtree scoped search but this time the filter is &quot;(arecord=10.0.2.2)&quot;
10097 and the requested attributes are associateddomain, dnsttl and
10098 modifytimestamp. In short, in strict mode the objects with ptrrecord
10099 go away, and the arecord attribute in the forward object is used
10100 instead.&lt;/p&gt;
10101
10102 &lt;p&gt;The forward and reverse searches can be simulated using ldapsearch
10103 like this:&lt;/p&gt;
10104
10105 &lt;blockquote&gt;&lt;pre&gt;
10106 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
10107 &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
10108 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
10109 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
10110 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
10111 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
10112
10113 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
10114 &#39;(arecord=10.0.2.2)&#39; associateddomain dnsttl modifytimestamp
10115 &lt;/pre&gt;&lt;/blockquote&gt;
10116
10117 &lt;p&gt;In addition to the forward and reverse searches , there is also a
10118 search for SOA records, which behave similar to the forward and
10119 reverse lookups.&lt;/p&gt;
10120
10121 &lt;p&gt;A thing to note with the PowerDNS behaviour is that it do not
10122 specify any objectclass names, and instead look for the attributes it
10123 need to generate a DNS reply. This make it able to work with any
10124 objectclass that provide the needed attributes.&lt;/p&gt;
10125
10126 &lt;p&gt;The attributes are normally provided in the cosine (RFC 1274) and
10127 dnsdomain2 schemas. The latter is used for reverse entries like
10128 ptrrecord and recent DNS additions like aaaarecord and srvrecord.&lt;/p&gt;
10129
10130 &lt;p&gt;In Debian Edu, we have created DNS objects using the object classes
10131 dcobject (for dc), dnsdomain or dnsdomain2 (structural, for the DNS
10132 attributes) and domainrelatedobject (for associatedDomain). The use
10133 of structural object classes make it impossible to combine these
10134 classes with the object classes used by DHCP.&lt;/p&gt;
10135
10136 &lt;p&gt;There are other schemas that could be used too, for example the
10137 dnszone structural object class used by Gosa and bind-sdb for the DNS
10138 attributes combined with the domainrelatedobject object class, but in
10139 this case some unused attributes would have to be included as well
10140 (zonename and relativedomainname).&lt;/p&gt;
10141
10142 &lt;p&gt;My proposal for Debian Edu would be to switch PowerDNS to strict
10143 mode and not use any of the existing objectclasses (dnsdomain,
10144 dnsdomain2 and dnszone) when one want to combine the DNS information
10145 with DHCP information, and instead create a auxiliary object class
10146 defined something like this (using the attributes defined for
10147 dnsdomain and dnsdomain2 or dnszone):&lt;/p&gt;
10148
10149 &lt;blockquote&gt;&lt;pre&gt;
10150 objectclass ( some-oid NAME &#39;dnsDomainAux&#39;
10151 SUP top
10152 AUXILIARY
10153 MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord $
10154 DNSTTL $ DNSClass $ PTRRecord $ HINFORecord $ MINFORecord $
10155 TXTRecord $ SIGRecord $ KEYRecord $ AAAARecord $ LOCRecord $
10156 NXTRecord $ SRVRecord $ NAPTRRecord $ KXRecord $ CERTRecord $
10157 A6Record $ DNAMERecord
10158 ))
10159 &lt;/pre&gt;&lt;/blockquote&gt;
10160
10161 &lt;p&gt;This will allow any object to become a DNS entry when combined with
10162 the domainrelatedobject object class, and allow any entity to include
10163 all the attributes PowerDNS wants. I&#39;ve sent an email to the PowerDNS
10164 developers asking for their view on this schema and if they are
10165 interested in providing such schema with PowerDNS, and I hope my
10166 message will be accepted into their mailing list soon.&lt;/p&gt;
10167
10168 &lt;p&gt;&lt;strong&gt;ISC dhcp&lt;/strong&gt;&lt;/p&gt;
10169
10170 &lt;p&gt;The DHCP server searches for specific objectclass and requests all
10171 the object attributes, and then uses the attributes it want. This
10172 make it harder to figure out exactly what attributes are used, but
10173 thanks to the working example in Debian Edu I can at least get an idea
10174 what is needed without having to read the source code.&lt;/p&gt;
10175
10176 &lt;p&gt;In the DHCP server configuration, the LDAP base to use and the
10177 search filter to use to locate the correct dhcpServer entity is
10178 stored. These are the relevant entries from
10179 /etc/dhcp3/dhcpd.conf:&lt;/p&gt;
10180
10181 &lt;blockquote&gt;&lt;pre&gt;
10182 ldap-base-dn &quot;dc=skole,dc=skolelinux,dc=no&quot;;
10183 ldap-dhcp-server-cn &quot;dhcp&quot;;
10184 &lt;/pre&gt;&lt;/blockquote&gt;
10185
10186 &lt;p&gt;The DHCP server uses this information to nest all the DHCP
10187 configuration it need. The cn &quot;dhcp&quot; is located using the given LDAP
10188 base and the filter &quot;(&amp;(objectClass=dhcpServer)(cn=dhcp))&quot;. The
10189 search result is this entry:&lt;/p&gt;
10190
10191 &lt;blockquote&gt;&lt;pre&gt;
10192 dn: cn=dhcp,dc=skole,dc=skolelinux,dc=no
10193 cn: dhcp
10194 objectClass: top
10195 objectClass: dhcpServer
10196 dhcpServiceDN: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
10197 &lt;/pre&gt;&lt;/blockquote&gt;
10198
10199 &lt;p&gt;The content of the dhcpServiceDN attribute is next used to locate the
10200 subtree with DHCP configuration. The DHCP configuration subtree base
10201 is located using a base scope search with base &quot;cn=DHCP
10202 Config,dc=skole,dc=skolelinux,dc=no&quot; and filter
10203 &quot;(&amp;(objectClass=dhcpService)(|(dhcpPrimaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)(dhcpSecondaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)))&quot;.
10204 The search result is this entry:&lt;/p&gt;
10205
10206 &lt;blockquote&gt;&lt;pre&gt;
10207 dn: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
10208 cn: DHCP Config
10209 objectClass: top
10210 objectClass: dhcpService
10211 objectClass: dhcpOptions
10212 dhcpPrimaryDN: cn=dhcp, dc=skole,dc=skolelinux,dc=no
10213 dhcpStatements: ddns-update-style none
10214 dhcpStatements: authoritative
10215 dhcpOption: smtp-server code 69 = array of ip-address
10216 dhcpOption: www-server code 72 = array of ip-address
10217 dhcpOption: wpad-url code 252 = text
10218 &lt;/pre&gt;&lt;/blockquote&gt;
10219
10220 &lt;p&gt;Next, the entire subtree is processed, one level at the time. When
10221 all the DHCP configuration is loaded, it is ready to receive requests.
10222 The subtree in Debian Edu contain objects with object classes
10223 top/dhcpService/dhcpOptions, top/dhcpSharedNetwork/dhcpOptions,
10224 top/dhcpSubnet, top/dhcpGroup and top/dhcpHost. These provide options
10225 and information about netmasks, dynamic range etc. Leaving out the
10226 details here because it is not relevant for the focus of my
10227 investigation, which is to see if it is possible to merge dns and dhcp
10228 related computer objects.&lt;/p&gt;
10229
10230 &lt;p&gt;When a DHCP request come in, LDAP is searched for the MAC address
10231 of the client (00:00:00:00:00:00 in this example), using a subtree
10232 scoped search with &quot;cn=DHCP Config,dc=skole,dc=skolelinux,dc=no&quot; as
10233 the base and &quot;(&amp;(objectClass=dhcpHost)(dhcpHWAddress=ethernet
10234 00:00:00:00:00:00))&quot; as the filter. This is what a host object look
10235 like:&lt;/p&gt;
10236
10237 &lt;blockquote&gt;&lt;pre&gt;
10238 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
10239 cn: hostname
10240 objectClass: top
10241 objectClass: dhcpHost
10242 dhcpHWAddress: ethernet 00:00:00:00:00:00
10243 dhcpStatements: fixed-address hostname
10244 &lt;/pre&gt;&lt;/blockquote&gt;
10245
10246 &lt;p&gt;There is less flexiblity in the way LDAP searches are done here.
10247 The object classes need to have fixed names, and the configuration
10248 need to be stored in a fairly specific LDAP structure. On the
10249 positive side, the invidiual dhcpHost entires can be anywhere without
10250 the DN pointed to by the dhcpServer entries. The latter should make
10251 it possible to group all host entries in a subtree next to the
10252 configuration entries, and this subtree can also be shared with the
10253 DNS server if the schema proposed above is combined with the dhcpHost
10254 structural object class.
10255
10256 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
10257
10258 &lt;p&gt;The PowerDNS implementation seem to be very flexible when it come
10259 to which LDAP schemas to use. While its &quot;tree&quot; mode is rigid when it
10260 come to the the LDAP structure, the &quot;strict&quot; mode is very flexible,
10261 allowing DNS objects to be stored anywhere under the base cn specified
10262 in the configuration.&lt;/p&gt;
10263
10264 &lt;p&gt;The DHCP implementation on the other hand is very inflexible, both
10265 regarding which LDAP schemas to use and which LDAP structure to use.
10266 I guess one could implement ones own schema, as long as the
10267 objectclasses and attributes have the names used, but this do not
10268 really help when the DHCP subtree need to have a fairly fixed
10269 structure.&lt;/p&gt;
10270
10271 &lt;p&gt;Based on the observed behaviour, I suspect a LDAP structure like
10272 this might work for Debian Edu:&lt;/p&gt;
10273
10274 &lt;blockquote&gt;&lt;pre&gt;
10275 ou=services
10276 cn=machine-info (dhcpService) - dhcpServiceDN points here
10277 cn=dhcp (dhcpServer)
10278 cn=dhcp-internal (dhcpSharedNetwork/dhcpOptions)
10279 cn=10.0.2.0 (dhcpSubnet)
10280 cn=group1 (dhcpGroup/dhcpOptions)
10281 cn=dhcp-thinclients (dhcpSharedNetwork/dhcpOptions)
10282 cn=192.168.0.0 (dhcpSubnet)
10283 cn=group1 (dhcpGroup/dhcpOptions)
10284 ou=machines - PowerDNS base points here
10285 cn=hostname (dhcpHost/domainrelatedobject/dnsDomainAux)
10286 &lt;/pre&gt;&lt;/blockquote&gt;
10287
10288 &lt;P&gt;This is not tested yet. If the DHCP server require the dhcpHost
10289 entries to be in the dhcpGroup subtrees, the entries can be stored
10290 there instead of a common machines subtree, and the PowerDNS base
10291 would have to be moved one level up to the machine-info subtree.&lt;/p&gt;
10292
10293 &lt;p&gt;The combined object under the machines subtree would look something
10294 like this:&lt;/p&gt;
10295
10296 &lt;blockquote&gt;&lt;pre&gt;
10297 dn: dc=hostname,ou=machines,cn=machine-info,dc=skole,dc=skolelinux,dc=no
10298 dc: hostname
10299 objectClass: top
10300 objectClass: dhcpHost
10301 objectclass: domainrelatedobject
10302 objectclass: dnsDomainAux
10303 associateddomain: hostname.intern
10304 arecord: 10.11.12.13
10305 dhcpHWAddress: ethernet 00:00:00:00:00:00
10306 dhcpStatements: fixed-address hostname.intern
10307 &lt;/pre&gt;&lt;/blockquote&gt;
10308
10309 &lt;/p&gt;One could even add the LTSP configuration associated with a given
10310 machine, as long as the required attributes are available in a
10311 auxiliary object class.&lt;/p&gt;
10312 </description>
10313 </item>
10314
10315 <item>
10316 <title>Combining PowerDNS and ISC DHCP LDAP objects</title>
10317 <link>http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</link>
10318 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</guid>
10319 <pubDate>Wed, 14 Jul 2010 23:45:00 +0200</pubDate>
10320 <description>&lt;p&gt;For a while now, I have wanted to find a way to change the DNS and
10321 DHCP services in Debian Edu to use the same LDAP objects for a given
10322 computer, to avoid the possibility of having a inconsistent state for
10323 a computer in LDAP (as in DHCP but no DNS entry or the other way
10324 around) and make it easier to add computers to LDAP.&lt;/p&gt;
10325
10326 &lt;p&gt;I&#39;ve looked at how powerdns and dhcpd is using LDAP, and using this
10327 information finally found a solution that seem to work.&lt;/p&gt;
10328
10329 &lt;p&gt;The old setup required three LDAP objects for a given computer.
10330 One forward DNS entry, one reverse DNS entry and one DHCP entry. If
10331 we switch powerdns to use its strict LDAP method (ldap-method=strict
10332 in pdns-debian-edu.conf), the forward and reverse DNS entries are
10333 merged into one while making it impossible to transfer the reverse map
10334 to a slave DNS server.&lt;/p&gt;
10335
10336 &lt;p&gt;If we also replace the object class used to get the DNS related
10337 attributes to one allowing these attributes to be combined with the
10338 dhcphost object class, we can merge the DNS and DHCP entries into one.
10339 I&#39;ve written such object class in the dnsdomainaux.schema file (need
10340 proper OIDs, but that is a minor issue), and tested the setup. It
10341 seem to work.&lt;/p&gt;
10342
10343 &lt;p&gt;With this test setup in place, we can get away with one LDAP object
10344 for both DNS and DHCP, and even the LTSP configuration I suggested in
10345 an earlier email. The combined LDAP object will look something like
10346 this:&lt;/p&gt;
10347
10348 &lt;blockquote&gt;&lt;pre&gt;
10349 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
10350 cn: hostname
10351 objectClass: dhcphost
10352 objectclass: domainrelatedobject
10353 objectclass: dnsdomainaux
10354 associateddomain: hostname.intern
10355 arecord: 10.11.12.13
10356 dhcphwaddress: ethernet 00:00:00:00:00:00
10357 dhcpstatements: fixed-address hostname
10358 ldapconfigsound: Y
10359 &lt;/pre&gt;&lt;/blockquote&gt;
10360
10361 &lt;p&gt;The DNS server uses the associateddomain and arecord entries, while
10362 the DHCP server uses the dhcphwaddress and dhcpstatements entries
10363 before asking DNS to resolve the fixed-adddress. LTSP will use
10364 dhcphwaddress or associateddomain and the ldapconfig* attributes.&lt;/p&gt;
10365
10366 &lt;p&gt;I am not yet sure if I can get the DHCP server to look for its
10367 dhcphost in a different location, to allow us to put the objects
10368 outside the &quot;DHCP Config&quot; subtree, but hope to figure out a way to do
10369 that. If I can&#39;t figure out a way to do that, we can still get rid of
10370 the hosts subtree and move all its content into the DHCP Config tree
10371 (which probably should be renamed to be more related to the new
10372 content. I suspect cn=dnsdhcp,ou=services or something like that
10373 might be a good place to put it.&lt;/p&gt;
10374
10375 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
10376 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
10377 </description>
10378 </item>
10379
10380 <item>
10381 <title>Idea for storing LTSP configuration in LDAP</title>
10382 <link>http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</link>
10383 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</guid>
10384 <pubDate>Sun, 11 Jul 2010 22:00:00 +0200</pubDate>
10385 <description>&lt;p&gt;Vagrant mentioned on IRC today that ltsp_config now support
10386 sourcing files from /usr/share/ltsp/ltsp_config.d/ on the thin
10387 clients, and that this can be used to fetch configuration from LDAP if
10388 Debian Edu choose to store configuration there.&lt;/p&gt;
10389
10390 &lt;p&gt;Armed with this information, I got inspired and wrote a test module
10391 to get configuration from LDAP. The idea is to look up the MAC
10392 address of the client in LDAP, and look for attributes on the form
10393 ltspconfigsetting=value, and use this to export SETTING=value to the
10394 LTSP clients.&lt;/p&gt;
10395
10396 &lt;p&gt;The goal is to be able to store the LTSP configuration attributes
10397 in a &quot;computer&quot; LDAP object used by both DNS and DHCP, and thus
10398 allowing us to store all information about a computer in one place.&lt;/p&gt;
10399
10400 &lt;p&gt;This is a untested draft implementation, and I welcome feedback on
10401 this approach. A real LDAP schema for the ltspClientAux objectclass
10402 need to be written. Comments, suggestions, etc?&lt;/p&gt;
10403
10404 &lt;blockquote&gt;&lt;pre&gt;
10405 # Store in /opt/ltsp/$arch/usr/share/ltsp/ltsp_config.d/ldap-config
10406 #
10407 # Fetch LTSP client settings from LDAP based on MAC address
10408 #
10409 # Uses ethernet address as stored in the dhcpHost objectclass using
10410 # the dhcpHWAddress attribute or ethernet address stored in the
10411 # ieee802Device objectclass with the macAddress attribute.
10412 #
10413 # This module is written to be schema agnostic, and only depend on the
10414 # existence of attribute names.
10415 #
10416 # The LTSP configuration variables are saved directly using a
10417 # ltspConfig prefix and uppercasing the rest of the attribute name.
10418 # To set the SERVER variable, set the ltspConfigServer attribute.
10419 #
10420 # Some LDAP schema should be created with all the relevant
10421 # configuration settings. Something like this should work:
10422 #
10423 # objectclass ( 1.1.2.2 NAME &#39;ltspClientAux&#39;
10424 # SUP top
10425 # AUXILIARY
10426 # MAY ( ltspConfigServer $ ltsConfigSound $ ... )
10427
10428 LDAPSERVER=$(debian-edu-ldapserver)
10429 if [ &quot;$LDAPSERVER&quot; ] ; then
10430 LDAPBASE=$(debian-edu-ldapserver -b)
10431 for MAC in $(LANG=C ifconfig |grep -i hwaddr| awk &#39;{print $5}&#39;|sort -u) ; do
10432 filter=&quot;(|(dhcpHWAddress=ethernet $MAC)(macAddress=$MAC))&quot;
10433 ldapsearch -h &quot;$LDAPSERVER&quot; -b &quot;$LDAPBASE&quot; -v -x &quot;$filter&quot; | \
10434 grep &#39;^ltspConfig&#39; | while read attr value ; do
10435 # Remove prefix and convert to upper case
10436 attr=$(echo $attr | sed &#39;s/^ltspConfig//i&#39; | tr a-z A-Z)
10437 # bass value on to clients
10438 eval &quot;$attr=$value; export $attr&quot;
10439 done
10440 done
10441 fi
10442 &lt;/pre&gt;&lt;/blockquote&gt;
10443
10444 &lt;p&gt;I&#39;m not sure this shell construction will work, because I suspect
10445 the while block might end up in a subshell causing the variables set
10446 there to not show up in ltsp-config, but if that is the case I am sure
10447 the code can be restructured to make sure the variables are passed on.
10448 I expect that can be solved with some testing. :)&lt;/p&gt;
10449
10450 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
10451 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
10452
10453 &lt;p&gt;Update 2010-07-17: I am aware of another effort to store LTSP
10454 configuration in LDAP that was created around year 2000 by
10455 &lt;a href=&quot;http://www.pcxperience.com/thinclient/documentation/ldap.html&quot;&gt;PC
10456 Xperience, Inc., 2000&lt;/a&gt;. I found its
10457 &lt;a href=&quot;http://people.redhat.com/alikins/ltsp/ldap/&quot;&gt;files&lt;/a&gt; on a
10458 personal home page over at redhat.com.&lt;/p&gt;
10459 </description>
10460 </item>
10461
10462 <item>
10463 <title>jXplorer, a very nice LDAP GUI</title>
10464 <link>http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</link>
10465 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</guid>
10466 <pubDate>Fri, 9 Jul 2010 12:55:00 +0200</pubDate>
10467 <description>&lt;p&gt;Since
10468 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html&quot;&gt;my
10469 last post&lt;/a&gt; about available LDAP tools in Debian, I was told about a
10470 LDAP GUI that is even better than luma. The java application
10471 &lt;a href=&quot;http://jxplorer.org/&quot;&gt;jXplorer&lt;/a&gt; is claimed to be capable of
10472 moving LDAP objects and subtrees using drag-and-drop, and can
10473 authenticate using Kerberos. I have only tested the Kerberos
10474 authentication, but do not have a LDAP setup allowing me to rewrite
10475 LDAP with my test user yet. It is
10476 &lt;a href=&quot;http://packages.qa.debian.org/j/jxplorer.html&quot;&gt;available in
10477 Debian&lt;/a&gt; testing and unstable at the moment. The only problem I
10478 have with it is how it handle errors. If something go wrong, its
10479 non-intuitive behaviour require me to go through some query work list
10480 and remove the failing query. Nothing big, but very annoying.&lt;/p&gt;
10481 </description>
10482 </item>
10483
10484 <item>
10485 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome desktop</title>
10486 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</link>
10487 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</guid>
10488 <pubDate>Sat, 3 Jul 2010 23:55:00 +0200</pubDate>
10489 <description>&lt;p&gt;Here is a short update on my &lt;a
10490 href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;my
10491 Debian Lenny-&gt;Squeeze upgrade testing&lt;/a&gt;. Here is a summary of the
10492 difference for Gnome when it is upgraded by apt-get and aptitude. I&#39;m
10493 not reporting the status for KDE, because the upgrade crashes when
10494 aptitude try because of missing conflicts
10495 (&lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; and
10496 &lt;a href=&quot;http://bugs.debian.org/585716&quot;&gt;#585716&lt;/a&gt;).&lt;/p&gt;
10497
10498 &lt;p&gt;At the end of the upgrade test script, dpkg -l is executed to get a
10499 complete list of the installed packages. Based on this I see these
10500 differences when I did a test run today. As usual, I do not really
10501 know what the correct set of packages would be, but thought it best to
10502 publish the difference.&lt;/p&gt;
10503
10504 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
10505
10506 &lt;blockquote&gt;&lt;p&gt;
10507 at-spi cpp-4.3 finger gnome-spell gstreamer0.10-gnomevfs
10508 libatspi1.0-0 libcupsys2 libeel2-data libgail-common libgdl-1-common
10509 libgnomeprint2.2-data libgnomeprintui2.2-common libgnomevfs2-bin
10510 libgtksourceview-common libpt-1.10.10-plugins-alsa
10511 libpt-1.10.10-plugins-v4l libservlet2.4-java libxalan2-java
10512 libxerces2-java openoffice.org-writer2latex openssl-blacklist p7zip
10513 python-4suite-xml python-eggtrayicon python-gtkhtml2
10514 python-gtkmozembed svgalibg1 xserver-xephyr zip
10515 &lt;/p&gt;&lt;/blockquote&gt;
10516
10517 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
10518
10519 &lt;blockquote&gt;&lt;p&gt;
10520 bluez-utils dhcdbd djvulibre-desktop epiphany-gecko
10521 gnome-app-install gnome-mount gnome-vfs-obexftp gnome-volume-manager
10522 libao2 libavahi-compat-libdnssd1 libavahi-core5 libbind9-50
10523 libbluetooth2 libcamel1.2-11 libcdio7 libcucul0 libcurl3
10524 libdirectfb-1.0-0 libdvdread3 libedata-cal1.2-6 libedataserver1.2-9
10525 libeel2-2.20 libepc-1.0-1 libepc-ui-1.0-1 libexchange-storage1.2-3
10526 libfaad0 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
10527 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
10528 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
10529 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtkhtml2-0
10530 libgtksourceview1.0-0 libgucharmap6 libhesiod0 libicu38 libisccc50
10531 libisccfg50 libiw29 libkpathsea4 libltdl3 liblwres50 libmagick++10
10532 libmagick10 libmalaga7 libmtp7 libmysqlclient15off libnautilus-burn4
10533 libneon27 libnm-glib0 libnm-util0 libopal-2.2 libosp5
10534 libparted1.8-10 libpisock9 libpisync1 libpoppler-glib3 libpoppler3
10535 libpt-1.10.10 libraw1394-8 libsensors3 libsmbios2 libsoup2.2-8
10536 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1
10537 libtotem-plparser10 libtrackerclient0 libvoikko1 libxalan2-java-gcj
10538 libxerces2-java-gcj libxklavier12 libxtrap6 libxxf86misc1 libzephyr3
10539 mysql-common swfdec-gnome totem-gstreamer wodim
10540 &lt;/p&gt;&lt;/blockquote&gt;
10541
10542 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
10543
10544 &lt;blockquote&gt;&lt;p&gt;
10545 gnome gnome-desktop-environment hamster-applet python-gnomeapplet
10546 python-gnomekeyring python-wnck rhythmbox-plugins xorg
10547 xserver-xorg-input-all xserver-xorg-input-evdev
10548 xserver-xorg-input-kbd xserver-xorg-input-mouse
10549 xserver-xorg-input-synaptics xserver-xorg-video-all
10550 xserver-xorg-video-apm xserver-xorg-video-ark xserver-xorg-video-ati
10551 xserver-xorg-video-chips xserver-xorg-video-cirrus
10552 xserver-xorg-video-dummy xserver-xorg-video-fbdev
10553 xserver-xorg-video-glint xserver-xorg-video-i128
10554 xserver-xorg-video-i740 xserver-xorg-video-mach64
10555 xserver-xorg-video-mga xserver-xorg-video-neomagic
10556 xserver-xorg-video-nouveau xserver-xorg-video-nv
10557 xserver-xorg-video-r128 xserver-xorg-video-radeon
10558 xserver-xorg-video-radeonhd xserver-xorg-video-rendition
10559 xserver-xorg-video-s3 xserver-xorg-video-s3virge
10560 xserver-xorg-video-savage xserver-xorg-video-siliconmotion
10561 xserver-xorg-video-sis xserver-xorg-video-sisusb
10562 xserver-xorg-video-tdfx xserver-xorg-video-tga
10563 xserver-xorg-video-trident xserver-xorg-video-tseng
10564 xserver-xorg-video-vesa xserver-xorg-video-vmware
10565 xserver-xorg-video-voodoo
10566 &lt;/p&gt;&lt;/blockquote&gt;
10567
10568 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
10569
10570 &lt;blockquote&gt;&lt;p&gt;
10571 deskbar-applet xserver-xorg xserver-xorg-core
10572 xserver-xorg-input-wacom xserver-xorg-video-intel
10573 xserver-xorg-video-openchrome
10574 &lt;/p&gt;&lt;/blockquote&gt;
10575
10576 &lt;p&gt;I was told on IRC that the xorg-xserver package was
10577 &lt;a href=&quot;http://git.debian.org/?p=pkg-xorg/xserver/xorg-server.git;a=commit;h=9c8080d06c457932d3bfec021c69ac000aa60120&quot;&gt;changed
10578 in git&lt;/a&gt; today to try to get apt-get to not remove xorg completely.
10579 No idea when it hits Squeeze, but when it does I hope it will reduce
10580 the difference somewhat.
10581 </description>
10582 </item>
10583
10584 <item>
10585 <title>Caching password, user and group on a roaming Debian laptop</title>
10586 <link>http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</link>
10587 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</guid>
10588 <pubDate>Thu, 1 Jul 2010 11:40:00 +0200</pubDate>
10589 <description>&lt;p&gt;For a laptop, centralized user directories and password checking is
10590 a bit troubling. Laptops are typically used also when not connected
10591 to the network, and it is vital for a user to be able to log in or
10592 unlock the screen saver also when a central server is unavailable.
10593 This is possible by caching passwords and directory information (user
10594 and group attributes) locally, and the packages to do so are available
10595 in Debian. Here follow two recipes to set this up in Debian/Squeeze.
10596 It is also possible to set up in Debian/Lenny, but require more manual
10597 setup there because pam-auth-update is missing in Lenny.&lt;/p&gt;
10598
10599 &lt;h2&gt;LDAP/Kerberos + nscd + libpam-ccreds + libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
10600
10601 This is the traditional method with a twist. The password caching is
10602 provided by libpam-ccreds (version 10-4 or later is needed on
10603 Squeeze), and the directory caching is done by nscd. The directory
10604 lookup and password checking is done using LDAP. If one want to use
10605 Kerberos for password checking the libpam-ldapd package can be
10606 replaced with libpam-krb5 or libpam-heimdal. If one is happy having a
10607 local home directory with the path listed in LDAP, one can use the
10608 pam_mkhomedir module from pam-modules to make this happen instead of
10609 using libpam-mklocaluser. A setup for pam-auth-update to enable
10610 pam_mkhomedir will have to be written until a fix for
10611 &lt;a href=&quot;http://bugs.debian.org/568577&quot;&gt;bug #568577&lt;/a&gt; is in the
10612 archive. Because I believe it is a bad idea to have local home
10613 directories using misleading paths like /site/server/partition/, I
10614 prefer to create a local user with the home directory in /home/. This
10615 is done using the libpam-mklocaluser package.&lt;/p&gt;
10616
10617 &lt;p&gt;These packages need to be installed and configured&lt;/p&gt;
10618
10619 &lt;blockquote&gt;&lt;pre&gt;
10620 libnss-ldapd libpam-ldapd nscd libpam-ccreds libpam-mklocaluser
10621 &lt;/pre&gt;&lt;/blockquote&gt;
10622
10623 &lt;p&gt;The ldapd packages will ask for LDAP connection information, and
10624 one have to fill in the values that fits ones own site. Make sure the
10625 PAM part uses encrypted connections, to make sure the password is not
10626 sent in clear text to the LDAP server. I&#39;ve been unable to get TLS
10627 certificate checking for a self signed certificate working, which make
10628 LDAP authentication unsafe for Debian Edu (nslcd is not checking if it
10629 is talking to the correct LDAP server), and very much welcome feedback
10630 on how to get this working.&lt;/p&gt;
10631
10632 &lt;p&gt;Because nscd do not have a default configuration fit for offline
10633 caching until &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;bug #485282&lt;/a&gt;
10634 is fixed, this configuration should be used instead of the one
10635 currently in /etc/nscd.conf. The changes are in the fields
10636 reload-count and positive-time-to-live, and is based on the
10637 instructions I found in the
10638 &lt;a href=&quot;http://www.flyn.org/laptopldap/&quot;&gt;LDAP for Mobile Laptops&lt;/a&gt;
10639 instructions by Flyn Computing.&lt;/p&gt;
10640
10641 &lt;blockquote&gt;&lt;pre&gt;
10642 debug-level 0
10643 reload-count unlimited
10644 paranoia no
10645
10646 enable-cache passwd yes
10647 positive-time-to-live passwd 2592000
10648 negative-time-to-live passwd 20
10649 suggested-size passwd 211
10650 check-files passwd yes
10651 persistent passwd yes
10652 shared passwd yes
10653 max-db-size passwd 33554432
10654 auto-propagate passwd yes
10655
10656 enable-cache group yes
10657 positive-time-to-live group 2592000
10658 negative-time-to-live group 20
10659 suggested-size group 211
10660 check-files group yes
10661 persistent group yes
10662 shared group yes
10663 max-db-size group 33554432
10664 auto-propagate group yes
10665
10666 enable-cache hosts no
10667 positive-time-to-live hosts 2592000
10668 negative-time-to-live hosts 20
10669 suggested-size hosts 211
10670 check-files hosts yes
10671 persistent hosts yes
10672 shared hosts yes
10673 max-db-size hosts 33554432
10674
10675 enable-cache services yes
10676 positive-time-to-live services 2592000
10677 negative-time-to-live services 20
10678 suggested-size services 211
10679 check-files services yes
10680 persistent services yes
10681 shared services yes
10682 max-db-size services 33554432
10683 &lt;/pre&gt;&lt;/blockquote&gt;
10684
10685 &lt;p&gt;While we wait for a mechanism to update /etc/nsswitch.conf
10686 automatically like the one provided in
10687 &lt;a href=&quot;http://bugs.debian.org/496915&quot;&gt;bug #496915&lt;/a&gt;, the file
10688 content need to be manually replaced to ensure LDAP is used as the
10689 directory service on the machine. /etc/nsswitch.conf should normally
10690 look like this:&lt;/p&gt;
10691
10692 &lt;blockquote&gt;&lt;pre&gt;
10693 passwd: files ldap
10694 group: files ldap
10695 shadow: files ldap
10696 hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
10697 networks: files
10698 protocols: files
10699 services: files
10700 ethers: files
10701 rpc: files
10702 netgroup: files ldap
10703 &lt;/pre&gt;&lt;/blockquote&gt;
10704
10705 &lt;p&gt;The important parts are that ldap is listed last for passwd, group,
10706 shadow and netgroup.&lt;/p&gt;
10707
10708 &lt;p&gt;With these changes in place, any user in LDAP will be able to log
10709 in locally on the machine using for example kdm, get a local home
10710 directory created and have the password as well as user and group
10711 attributes cached.
10712
10713 &lt;h2&gt;LDAP/Kerberos + nss-updatedb + libpam-ccreds +
10714 libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
10715
10716 &lt;p&gt;Because nscd have had its share of problems, and seem to have
10717 problems doing proper caching, I&#39;ve seen suggestions and recipes to
10718 use nss-updatedb to copy parts of the LDAP database locally when the
10719 LDAP database is available. I have not tested such setup, because I
10720 discovered sssd.&lt;/p&gt;
10721
10722 &lt;h2&gt;LDAP/Kerberos + sssd + libpam-mklocaluser&lt;/h2&gt;
10723
10724 &lt;p&gt;A more flexible and robust setup than the nscd combination
10725 mentioned earlier that has shown up recently, is the
10726 &lt;a href=&quot;https://fedorahosted.org/sssd/&quot;&gt;sssd&lt;/a&gt; package from Redhat.
10727 It is part of the &lt;a href=&quot;http://www.freeipa.org/&quot;&gt;FreeIPA&lt;/A&gt; project
10728 to provide a Active Directory like directory service for Linux
10729 machines. The sssd system combines the caching of passwords and user
10730 information into one package, and remove the need for nscd and
10731 libpam-ccreds. It support LDAP and Kerberos, but not NIS. Version
10732 1.2 do not support netgroups, but it is said that it will support this
10733 in version 1.5 expected to show up later in 2010. Because the
10734 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd package&lt;/a&gt;
10735 was missing in Debian, I ended up co-maintaining it with Werner, and
10736 version 1.2 is now in testing.
10737
10738 &lt;p&gt;These packages need to be installed and configured to get the
10739 roaming setup I want&lt;/p&gt;
10740
10741 &lt;blockquote&gt;&lt;pre&gt;
10742 libpam-sss libnss-sss libpam-mklocaluser
10743 &lt;/pre&gt;&lt;/blockquote&gt;
10744
10745 The complete setup of sssd is done by editing/creating
10746 &lt;tt&gt;/etc/sssd/sssd.conf&lt;/tt&gt;.
10747
10748 &lt;blockquote&gt;&lt;pre&gt;
10749 [sssd]
10750 config_file_version = 2
10751 reconnection_retries = 3
10752 sbus_timeout = 30
10753 services = nss, pam
10754 domains = INTERN
10755
10756 [nss]
10757 filter_groups = root
10758 filter_users = root
10759 reconnection_retries = 3
10760
10761 [pam]
10762 reconnection_retries = 3
10763
10764 [domain/INTERN]
10765 enumerate = false
10766 cache_credentials = true
10767
10768 id_provider = ldap
10769 auth_provider = ldap
10770 chpass_provider = ldap
10771
10772 ldap_uri = ldap://ldap
10773 ldap_search_base = dc=skole,dc=skolelinux,dc=no
10774 ldap_tls_reqcert = never
10775 ldap_tls_cacert = /etc/ssl/certs/ca-certificates.crt
10776 &lt;/pre&gt;&lt;/blockquote&gt;
10777
10778 &lt;p&gt;I got the same problem here with certificate checking. Had to set
10779 &quot;ldap_tls_reqcert = never&quot; to get it working.&lt;/p&gt;
10780
10781 &lt;p&gt;With the libnss-sss package in testing at the moment, the
10782 nsswitch.conf file is update automatically, so there is no need to
10783 modify it manually.&lt;/p&gt;
10784
10785 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
10786 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
10787 </description>
10788 </item>
10789
10790 <item>
10791 <title>LUMA, a very nice LDAP GUI</title>
10792 <link>http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</link>
10793 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</guid>
10794 <pubDate>Mon, 28 Jun 2010 00:30:00 +0200</pubDate>
10795 <description>&lt;p&gt;The last few days I have been looking into the status of the LDAP
10796 directory in Debian Edu, and in the process I started to miss a GUI
10797 tool to browse the LDAP tree. The only one I was able to find in
10798 Debian/Squeeze and Lenny is
10799 &lt;a href=&quot;http://luma.sourceforge.net/&quot;&gt;LUMA&lt;/a&gt;, which has proved to
10800 be a great tool to get a overview of the current LDAP directory
10801 populated by default in Skolelinux. Thanks to it, I have been able to
10802 find empty and obsolete subtrees, misplaced objects and duplicate
10803 objects. It will be installed by default in Debian/Squeeze. If you
10804 are working with LDAP, give it a go. :)&lt;/p&gt;
10805
10806 &lt;p&gt;I did notice one problem with it I have not had time to report to
10807 the BTS yet. There is no .desktop file in the package, so the tool do
10808 not show up in the Gnome and KDE menus, but only deep down in in the
10809 Debian submenu in KDE. I hope that can be fixed before Squeeze is
10810 released.&lt;/p&gt;
10811
10812 &lt;p&gt;I have not yet been able to get it to modify the tree yet. I would
10813 like to move objects and remove subtrees directly in the GUI, but have
10814 not found a way to do that with LUMA yet. So in the mean time, I use
10815 &lt;a href=&quot;http://www.lichteblau.com/ldapvi/&quot;&gt;ldapvi&lt;/a&gt; for that.&lt;/p&gt;
10816
10817 &lt;p&gt;If you have tips on other GUI tools for LDAP that might be useful
10818 in Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
10819
10820 &lt;p&gt;Update 2010-06-29: Ross Reedstrom tipped us about the
10821 &lt;a href=&quot;http://packages.qa.debian.org/g/gq.html&quot;&gt;gq&lt;/a&gt; package as a
10822 useful GUI alternative. It seem like a good tool, but is unmaintained
10823 in Debian and got a RC bug keeping it out of Squeeze. Unless that
10824 changes, it will not be an option for Debian Edu based on Squeeze.&lt;/p&gt;
10825 </description>
10826 </item>
10827
10828 <item>
10829 <title>Idea for a change to LDAP schemas allowing DNS and DHCP info to be combined into one object</title>
10830 <link>http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html</link>
10831 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html</guid>
10832 <pubDate>Thu, 24 Jun 2010 00:35:00 +0200</pubDate>
10833 <description>&lt;p&gt;A while back, I
10834 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;complained
10835 about the fact&lt;/a&gt; that it is not possible with the provided schemas
10836 for storing DNS and DHCP information in LDAP to combine the two sets
10837 of information into one LDAP object representing a computer.&lt;/p&gt;
10838
10839 &lt;p&gt;In the mean time, I discovered that a simple fix would be to make
10840 the dhcpHost object class auxiliary, to allow it to be combined with
10841 the dNSDomain object class, and thus forming one object for one
10842 computer when storing both DHCP and DNS information in LDAP.&lt;/p&gt;
10843
10844 &lt;p&gt;If I understand this correctly, it is not safe to do this change
10845 without also changing the assigned number for the object class, and I
10846 do not know enough about LDAP schema design to do that properly for
10847 Debian Edu.&lt;/p&gt;
10848
10849 &lt;p&gt;Anyway, for future reference, this is how I believe we could change
10850 the
10851 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-dhc-ldap-schema-00&quot;&gt;DHCP
10852 schema&lt;/a&gt; to solve at least part of the problem with the LDAP schemas
10853 available today from IETF.&lt;/p&gt;
10854
10855 &lt;pre&gt;
10856 --- dhcp.schema (revision 65192)
10857 +++ dhcp.schema (working copy)
10858 @@ -376,7 +376,7 @@
10859 objectclass ( 2.16.840.1.113719.1.203.6.6
10860 NAME &#39;dhcpHost&#39;
10861 DESC &#39;This represents information about a particular client&#39;
10862 - SUP top
10863 + SUP top AUXILIARY
10864 MUST cn
10865 MAY (dhcpLeaseDN $ dhcpHWAddress $ dhcpOptionsDN $ dhcpStatements $ dhcpComments $ dhcpOption)
10866 X-NDS_CONTAINMENT (&#39;dhcpService&#39; &#39;dhcpSubnet&#39; &#39;dhcpGroup&#39;) )
10867 &lt;/pre&gt;
10868
10869 &lt;p&gt;I very much welcome clues on how to do this properly for Debian
10870 Edu/Squeeze. We provide the DHCP schema in our debian-edu-config
10871 package, and should thus be free to rewrite it as we see fit.&lt;/p&gt;
10872
10873 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
10874 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
10875 </description>
10876 </item>
10877
10878 <item>
10879 <title>Lenny-&gt;Squeeze upgrades, removals by apt and aptitude</title>
10880 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</link>
10881 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</guid>
10882 <pubDate>Sun, 13 Jun 2010 09:05:00 +0200</pubDate>
10883 <description>&lt;p&gt;My
10884 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;testing
10885 of Debian upgrades&lt;/a&gt; from Lenny to Squeeze continues, and I&#39;ve
10886 finally made the upgrade logs available from
10887 &lt;a href=&quot;http://people.skolelinux.org/pere/debian-upgrade-testing/&quot;&gt;http://people.skolelinux.org/pere/debian-upgrade-testing/&lt;/a&gt;.
10888 I am now testing dist-upgrade of Gnome and KDE in a chroot using both
10889 apt and aptitude, and found their differences interesting. This time
10890 I will only focus on their removal plans.&lt;/p&gt;
10891
10892 &lt;p&gt;After installing a Gnome desktop and the laptop task, apt-get wants
10893 to remove 72 packages when dist-upgrading from Lenny to Squeeze. The
10894 surprising part is that it want to remove xorg and all
10895 xserver-xorg-video* drivers. Clearly not a good choice, but I am not
10896 sure why. When asking aptitude to do the same, it want to remove 129
10897 packages, but most of them are library packages I suspect are no
10898 longer needed. Both of them want to remove bluetooth packages, which
10899 I do not know. Perhaps these bluetooth packages are obsolete?&lt;/p&gt;
10900
10901 &lt;p&gt;For KDE, apt-get want to remove 82 packages, among them kdebase
10902 which seem like a bad idea and xorg the same way as with Gnome. Asking
10903 aptitude for the same, it wants to remove 192 packages, none which are
10904 too surprising.&lt;/p&gt;
10905
10906 &lt;p&gt;I guess the removal of xorg during upgrades should be investigated
10907 and avoided, and perhaps others as well. Here are the complete list
10908 of planned removals. The complete logs is available from the URL
10909 above. Note if you want to repeat these tests, that the upgrade test
10910 for kde+apt-get hung in the tasksel setup because of dpkg asking
10911 conffile questions. No idea why. I worked around it by using
10912 &#39;&lt;tt&gt;echo &gt;&gt; /proc/&lt;em&gt;pidofdpkg&lt;/em&gt;/fd/0&lt;/tt&gt;&#39; to tell dpkg to
10913 continue.&lt;/p&gt;
10914
10915 &lt;p&gt;&lt;b&gt;apt-get gnome 72&lt;/b&gt;
10916 &lt;br&gt;bluez-gnome cupsddk-drivers deskbar-applet gnome
10917 gnome-desktop-environment gnome-network-admin gtkhtml3.14
10918 iceweasel-gnome-support libavcodec51 libdatrie0 libgdl-1-0
10919 libgnomekbd2 libgnomekbdui2 libmetacity0 libslab0 libxcb-xlib0
10920 nautilus-cd-burner python-gnome2-desktop python-gnome2-extras
10921 serpentine swfdec-mozilla update-manager xorg xserver-xorg
10922 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
10923 xserver-xorg-input-kbd xserver-xorg-input-mouse
10924 xserver-xorg-input-synaptics xserver-xorg-input-wacom
10925 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
10926 xserver-xorg-video-ati xserver-xorg-video-chips
10927 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
10928 xserver-xorg-video-dummy xserver-xorg-video-fbdev
10929 xserver-xorg-video-glint xserver-xorg-video-i128
10930 xserver-xorg-video-i740 xserver-xorg-video-imstt
10931 xserver-xorg-video-intel xserver-xorg-video-mach64
10932 xserver-xorg-video-mga xserver-xorg-video-neomagic
10933 xserver-xorg-video-nsc xserver-xorg-video-nv
10934 xserver-xorg-video-openchrome xserver-xorg-video-r128
10935 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
10936 xserver-xorg-video-rendition xserver-xorg-video-s3
10937 xserver-xorg-video-s3virge xserver-xorg-video-savage
10938 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
10939 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
10940 xserver-xorg-video-tga xserver-xorg-video-trident
10941 xserver-xorg-video-tseng xserver-xorg-video-v4l
10942 xserver-xorg-video-vesa xserver-xorg-video-vga
10943 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9
10944 xulrunner-1.9-gnome-support&lt;/p&gt;
10945
10946 &lt;p&gt;&lt;b&gt;aptitude gnome 129&lt;/b&gt;
10947
10948 &lt;br&gt;bluez-gnome bluez-utils cpp-4.3 cupsddk-drivers dhcdbd
10949 djvulibre-desktop finger gnome-app-install gnome-mount
10950 gnome-network-admin gnome-spell gnome-vfs-obexftp
10951 gnome-volume-manager gstreamer0.10-gnomevfs gtkhtml3.14 libao2
10952 libavahi-compat-libdnssd1 libavahi-core5 libavcodec51 libbluetooth2
10953 libcamel1.2-11 libcdio7 libcucul0 libcupsys2 libcurl3 libdatrie0
10954 libdirectfb-1.0-0 libdvdread3 libedataserver1.2-9 libeel2-2.20
10955 libeel2-data libepc-1.0-1 libepc-ui-1.0-1 libfaad0 libgail-common
10956 libgd2-noxpm libgda3-3 libgda3-common libgdl-1-0 libgdl-1-common
10957 libggz2 libggzcore9 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0
10958 libgnomecups1.0-1 libgnomekbd2 libgnomekbdui2 libgnomeprint2.2-0
10959 libgnomeprint2.2-data libgnomeprintui2.2-0 libgnomeprintui2.2-common
10960 libgnomevfs2-bin libgpod3 libgraphviz4 libgtkhtml2-0
10961 libgtksourceview-common libgtksourceview1.0-0 libgucharmap6
10962 libhesiod0 libicu38 libiw29 libkpathsea4 libltdl3 libmagick++10
10963 libmagick10 libmalaga7 libmetacity0 libmtp7 libmysqlclient15off
10964 libnautilus-burn4 libneon27 libnm-glib0 libnm-util0 libopal-2.2
10965 libosp5 libparted1.8-10 libpoppler-glib3 libpoppler3 libpt-1.10.10
10966 libpt-1.10.10-plugins-alsa libpt-1.10.10-plugins-v4l libraw1394-8
10967 libsensors3 libslab0 libsmbios2 libsoup2.2-8 libssh2-1
10968 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1 libtotem-plparser10
10969 libtrackerclient0 libxalan2-java libxalan2-java-gcj libxcb-xlib0
10970 libxerces2-java libxerces2-java-gcj libxklavier12 libxtrap6
10971 libxxf86misc1 libzephyr3 mysql-common nautilus-cd-burner
10972 openoffice.org-writer2latex openssl-blacklist p7zip
10973 python-4suite-xml python-eggtrayicon python-gnome2-desktop
10974 python-gnome2-extras python-gtkhtml2 python-gtkmozembed
10975 python-numeric python-sexy serpentine svgalibg1 swfdec-gnome
10976 swfdec-mozilla totem-gstreamer update-manager wodim
10977 xserver-xorg-video-cyrix xserver-xorg-video-imstt
10978 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
10979 zip&lt;/p&gt;
10980
10981 &lt;p&gt;&lt;b&gt;apt-get kde 82&lt;/b&gt;
10982
10983 &lt;br&gt;cupsddk-drivers karm kaudiocreator kcoloredit kcontrol kde kde-core
10984 kdeaddons kdeartwork kdebase kdebase-bin kdebase-bin-kde3
10985 kdebase-kio-plugins kdesktop kdeutils khelpcenter kicker
10986 kicker-applets knewsticker kolourpaint konq-plugins konqueror korn
10987 kpersonalizer kscreensaver ksplash libavcodec51 libdatrie0 libkiten1
10988 libxcb-xlib0 quanta superkaramba texlive-base-bin xorg xserver-xorg
10989 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
10990 xserver-xorg-input-kbd xserver-xorg-input-mouse
10991 xserver-xorg-input-synaptics xserver-xorg-input-wacom
10992 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
10993 xserver-xorg-video-ati xserver-xorg-video-chips
10994 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
10995 xserver-xorg-video-dummy xserver-xorg-video-fbdev
10996 xserver-xorg-video-glint xserver-xorg-video-i128
10997 xserver-xorg-video-i740 xserver-xorg-video-imstt
10998 xserver-xorg-video-intel xserver-xorg-video-mach64
10999 xserver-xorg-video-mga xserver-xorg-video-neomagic
11000 xserver-xorg-video-nsc xserver-xorg-video-nv
11001 xserver-xorg-video-openchrome xserver-xorg-video-r128
11002 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
11003 xserver-xorg-video-rendition xserver-xorg-video-s3
11004 xserver-xorg-video-s3virge xserver-xorg-video-savage
11005 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
11006 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
11007 xserver-xorg-video-tga xserver-xorg-video-trident
11008 xserver-xorg-video-tseng xserver-xorg-video-v4l
11009 xserver-xorg-video-vesa xserver-xorg-video-vga
11010 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9&lt;/p&gt;
11011
11012 &lt;p&gt;&lt;b&gt;aptitude kde 192&lt;/b&gt;
11013 &lt;br&gt;bluez-utils cpp-4.3 cupsddk-drivers cvs dcoprss dhcdbd
11014 djvulibre-desktop dosfstools eyesapplet fifteenapplet finger gettext
11015 ghostscript-x imlib-base imlib11 indi kandy karm kasteroids
11016 kaudiocreator kbackgammon kbstate kcoloredit kcontrol kcron kdat
11017 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
11018 kdebase-bin-kde3 kdebase-kio-plugins kdeedu-data
11019 kdegraphics-kfile-plugins kdelirc kdemultimedia-kappfinder-data
11020 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
11021 kdepim-kfile-plugins kdepim-kio-plugins kdeprint kdesktop kdessh
11022 kdict kdnssd kdvi kedit keduca kenolaba kfax kfaxview kfouleggs
11023 kghostview khelpcenter khexedit kiconedit kitchensync klatin
11024 klickety kmailcvt kmenuedit kmid kmilo kmoon kmrml kodo kolourpaint
11025 kooka korn kpager kpdf kpercentage kpf kpilot kpoker kpovmodeler
11026 krec kregexpeditor ksayit ksim ksirc ksirtet ksmiletris ksmserver
11027 ksnake ksokoban ksplash ksvg ksysv ktip ktnef kuickshow kverbos
11028 kview kviewshell kvoctrain kwifimanager kwin kwin4 kworldclock
11029 kxsldbg libakode2 libao2 libarts1-akode libarts1-audiofile
11030 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
11031 libavahi-core5 libavc1394-0 libavcodec51 libbluetooth2
11032 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0 libdatrie0
11033 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
11034 libgail-common libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0
11035 libicu38 libiec61883-0 libindex0 libiw29 libk3b3 libkcal2b libkcddb1
11036 libkdeedu3 libkdepim1a libkgantt0 libkiten1 libkleopatra1 libkmime2
11037 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
11038 libksieve0 libktnef1 liblockdev1 libltdl3 libmagick10 libmimelib1c2a
11039 libmozjs1d libmpcdec3 libneon27 libnm-util0 libopensync0 libpisock9
11040 libpoppler-glib3 libpoppler-qt2 libpoppler3 libraw1394-8 libsmbios2
11041 libssh2-1 libsuitesparse-3.1.0 libtalloc1 libtiff-tools
11042 libxalan2-java libxalan2-java-gcj libxcb-xlib0 libxerces2-java
11043 libxerces2-java-gcj libxtrap6 mpeglib networkstatus
11044 openoffice.org-writer2latex pmount poster psutils quanta quanta-data
11045 superkaramba svgalibg1 tex-common texlive-base texlive-base-bin
11046 texlive-common texlive-doc-base texlive-fonts-recommended
11047 xserver-xorg-video-cyrix xserver-xorg-video-imstt
11048 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
11049 xulrunner-1.9&lt;/p&gt;
11050
11051 </description>
11052 </item>
11053
11054 <item>
11055 <title>Automatic upgrade testing from Lenny to Squeeze</title>
11056 <link>http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</link>
11057 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</guid>
11058 <pubDate>Fri, 11 Jun 2010 22:50:00 +0200</pubDate>
11059 <description>&lt;p&gt;The last few days I have done some upgrade testing in Debian, to
11060 see if the upgrade from Lenny to Squeeze will go smoothly. A few bugs
11061 have been discovered and reported in the process
11062 (&lt;a href=&quot;http://bugs.debian.org/585410&quot;&gt;#585410&lt;/a&gt; in nagios3-cgi,
11063 &lt;a href=&quot;http://bugs.debian.org/584879&quot;&gt;#584879&lt;/a&gt; already fixed in
11064 enscript and &lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; in
11065 kdebase-workspace-data), and to get a more regular testing going on, I
11066 am working on a script to automate the test.&lt;/p&gt;
11067
11068 &lt;p&gt;The idea is to create a Lenny chroot and use tasksel to install a
11069 Gnome or KDE desktop installation inside the chroot before upgrading
11070 it. To ensure no services are started in the chroot, a policy-rc.d
11071 script is inserted. To make sure tasksel believe it is to install a
11072 desktop on a laptop, the tasksel tests are replaced in the chroot
11073 (only acceptable because this is a throw-away chroot).&lt;/p&gt;
11074
11075 &lt;p&gt;A naive upgrade from Lenny to Squeeze using aptitude dist-upgrade
11076 currently always fail because udev refuses to upgrade with the kernel
11077 in Lenny, so to avoid that problem the file /etc/udev/kernel-upgrade
11078 is created. The bug report
11079 &lt;a href=&quot;http://bugs.debian.org/566000&quot;&gt;#566000&lt;/a&gt; make me suspect
11080 this problem do not trigger in a chroot, but I touch the file anyway
11081 to make sure the upgrade go well. Testing on virtual and real
11082 hardware have failed me because of udev so far, and creating this file
11083 do the trick in such settings anyway. This is a
11084 &lt;a href=&quot;http://www.linuxquestions.org/questions/debian-26/failed-dist-upgrade-due-to-udev-config_sysfs_deprecated-nonsense-804130/&quot;&gt;known
11085 issue&lt;/a&gt; and the current udev behaviour is intended by the udev
11086 maintainer because he lack the resources to rewrite udev to keep
11087 working with old kernels or something like that. I really wish the
11088 udev upstream would keep udev backwards compatible, to avoid such
11089 upgrade problem, but given that they fail to do so, I guess
11090 documenting the way out of this mess is the best option we got for
11091 Debian Squeeze.&lt;/p&gt;
11092
11093 &lt;p&gt;Anyway, back to the task at hand, testing upgrades. This test
11094 script, which I call &lt;tt&gt;upgrade-test&lt;/tt&gt; for now, is doing the
11095 trick:&lt;/p&gt;
11096
11097 &lt;blockquote&gt;&lt;pre&gt;
11098 #!/bin/sh
11099 set -ex
11100
11101 if [ &quot;$1&quot; ] ; then
11102 desktop=$1
11103 else
11104 desktop=gnome
11105 fi
11106
11107 from=lenny
11108 to=squeeze
11109
11110 exec &amp;lt; /dev/null
11111 unset LANG
11112 mirror=http://ftp.skolelinux.org/debian
11113 tmpdir=chroot-$from-upgrade-$to-$desktop
11114 fuser -mv .
11115 debootstrap $from $tmpdir $mirror
11116 chroot $tmpdir aptitude update
11117 cat &gt; $tmpdir/usr/sbin/policy-rc.d &amp;lt;&amp;lt;EOF
11118 #!/bin/sh
11119 exit 101
11120 EOF
11121 chmod a+rx $tmpdir/usr/sbin/policy-rc.d
11122 exit_cleanup() {
11123 umount $tmpdir/proc
11124 }
11125 mount -t proc proc $tmpdir/proc
11126 # Make sure proc is unmounted also on failure
11127 trap exit_cleanup EXIT INT
11128
11129 chroot $tmpdir aptitude -y install debconf-utils
11130
11131 # Make sure tasksel autoselection trigger. It need the test scripts
11132 # to return the correct answers.
11133 echo tasksel tasksel/desktop multiselect $desktop | \
11134 chroot $tmpdir debconf-set-selections
11135
11136 # Include the desktop and laptop task
11137 for test in desktop laptop ; do
11138 echo &gt; $tmpdir/usr/lib/tasksel/tests/$test &amp;lt;&amp;lt;EOF
11139 #!/bin/sh
11140 exit 2
11141 EOF
11142 chmod a+rx $tmpdir/usr/lib/tasksel/tests/$test
11143 done
11144
11145 DEBIAN_FRONTEND=noninteractive
11146 DEBIAN_PRIORITY=critical
11147 export DEBIAN_FRONTEND DEBIAN_PRIORITY
11148 chroot $tmpdir tasksel --new-install
11149
11150 echo deb $mirror $to main &gt; $tmpdir/etc/apt/sources.list
11151 chroot $tmpdir aptitude update
11152 touch $tmpdir/etc/udev/kernel-upgrade
11153 chroot $tmpdir aptitude -y dist-upgrade
11154 fuser -mv
11155 &lt;/pre&gt;&lt;/blockquote&gt;
11156
11157 &lt;p&gt;I suspect it would be useful to test upgrades with both apt-get and
11158 with aptitude, but I have not had time to look at how they behave
11159 differently so far. I hope to get a cron job running to do the test
11160 regularly and post the result on the web. The Gnome upgrade currently
11161 work, while the KDE upgrade fail because of the bug in
11162 kdebase-workspace-data&lt;/p&gt;
11163
11164 &lt;p&gt;I am not quite sure what kind of extract from the huge upgrade logs
11165 (KDE 167 KiB, Gnome 516 KiB) it make sense to include in this blog
11166 post, so I will refrain from trying. I can report that for Gnome,
11167 aptitude report 760 packages upgraded, 448 newly installed, 129 to
11168 remove and 1 not upgraded and 1024MB need to be downloaded while for
11169 KDE the same numbers are 702 packages upgraded, 507 newly installed,
11170 193 to remove and 0 not upgraded and 1117MB need to be downloaded&lt;/p&gt;
11171
11172 &lt;p&gt;I am very happy to notice that the Gnome desktop + laptop upgrade
11173 is able to migrate to dependency based boot sequencing and parallel
11174 booting without a hitch. Was unsure if there were still bugs with
11175 packages failing to clean up their obsolete init.d script during
11176 upgrades, and no such problem seem to affect the Gnome desktop+laptop
11177 packages.&lt;/p&gt;
11178 </description>
11179 </item>
11180
11181 <item>
11182 <title>Skolelinux er laget for sentraldrifting, naturligvis</title>
11183 <link>http://people.skolelinux.org/pere/blog/Skolelinux_er_laget_for_sentraldrifting__naturligvis.html</link>
11184 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_er_laget_for_sentraldrifting__naturligvis.html</guid>
11185 <pubDate>Wed, 9 Jun 2010 12:30:00 +0200</pubDate>
11186 <description>&lt;p&gt;Det er merkelig hvordan myter om Skolelinux overlever. En slik
11187 myte er at Skolelinux ikke kan sentraldriftes og ha sentralt plasserte
11188 tjenermaskiner. I siste Computerworld Norge er
11189 &lt;a href=&quot;http://www.idg.no/computerworld/article169432.ece&quot;&gt;IT-sjef
11190 Viggo Billdal i Steinkjer intervjuet&lt;/a&gt;, og forteller uten
11191 blygsel:&lt;/p&gt;
11192
11193 &lt;blockquote&gt;&lt;p&gt;Vi hadde Skolelinux, men det har vi sluttet med. Vi testet
11194 om det lønte seg med Microsoft eller en åpen plattform. Vi fant ut at
11195 Microsoft egentlig var totalt sett bedre egnet. Det var store
11196 driftskostnader med Skolelinux, blant annet på grunn av
11197 desentraliserte servere. Det var komplisert, så vi gikk vekk fra det
11198 og bruker nå bare Windows.&lt;/p&gt;&lt;/blockquote&gt;
11199
11200 &lt;p&gt;En &lt;a
11201 href=&quot;https://init.linpro.no/pipermail/skolelinux.no/bruker/2010-June/009101.html&quot;&gt;rask
11202 sjekk&lt;/a&gt; mot den norske brukerlista i Skolelinuxprosjektet forteller
11203 at Steinkjers forsøk foregikk fram til 2004/2005, og at Røysing skole
11204 i Steinkjer skal ha vært svært fornøyd med Skolelinux men at kommunen
11205 overkjørte skolen og krevde at de gikk over til Windows. Et søk på
11206 nettet sendte meg til
11207 &lt;a href=&quot;http://www.dn.no/multimedia/archive/00090/Dagens_it_nr__18_90826a.pdf&quot;&gt;Dagens
11208 IT nr. 18 2005&lt;/a&gt; hvor en kan lese på side 18:&lt;/p&gt;
11209
11210 &lt;blockquote&gt;&lt;p&gt;Inge Tømmerås ved Røysing skole i Steinkjer kjører ennå
11211 Microsoft, men forteller at kompetanseutfordringen med Skolelinux ikke
11212 var så stor. ­ Jeg syntes Skolelinux var utrolig lett å drifte uten
11213 forkunnskaper. Men man må jo selvsagt ha tilgang på ekstern kompetanse
11214 til installasjoner og maskinvarefeil, sier Tømmerås.&lt;/p&gt;&lt;/blockquote&gt;
11215
11216 &lt;p&gt;Som systemarkitekten bak Skolelinux, kan jeg bare riste på hodet
11217 over påstanden om at Skolelinux krever desentraliserte tjenere.
11218 Skolelinux-arkitekturen er laget for sentralisert drift og plassering
11219 av tjenerne lokalt eller sentralt alt etter behov og nettkapasitet.
11220 Den er modellert på nettverks- og tjenerløsningen som brukes på
11221 Universitetet i Tromsø og Oslo, der jeg jobber med utvikling av
11222 driftstjenester. Dette er det heldigvis noen som har fått med seg, og
11223 jeg er glad for å kunne sitere fra en kommentar på den overnevnte
11224 artikkelen. Min venn og gamle kollega Sturle Sunde forteller der:
11225
11226 &lt;blockquote&gt;
11227 &lt;p&gt;I Flora kommune køyrer vi Skulelinux på skular med alt frå 15 til
11228 meir enn 500 elevar. Dei store skulane har eigen tenar, for det er
11229 mest praktisk. Eg, som er driftsansvarleg for heile nettet, ser
11230 sjeldan dei tenarane fysisk, men at dei står der gjer skulane mindre
11231 avhengige av eksterne linjer som er trege eller dyre. Dei minste
11232 skulane har ikkje eigen tenar. Å bruke sentral tenar er heller ikkje
11233 noko problem. Småskulane klarar seg fint med 1 mbit-linje til ein
11234 sentral tenar eller tenaren på ein større skule.&lt;/p&gt;
11235
11236 &lt;p&gt;Det beste med Skulelinux er halvtjukke klientar. Dei treng ikkje
11237 harddisk og brukar minimalt med ressursar på tenaren fordi dei køyrer
11238 programma lokalt. Eit klasserom med 30 sju-åtte år gamle maskiner har
11239 mykje meir CPU og RAM totalt enn nokon moderne tenar til under
11240 millionen. Det trengst to kommandoar på den sentrale tenaren for å
11241 oppdatere alle klientane, både tynne og halvtjukke. Vi har ingen
11242 problem med diskar som ryk heller, som var eit problem før fordi
11243 elevane sat og sparka i maskinene. Og dei krev lite bandbreidde i
11244 nettet, so det er fullt mogleg å køyre slike på småskular med trege
11245 linjer mot tenaren på ein større skule.&lt;/p&gt;
11246
11247 &lt;p&gt;Flora kommune har nesten 800 Linux-maskiner i sitt skulenett, og
11248 ein person som tek seg av drift av heile nettet, inkludert tenarar,
11249 klientar, operativsystem, programvare, heimekontorløysing og
11250 administrasjon av brukarar.&lt;/p&gt;
11251
11252 &lt;p&gt;No skal det seiast at vi ikkje køyrer rein Skulelinux ut av
11253 boksen. Vi har gjort ein del tilpassingar mot noko Novell-greier som
11254 var der frå før, og som har komplisert installasjonen vår. Etter at
11255 oppsettet var gjort har løysinga vore stabil og kravd minimalt med
11256 arbeid.&lt;/p&gt;
11257 &lt;/blockquote&gt;
11258
11259 &lt;p&gt;Jeg vet at Narvik, Harstad og Oslo er kommuner der Skolelinux
11260 sentraldriftes med sentrale tjenere. Det forteller meg at Steinkjers
11261 IT-sjef neppe bør skylde på Skolelinux-løsningen for sine 5 år gamle
11262 minner.&lt;/p&gt;
11263 </description>
11264 </item>
11265
11266 <item>
11267 <title>A manual for standards wars...</title>
11268 <link>http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</link>
11269 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</guid>
11270 <pubDate>Sun, 6 Jun 2010 14:15:00 +0200</pubDate>
11271 <description>&lt;p&gt;Via the
11272 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/QzU4RgoAGMg/weekly-links-10.html&quot;&gt;blog
11273 of Rob Weir&lt;/a&gt; I came across the very interesting essay named
11274 &lt;a href=&quot;http://faculty.haas.berkeley.edu/shapiro/wars.pdf&quot;&gt;The Art of
11275 Standards Wars&lt;/a&gt; (PDF 25 pages). I recommend it for everyone
11276 following the standards wars of today.&lt;/p&gt;
11277 </description>
11278 </item>
11279
11280 <item>
11281 <title>Sitesummary tip: Listing computer hardware models used at site</title>
11282 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</link>
11283 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</guid>
11284 <pubDate>Thu, 3 Jun 2010 12:05:00 +0200</pubDate>
11285 <description>&lt;p&gt;When using sitesummary at a site to track machines, it is possible
11286 to get a list of the machine types in use thanks to the DMI
11287 information extracted from each machine. The script to do so is
11288 included in the sitesummary package, and here is example output from
11289 the Skolelinux build servers:&lt;/p&gt;
11290
11291 &lt;blockquote&gt;&lt;pre&gt;
11292 maintainer:~# /usr/lib/sitesummary/hardware-model-summary
11293 vendor count
11294 Dell Computer Corporation 1
11295 PowerEdge 1750 1
11296 IBM 1
11297 eserver xSeries 345 -[8670M1X]- 1
11298 Intel 2
11299 [no-dmi-info] 3
11300 maintainer:~#
11301 &lt;/pre&gt;&lt;/blockquote&gt;
11302
11303 &lt;p&gt;The quality of the report depend on the quality of the DMI tables
11304 provided in each machine. Here there are Intel machines without model
11305 information listed with Intel as vendor and no model, and virtual Xen
11306 machines listed as [no-dmi-info]. One can add -l as a command line
11307 option to list the individual machines.&lt;/p&gt;
11308
11309 &lt;p&gt;A larger list is
11310 &lt;a href=&quot;http://narvikskolen.no/sitesummary/&quot;&gt;available from the the
11311 city of Narvik&lt;/a&gt;, which uses Skolelinux on all their shools and also
11312 provide the basic sitesummary report publicly. In their report there
11313 are ~1400 machines. I know they use both Ubuntu and Skolelinux on
11314 their machines, and as sitesummary is available in both distributions,
11315 it is trivial to get all of them to report to the same central
11316 collector.&lt;/p&gt;
11317 </description>
11318 </item>
11319
11320 <item>
11321 <title>KDM fail at boot with NVidia cards - and no one try to fix it?</title>
11322 <link>http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</link>
11323 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</guid>
11324 <pubDate>Tue, 1 Jun 2010 17:05:00 +0200</pubDate>
11325 <description>&lt;p&gt;It is strange to watch how a bug in Debian causing KDM to fail to
11326 start at boot when an NVidia video card is used is handled. The
11327 problem seem to be that the nvidia X.org driver uses a long time to
11328 initialize, and this duration is longer than kdm is configured to
11329 wait.&lt;/p&gt;
11330
11331 &lt;p&gt;I came across two bugs related to this issue,
11332 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;#583312&lt;/a&gt; initially filed
11333 against initscripts and passed on to nvidia-glx when it became obvious
11334 that the nvidia drivers were involved, and
11335 &lt;a href=&quot;http://bugs.debian.org/524751&quot;&gt;#524751&lt;/a&gt; initially filed against
11336 kdm and passed on to src:nvidia-graphics-drivers for unknown reasons.&lt;/p&gt;
11337
11338 &lt;p&gt;To me, it seem that no-one is interested in actually solving the
11339 problem nvidia video card owners experience and make sure the Debian
11340 distribution work out of the box for these users. The nvidia driver
11341 maintainers expect kdm to be set up to wait longer, while kdm expect
11342 the nvidia driver maintainers to fix the driver to start faster, and
11343 while they wait for each other I guess the users end up switching to a
11344 distribution that work for them. I have no idea what the solution is,
11345 but I am pretty sure that waiting for each other is not it.&lt;/p&gt;
11346
11347 &lt;p&gt;I wonder why we end up handling bugs this way.&lt;/p&gt;
11348 </description>
11349 </item>
11350
11351 <item>
11352 <title>Parallellized boot seem to hold up well in Debian/testing</title>
11353 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</link>
11354 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</guid>
11355 <pubDate>Thu, 27 May 2010 23:55:00 +0200</pubDate>
11356 <description>&lt;p&gt;A few days ago, parallel booting was enabled in Debian/testing.
11357 The feature seem to hold up pretty well, but three fairly serious
11358 issues are known and should be solved:
11359
11360 &lt;p&gt;&lt;ul&gt;
11361
11362 &lt;li&gt;The wicd package seen to
11363 &lt;a href=&quot;http://bugs.debian.org/508289&quot;&gt;break NFS mounting&lt;/a&gt; and
11364 &lt;a href=&quot;http://bugs.debian.org/581586&quot;&gt;network setup&lt;/a&gt; when
11365 parallel booting is enabled. No idea why, but the wicd maintainer
11366 seem to be on the case.&lt;/li&gt;
11367
11368 &lt;li&gt;The nvidia X driver seem to
11369 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;have a race condition&lt;/a&gt;
11370 triggered more easily when parallel booting is in effect. The
11371 maintainer is on the case.&lt;/li&gt;
11372
11373 &lt;li&gt;The sysv-rc package fail to properly enable dependency based boot
11374 sequencing (the shutdown is broken) when old file-rc users
11375 &lt;a href=&quot;http://bugs.debian.org/575080&quot;&gt;try to switch back&lt;/a&gt; to
11376 sysv-rc. One way to solve it would be for file-rc to create
11377 /etc/init.d/.legacy-bootordering, and another is to try to make
11378 sysv-rc more robust. Will investigate some more and probably upload a
11379 workaround in sysv-rc to help those trying to move from file-rc to
11380 sysv-rc get a working shutdown.&lt;/li&gt;
11381
11382 &lt;/ul&gt;&lt;/p&gt;
11383
11384 &lt;p&gt;All in all not many surprising issues, and all of them seem
11385 solvable before Squeeze is released. In addition to these there are
11386 some packages with bugs in their dependencies and run level settings,
11387 which I expect will be fixed in a reasonable time span.&lt;/p&gt;
11388
11389 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
11390 the BTS, please usertag the report to get it to show up at
11391 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
11392 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
11393
11394 &lt;p&gt;Update: Correct bug number to file-rc issue.&lt;/p&gt;
11395 </description>
11396 </item>
11397
11398 <item>
11399 <title>More flexible firmware handling in debian-installer</title>
11400 <link>http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</link>
11401 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</guid>
11402 <pubDate>Sat, 22 May 2010 21:30:00 +0200</pubDate>
11403 <description>&lt;p&gt;After a long break from debian-installer development, I finally
11404 found time today to return to the project. Having to spend less time
11405 working dependency based boot in debian, as it is almost complete now,
11406 definitely helped freeing some time.&lt;/p&gt;
11407
11408 &lt;p&gt;A while back, I ran into a problem while working on Debian Edu. We
11409 include some firmware packages on the Debian Edu CDs, those needed to
11410 get disk and network controllers working. Without having these
11411 firmware packages available during installation, it is impossible to
11412 install Debian Edu on the given machine, and because our target group
11413 are non-technical people, asking them to provide firmware packages on
11414 an external medium is a support pain. Initially, I expected it to be
11415 enough to include the firmware packages on the CD to get
11416 debian-installer to find and use them. This proved to be wrong.
11417 Next, I hoped it was enough to symlink the relevant firmware packages
11418 to some useful location on the CD (tried /cdrom/ and
11419 /cdrom/firmware/). This also proved to not work, and at this point I
11420 found time to look at the debian-installer code to figure out what was
11421 going to work.&lt;/p&gt;
11422
11423 &lt;p&gt;The firmware loading code is in the hw-detect package, and a closer
11424 look revealed that it would only look for firmware packages outside
11425 the installation media, so the CD was never checked for firmware
11426 packages. It would only check USB sticks, floppies and other
11427 &quot;external&quot; media devices. Today I changed it to also look in the
11428 /cdrom/firmware/ directory on the mounted CD or DVD, which should
11429 solve the problem I ran into with Debian edu. I also changed it to
11430 look in /firmware/, to make sure the installer also find firmware
11431 provided in the initrd when booting the installer via PXE, to allow us
11432 to provide the same feature in the PXE setup included in Debian
11433 Edu.&lt;/p&gt;
11434
11435 &lt;p&gt;To make sure firmware deb packages with a license questions are not
11436 activated without asking if the license is accepted, I extended
11437 hw-detect to look for preinst scripts in the firmware packages, and
11438 run these before activating the firmware during installation. The
11439 license question is asked using debconf in the preinst, so this should
11440 solve the issue for the firmware packages I have looked at so far.&lt;/p&gt;
11441
11442 &lt;p&gt;If you want to discuss the details of these features, please
11443 contact us on debian-boot@lists.debian.org.&lt;/p&gt;
11444 </description>
11445 </item>
11446
11447 <item>
11448 <title>Pieces of the roaming laptop puzzle in Debian</title>
11449 <link>http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</link>
11450 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</guid>
11451 <pubDate>Wed, 19 May 2010 19:00:00 +0200</pubDate>
11452 <description>&lt;p&gt;Today, the last piece of the puzzle for roaming laptops in Debian
11453 Edu finally entered the Debian archive. Today, the new
11454 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-mklocaluser.html&quot;&gt;libpam-mklocaluser&lt;/a&gt;
11455 package was accepted. Two days ago, two other pieces was accepted
11456 into unstable. The
11457 &lt;a href=&quot;http://packages.qa.debian.org/p/pam-python.html&quot;&gt;pam-python&lt;/a&gt;
11458 package needed by libpam-mklocaluser, and the
11459 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd&lt;/a&gt; package
11460 passed NEW on Monday. In addition, the
11461 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
11462 package we need is in experimental (version 10-4) since Saturday, and
11463 hopefully will be moved to unstable soon.&lt;/p&gt;
11464
11465 &lt;p&gt;This collection of packages allow for two different setups for
11466 roaming laptops. The traditional setup would be using libpam-ccreds,
11467 nscd and libpam-mklocaluser with LDAP or Kerberos authentication,
11468 which should work out of the box if the configuration changes proposed
11469 for nscd in &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;BTS report
11470 #485282&lt;/a&gt; is implemented. The alternative setup is to use sssd with
11471 libpam-mklocaluser to connect to LDAP or Kerberos and let sssd take
11472 care of the caching of passwords and group information.&lt;/p&gt;
11473
11474 &lt;p&gt;I have so far been unable to get sssd to work with the LDAP server
11475 at the University, but suspect the issue is some SSL/GnuTLS related
11476 problem with the server certificate. I plan to update the Debian
11477 package to version 1.2, which is scheduled for next week, and hope to
11478 find time to make sure the next release will include both the
11479 Debian/Ubuntu specific patches. Upstream is friendly and responsive,
11480 and I am sure we will find a good solution.&lt;/p&gt;
11481
11482 &lt;p&gt;The idea is to set up the roaming laptops to authenticate using
11483 LDAP or Kerberos and create a local user with home directory in /home/
11484 when a usre in LDAP logs in via KDM or GDM for the first time, and
11485 cache the password for offline checking, as well as caching group
11486 memberhips and other relevant LDAP information. The
11487 libpam-mklocaluser package was created to make sure the local home
11488 directory is in /home/, instead of /site/server/directory/ which would
11489 be the home directory if pam_mkhomedir was used. To avoid confusion
11490 with support requests and configuration, we do not want local laptops
11491 to have users in a path that is used for the same users home directory
11492 on the home directory servers.&lt;/p&gt;
11493
11494 &lt;p&gt;One annoying problem with gdm is that it do not show the PAM
11495 message passed to the user from libpam-mklocaluser when the local user
11496 is created. Instead gdm simply reject the login with some generic
11497 message. The message is shown in kdm, ssh and login, so I guess it is
11498 a bug in gdm. Have not investigated if there is some other message
11499 type that can be used instead to get gdm to also show the message.&lt;/p&gt;
11500
11501 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
11502 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
11503 </description>
11504 </item>
11505
11506 <item>
11507 <title>Parallellized boot is now the default in Debian/unstable</title>
11508 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</link>
11509 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</guid>
11510 <pubDate>Fri, 14 May 2010 22:40:00 +0200</pubDate>
11511 <description>&lt;p&gt;Since this evening, parallel booting is the default in
11512 Debian/unstable for machines using dependency based boot sequencing.
11513 Apparently the testing of concurrent booting has been wider than
11514 expected, if I am to believe the
11515 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
11516 on debian-devel@&lt;/a&gt;, and I concluded a few days ago to move forward
11517 with the feature this weekend, to give us some time to detect any
11518 remaining problems before Squeeze is frozen. If serious problems are
11519 detected, it is simple to change the default back to sequential boot.
11520 The upload of the new sysvinit package also activate a new upstream
11521 version.&lt;/p&gt;
11522
11523 More information about
11524 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
11525 based boot sequencing&lt;/a&gt; is available from the Debian wiki. It is
11526 currently possible to disable parallel booting when one run into
11527 problems caused by it, by adding this line to /etc/default/rcS:&lt;/p&gt;
11528
11529 &lt;blockquote&gt;&lt;pre&gt;
11530 CONCURRENCY=none
11531 &lt;/pre&gt;&lt;/blockquote&gt;
11532
11533 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
11534 the BTS, please usertag the report to get it to show up at
11535 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
11536 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
11537 </description>
11538 </item>
11539
11540 <item>
11541 <title>Sitesummary tip: Listing MAC address of all clients</title>
11542 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</link>
11543 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</guid>
11544 <pubDate>Fri, 14 May 2010 21:10:00 +0200</pubDate>
11545 <description>&lt;p&gt;In the recent Debian Edu versions, the
11546 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;sitesummary
11547 system&lt;/a&gt; is used to keep track of the machines in the school
11548 network. Each machine will automatically report its status to the
11549 central server after boot and once per night. The network setup is
11550 also reported, and using this information it is possible to get the
11551 MAC address of all network interfaces in the machines. This is useful
11552 to update the DHCP configuration.&lt;/p&gt;
11553
11554 &lt;p&gt;To give some idea how to use sitesummary, here is a one-liner to
11555 ist all MAC addresses of all machines reporting to sitesummary. Run
11556 this on the collector host:&lt;/p&gt;
11557
11558 &lt;blockquote&gt;&lt;pre&gt;
11559 perl -MSiteSummary -e &#39;for_all_hosts(sub { print join(&quot; &quot;, get_macaddresses(shift)), &quot;\n&quot;; });&#39;
11560 &lt;/pre&gt;&lt;/blockquote&gt;
11561
11562 &lt;p&gt;This will list all MAC addresses assosiated with all machine, one
11563 line per machine and with space between the MAC addresses.&lt;/p&gt;
11564
11565 &lt;p&gt;To allow system administrators easier job at adding static DHCP
11566 addresses for hosts, it would be possible to extend this to fetch
11567 machine information from sitesummary and update the DHCP and DNS
11568 tables in LDAP using this information. Such tool is unfortunately not
11569 written yet.&lt;/p&gt;
11570 </description>
11571 </item>
11572
11573 <item>
11574 <title>Forcing new users to change their password on first login</title>
11575 <link>http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</link>
11576 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</guid>
11577 <pubDate>Sun, 2 May 2010 13:47:00 +0200</pubDate>
11578 <description>&lt;p&gt;One interesting feature in Active Directory, is the ability to
11579 create a new user with an expired password, and thus force the user to
11580 change the password on the first login attempt.&lt;/p&gt;
11581
11582 &lt;p&gt;I&#39;m not quite sure how to do that with the LDAP setup in Debian
11583 Edu, but did some initial testing with a local account. The account
11584 and password aging information is available in /etc/shadow, but
11585 unfortunately, it is not possible to specify an expiration time for
11586 passwords, only a maximum age for passwords.&lt;/p&gt;
11587
11588 &lt;p&gt;A freshly created account (using adduser test) will have these
11589 settings in /etc/shadow:&lt;/p&gt;
11590
11591 &lt;blockquote&gt;&lt;pre&gt;
11592 root@tjener:~# chage -l test
11593 Last password change : May 02, 2010
11594 Password expires : never
11595 Password inactive : never
11596 Account expires : never
11597 Minimum number of days between password change : 0
11598 Maximum number of days between password change : 99999
11599 Number of days of warning before password expires : 7
11600 root@tjener:~#
11601 &lt;/pre&gt;&lt;/blockquote&gt;
11602
11603 &lt;p&gt;The only way I could come up with to create a user with an expired
11604 account, is to change the date of the last password change to the
11605 lowest value possible (January 1th 1970), and the maximum password age
11606 to the difference in days between that date and today. To make it
11607 simple, I went for 30 years (30 * 365 = 10950) and January 2th (to
11608 avoid testing if 0 is a valid value).&lt;/p&gt;
11609
11610 &lt;p&gt;After using these commands to set it up, it seem to work as
11611 intended:&lt;/p&gt;
11612
11613 &lt;blockquote&gt;&lt;pre&gt;
11614 root@tjener:~# chage -d 1 test; chage -M 10950 test
11615 root@tjener:~# chage -l test
11616 Last password change : Jan 02, 1970
11617 Password expires : never
11618 Password inactive : never
11619 Account expires : never
11620 Minimum number of days between password change : 0
11621 Maximum number of days between password change : 10950
11622 Number of days of warning before password expires : 7
11623 root@tjener:~#
11624 &lt;/pre&gt;&lt;/blockquote&gt;
11625
11626 &lt;p&gt;So far I have tested this with ssh and console, and kdm (in
11627 Squeeze) login, and all ask for a new password before login in the
11628 user (with ssh, I was thrown out and had to log in again).&lt;/p&gt;
11629
11630 &lt;p&gt;Perhaps we should set up something similar for Debian Edu, to make
11631 sure only the user itself have the account password?&lt;/p&gt;
11632
11633 &lt;p&gt;If you want to comment on or help out with implementing this for
11634 Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
11635
11636 &lt;p&gt;Update 2010-05-02 17:20: Paul Tötterman tells me on IRC that the
11637 shadow(8) page in Debian/testing now state that setting the date of
11638 last password change to zero (0) will force the password to be changed
11639 on the first login. This was not mentioned in the manual in Lenny, so
11640 I did not notice this in my initial testing. I have tested it on
11641 Squeeze, and &#39;&lt;tt&gt;chage -d 0 username&lt;/tt&gt;&#39; do work there. I have not
11642 tested it on Lenny yet.&lt;/p&gt;
11643
11644 &lt;p&gt;Update 2010-05-02-19:05: Jim Paris tells me via email that an
11645 equivalent command to expire a password is &#39;&lt;tt&gt;passwd -e
11646 username&lt;/tt&gt;&#39;, which insert zero into the date of the last password
11647 change.&lt;/p&gt;
11648 </description>
11649 </item>
11650
11651 <item>
11652 <title>Thoughts on roaming laptop setup for Debian Edu</title>
11653 <link>http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</link>
11654 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</guid>
11655 <pubDate>Wed, 28 Apr 2010 20:40:00 +0200</pubDate>
11656 <description>&lt;p&gt;For some years now, I have wondered how we should handle laptops in
11657 Debian Edu. The Debian Edu infrastructure is mostly designed to
11658 handle stationary computers, and less suited for computers that come
11659 and go.&lt;/p&gt;
11660
11661 &lt;p&gt;Now I finally believe I have an sensible idea on how to adjust
11662 Debian Edu for laptops, by introducing a new profile for them, for
11663 example called Roaming Workstations. Here are my thought on this.
11664 The setup would consist of the following:&lt;/p&gt;
11665
11666 &lt;ul&gt;
11667
11668 &lt;li&gt;During installation, the user name of the owner / primary user of
11669 the laptop is requested and a local home directory is set up for
11670 the user, with uid and gid information fetched from the LDAP
11671 server. This allow the user to work also when offline. The
11672 central home directory can be available in a subdirectory on
11673 request, for example mounted via CIFS. It could be mounted
11674 automatically when a user log in while on the Debian Edu network,
11675 and unmounted when the machine is taken away (network down,
11676 hibernate, etc), it can be set up to do automatic mounting on
11677 request (using autofs), or perhaps some GUI button on the desktop
11678 can be used to access it when needed. Perhaps it is enough to use
11679 the fish protocol in KDE?&lt;/li&gt;
11680
11681 &lt;li&gt;Password checking is set up to use LDAP or Kerberos
11682 authentication when the machine is on the Debian Edu network, and
11683 to cache the password for offline checking when the machine unable
11684 to reach the LDAP or Kerberos server. This can be done using
11685 &lt;a href=&quot;http://www.padl.com/OSS/pam_ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
11686 or the Fedora developed
11687 &lt;a href=&quot;https://fedoraproject.org/wiki/Features/SSSD&quot;&gt;System
11688 Security Services Daemon&lt;/a&gt; packages.&lt;/li&gt;
11689
11690 &lt;li&gt;File synchronisation with the central home directory is set up
11691 using a shared directory in both the local and the central home
11692 directory, using unison.&lt;/li&gt;
11693
11694 &lt;li&gt;Printing should be set up to print to all printers broadcasting
11695 their existence on the local network, and should then work out of
11696 the box with CUPS. For sites needing accurate printer quotas, some
11697 system with Kerberos authentication or printing via ssh could be
11698 implemented.&lt;/li&gt;
11699
11700 &lt;li&gt;For users that should have local root access to their laptop,
11701 sudo should be used to allow this to the local user.&lt;/li&gt;
11702
11703 &lt;li&gt;It would be nice if user and group information from LDAP is
11704 cached on the client, but given that there are entries for the
11705 local user and primary group in /etc/, it should not be needed.&lt;/li&gt;
11706
11707 &lt;/ul&gt;
11708
11709 &lt;p&gt;I believe all the pieces to implement this are in Debian/testing at
11710 the moment. If we work quickly, we should be able to get this ready
11711 in time for the Squeeze release to freeze. Some of the pieces need
11712 tweaking, like libpam-ccreds should get support for pam-auth-update
11713 (&lt;a href=&quot;http://bugs.debian.org/566718&quot;&gt;#566718&lt;/a&gt;) and nslcd (or
11714 perhaps debian-edu-config) should get some integration code to stop
11715 its daemon when the LDAP server is unavailable to avoid long timeouts
11716 when disconnected from the net. If we get Kerberos enabled, we need
11717 to make sure we avoid long timeouts there too.&lt;/p&gt;
11718
11719 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
11720 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
11721 </description>
11722 </item>
11723
11724 <item>
11725 <title>Kerberos for Debian Edu/Squeeze?</title>
11726 <link>http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</link>
11727 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</guid>
11728 <pubDate>Wed, 14 Apr 2010 17:20:00 +0200</pubDate>
11729 <description>&lt;p&gt;&lt;a href=&quot;http://www.nuug.no/aktiviteter/20100413-kerberos/&quot;&gt;Yesterdays
11730 NUUG presentation&lt;/a&gt; about Kerberos was inspiring, and reminded me
11731 about the need to start using Kerberos in Skolelinux. Setting up a
11732 Kerberos server seem to be straight forward, and if we get this in
11733 place a long time before the Squeeze version of Debian freezes, we
11734 have a chance to migrate Skolelinux away from NFSv3 for the home
11735 directories, and over to an architecture where the infrastructure do
11736 not have to trust IP addresses and machines, and instead can trust
11737 users and cryptographic keys instead.&lt;/p&gt;
11738
11739 &lt;p&gt;A challenge will be integration and administration. Is there a
11740 Kerberos implementation for Debian where one can control the
11741 administration access in Kerberos using LDAP groups? With it, the
11742 school administration will have to maintain access control using flat
11743 files on the main server, which give a huge potential for errors.&lt;/p&gt;
11744
11745 &lt;p&gt;A related question I would like to know is how well Kerberos and
11746 pam-ccreds (offline password check) work together. Anyone know?&lt;/p&gt;
11747
11748 &lt;p&gt;Next step will be to use Kerberos for access control in Lwat and
11749 Nagios. I have no idea how much work that will be to implement. We
11750 would also need to document how to integrate with Windows AD, as such
11751 shared network will require two Kerberos realms that need to cooperate
11752 to work properly.&lt;/p&gt;
11753
11754 &lt;p&gt;I believe a good start would be to start using Kerberos on the
11755 skolelinux.no machines, and this way get ourselves experience with
11756 configuration and integration. A natural starting point would be
11757 setting up ldap.skolelinux.no as the Kerberos server, and migrate the
11758 rest of the machines from PAM via LDAP to PAM via Kerberos one at the
11759 time.&lt;/p&gt;
11760
11761 &lt;p&gt;If you would like to contribute to get this working in Skolelinux,
11762 I recommend you to see the video recording from yesterdays NUUG
11763 presentation, and start using Kerberos at home. The video show show
11764 up in a few days.&lt;/p&gt;
11765 </description>
11766 </item>
11767
11768 <item>
11769 <title>After 6 years of waiting, the Xreset.d feature is implemented</title>
11770 <link>http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</link>
11771 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</guid>
11772 <pubDate>Sat, 6 Mar 2010 18:15:00 +0100</pubDate>
11773 <description>&lt;p&gt;6 years ago, as part of the Debian Edu development I am involved
11774 in, I asked for a hook in the kdm and gdm setup to run scripts as root
11775 when the user log out. A bug was submitted against the xfree86-common
11776 package in 2004 (&lt;a href=&quot;http://bugs.debian.org/230422&quot;&gt;#230422&lt;/a&gt;),
11777 and revisited every time Debian Edu was working on a new release.
11778 Today, this finally paid off.&lt;/p&gt;
11779
11780 &lt;p&gt;The framework for this feature was today commited to the git
11781 repositry for the xorg package, and the git repository for xdm has
11782 been updated to use this framework. Next on my agenda is to make sure
11783 kdm and gdm also add code to use this framework.&lt;/p&gt;
11784
11785 &lt;p&gt;In Debian Edu, we want to ability to run commands as root when the
11786 user log out, to get rid of runaway processes and do general cleanup
11787 after a user. With this framework in place, we finally can do that in
11788 a generic way that work with all display managers using this
11789 framework. My goal is to get all display managers in Debian use it,
11790 similar to how they use the Xsession.d framework today.&lt;p&gt;
11791 </description>
11792 </item>
11793
11794 <item>
11795 <title>Debian Edu / Skolelinux based on Lenny released, work continues</title>
11796 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</link>
11797 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</guid>
11798 <pubDate>Thu, 11 Feb 2010 17:15:00 +0100</pubDate>
11799 <description>&lt;p&gt;On Tuesday, the Debian/Lenny based version of
11800 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; was finally
11801 shipped. This was a major leap forward for the project, and I am very
11802 pleased that we finally got the release wrapped up. Work on the first
11803 point release starts imediately, as we plan to get that one out a
11804 month after the major release, to include all fixes for bugs we found
11805 and fixed too late in the release process to include last Tuesday.&lt;/p&gt;
11806
11807 &lt;p&gt;Perhaps it even is time for some partying?&lt;/p&gt;
11808
11809 &lt;p&gt;After this first point release, my plan is to focus again on the
11810 next major release, based on Squeeze. We will try to get as many of
11811 the fixes we need into the official Debian packages before the freeze,
11812 and have just a few weeks or months to make it happen.&lt;/p&gt;
11813 </description>
11814 </item>
11815
11816 <item>
11817 <title>Automatic Munin and Nagios configuration</title>
11818 <link>http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</link>
11819 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</guid>
11820 <pubDate>Wed, 27 Jan 2010 15:15:00 +0100</pubDate>
11821 <description>&lt;p&gt;One of the new features in the next Debian/Lenny based release of
11822 Debian Edu/Skolelinux, which is scheduled for release in the next few
11823 days, is automatic configuration of the service monitoring system
11824 Nagios. The previous release had automatic configuration of trend
11825 analysis using Munin, and this Lenny based release take that a step
11826 further.&lt;/p&gt;
11827
11828 &lt;p&gt;When installing a Debian Edu Main-server, it is automatically
11829 configured as a Munin and Nagios server. In addition, it is
11830 configured to be a server for the
11831 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;SiteSummary
11832 system&lt;/a&gt; I have written for use in Debian Edu. The SiteSummary
11833 system is inspired by a system used by the University of Oslo where I
11834 work. In short, the system provide a centralised collector of
11835 information about the computers on the network, and a client on each
11836 computer submitting information to this collector. This allow for
11837 automatic information on which packages are installed on each machine,
11838 which kernel the machines are using, what kind of configuration the
11839 packages got etc. This also allow us to automatically generate Munin
11840 and Nagios configuration.&lt;/p&gt;
11841
11842 &lt;p&gt;All computers reporting to the sitesummary collector with the
11843 munin-node package installed is automatically enabled as a Munin
11844 client and graphs from the statistics collected from that machine show
11845 up automatically on http://www/munin/ on the Main-server.&lt;/p&gt;
11846
11847 &lt;p&gt;All non-laptop computers reporting to the sitesummary collector are
11848 automatically monitored for network presence (ping and any network
11849 services detected). In addition, all computers (also laptops) with
11850 the nagios-nrpe-server package installed and configured the way
11851 sitesummary would configure it, are monitored for full disks, software
11852 raid status, swap free and other checks that need to run locally on
11853 the machine.&lt;/p&gt;
11854
11855 &lt;p&gt;The result is that the administrator on a school using Debian Edu
11856 based on Lenny will be able to check the health of his installation
11857 with one look at the Nagios settings, without having to spend any time
11858 keeping the Nagios configuration up-to-date.&lt;/p&gt;
11859
11860 &lt;p&gt;The only configuration one need to do to get Nagios up and running
11861 is to set the password used to get access via HTTP. The system
11862 administrator need to run &quot;&lt;tt&gt;htpasswd /etc/nagios3/htpasswd.users
11863 nagiosadmin&lt;/tt&gt;&quot; to create a nagiosadmin user and set a password for
11864 it to be able to log into the Nagios web pages. After that,
11865 everything is taken care of.&lt;/p&gt;
11866 </description>
11867 </item>
11868
11869 <item>
11870 <title>Opphavet til Skolelinux-prosjektet</title>
11871 <link>http://people.skolelinux.org/pere/blog/Opphavet_til_Skolelinux_prosjektet.html</link>
11872 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Opphavet_til_Skolelinux_prosjektet.html</guid>
11873 <pubDate>Thu, 17 Dec 2009 10:50:00 +0100</pubDate>
11874 <description>&lt;p&gt;De færreste er klar over at Skolelinux-prosjektet kom som et resultat
11875 av en avgjørelse på årsmøtet i
11876 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; i 2000-06-29, der Håkon Wium
11877 Lie, da varamedlem i styret, tok på seg oppdraget om å starte et
11878 initiativ kalt &quot;Teach the Teacher&quot;, som skulle være et initiativ for
11879 å få fri programvare og unix-lignende operativsystemer inn i Skolen.
11880 Tanken var at en måtte starte med lærerne for at ungene skulle få
11881 mulighet til å møte en bedre IT-hverdag. Jeg var tilstede på
11882 møtet, og hadde sans for ideen, men intet skjedde. På vårparten
11883 2001 ble det arrangert en demonstrasjon i anledning at First Tuesday
11884 hadde invitert Microsoft til et møte for å fortelle om fremtidens
11885 Internet. Dette provoserte endel av oss, og EFN og NUUG tok initiativ
11886 til å arrangere
11887 &lt;a href=&quot;http://www.digi.no/60982/first-tuesday-mote-med-microsoft-protest&quot;&gt;en
11888 demonstrasjon utenfor lokalene 2001-05-21&lt;/a&gt;. Blant de som sto bak
11889 demonstrasjonen var Vidar Bakke fra NUUG og Håkon W. Lie fra EFN.
11890 Etter demonstrasjonen arrangerte Håkon en fest hjemme hos seg der alle
11891 som hadde vært aktive i demonstrasjonsplanlegging og gjennomføringen
11892 deltok. Før festen var jeg blitt lei av å vente på at Håkon skulle ta
11893 initiativ til &quot;Teach the Teacher&quot;, og for å forsøke å få litt fremgang
11894 besteme jeg meg for å benytte anledningen hos Håkon til å snakke om
11895 behovet for å hjelpe skolene i gang med bedre datasystemer bestående
11896 av fri programvare og unix-lignende operativsystemer. Flere var
11897 interessert, og Knut Yrvin tenkte på ideen. Han
11898 &lt;a href=&quot;http://developer.skolelinux.no/brev/2001-06-28-invitasjon-skolelinux.txt&quot;&gt;ropte
11899 sammen&lt;/a&gt; til et stiftelsesmøte i prosjektet i sin arbeidsgivers
11900 Objectwares lokaler ved Ullevål stadion 2001-07-02, og jeg ble med.
11901 Resten er historie. :)&lt;/p&gt;
11902 </description>
11903 </item>
11904
11905 <item>
11906 <title>Endelig operativt webbasert medlemsregister for Fri programvare i skolen</title>
11907 <link>http://people.skolelinux.org/pere/blog/Endelig_operativt_webbasert_medlemsregister_for_Fri_programvare_i_skolen.html</link>
11908 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Endelig_operativt_webbasert_medlemsregister_for_Fri_programvare_i_skolen.html</guid>
11909 <pubDate>Mon, 2 Nov 2009 22:40:00 +0100</pubDate>
11910 <description>&lt;p&gt;Under helgens utviklersamling i
11911 &lt;a href=&quot;http://www.skolelinux.no/&quot;&gt;Skolelinux&lt;/a&gt; fikk jeg endelig
11912 satt meg ned sammen med Ronny Aasen i styret for å få et webbasert
11913 medlemsregister tilbake på plass for foreningen som passer på
11914 skolelinuxprosjektet. Etter flere års knot og problemer, er nå
11915 memberdb satt opp og klart til bruk. Import av det gamle
11916 medlemsregisteret har vist seg vanskelig, så alle medlemmer bes om å
11917 registrere seg på nytt. Hvis du støtter FRiSKs formål så er du
11918 hjertelig velkommen til
11919 &lt;a href=&quot;http://medlem.friprogramvareiskolen.no/&quot;&gt;å melde deg
11920 inn&lt;/a&gt;. Formålet lyder:&lt;/p&gt;
11921
11922 &lt;blockquote&gt;Linux i skolen skal tilrettelegge for og informere om bruk
11923 av fri programvare, i henhold til Debian Free Software Guidelines av
11924 2002-02-03, i den norske skolen, slik som f.eks. Linux og
11925 GNU.&lt;/blockquote&gt;
11926 </description>
11927 </item>
11928
11929 <item>
11930 <title>Returning from Skolelinux developer gathering</title>
11931 <link>http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</link>
11932 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</guid>
11933 <pubDate>Sun, 29 Mar 2009 21:00:00 +0200</pubDate>
11934 <description>&lt;p&gt;I&#39;m sitting on the train going home from this weekends Debian
11935 Edu/Skolelinux development gathering. I got a bit done tuning the
11936 desktop, and looked into the dynamic service location protocol
11937 implementation avahi. It look like it could be useful for us. Almost
11938 30 people participated, and I believe it was a great environment to
11939 get to know the Skolelinux system. Walter Bender, involved in the
11940 development of the Sugar educational platform, presented his stuff and
11941 also helped me improve my OLPC installation. He also showed me that
11942 his Turtle Art application can be used in standalone mode, and we
11943 agreed that I would help getting it packaged for Debian. As a
11944 standalone application it would be great for Debian Edu. We also
11945 tried to get the video conferencing working with two OLPCs, but that
11946 proved to be too hard for us. The application seem to need more work
11947 before it is ready for me. I look forward to getting home and relax
11948 now. :)&lt;/p&gt;
11949 </description>
11950 </item>
11951
11952 <item>
11953 <title>Time for new LDAP schemas replacing RFC 2307?</title>
11954 <link>http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</link>
11955 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</guid>
11956 <pubDate>Sun, 29 Mar 2009 20:30:00 +0200</pubDate>
11957 <description>&lt;p&gt;The state of standardized LDAP schemas on Linux is far from
11958 optimal. There is RFC 2307 documenting one way to store NIS maps in
11959 LDAP, and a modified version of this normally called RFC 2307bis, with
11960 some modifications to be compatible with Active Directory. The RFC
11961 specification handle the content of a lot of system databases, but do
11962 not handle DNS zones and DHCP configuration.&lt;/p&gt;
11963
11964 &lt;p&gt;In &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux&lt;/a&gt;,
11965 we would like to store information about users, SMB clients/hosts,
11966 filegroups, netgroups (users and hosts), DHCP and DNS configuration,
11967 and LTSP configuration in LDAP. These objects have a lot in common,
11968 but with the current LDAP schemas it is not possible to have one
11969 object per entity. For example, one need to have at least three LDAP
11970 objects for a given computer, one with the SMB related stuff, one with
11971 DNS information and another with DHCP information. The schemas
11972 provided for DNS and DHCP are impossible to combine into one LDAP
11973 object. In addition, it is impossible to implement quick queries for
11974 netgroup membership, because of the way NIS triples are implemented.
11975 It just do not scale. I believe it is time for a few RFC
11976 specifications to cleam up this mess.&lt;/p&gt;
11977
11978 &lt;p&gt;I would like to have one LDAP object representing each computer in
11979 the network, and this object can then keep the SMB (ie host key), DHCP
11980 (mac address/name) and DNS (name/IP address) settings in one place.
11981 It need to be efficently stored to make sure it scale well.&lt;/p&gt;
11982
11983 &lt;p&gt;I would also like to have a quick way to map from a user or
11984 computer and to the net group this user or computer is a member.&lt;/p&gt;
11985
11986 &lt;p&gt;Active Directory have done a better job than unix heads like myself
11987 in this regard, and the unix side need to catch up. Time to start a
11988 new IETF work group?&lt;/p&gt;
11989 </description>
11990 </item>
11991
11992 <item>
11993 <title>Endelig er Debian Lenny gitt ut</title>
11994 <link>http://people.skolelinux.org/pere/blog/Endelig_er_Debian_Lenny_gitt_ut.html</link>
11995 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Endelig_er_Debian_Lenny_gitt_ut.html</guid>
11996 <pubDate>Sun, 15 Feb 2009 11:50:00 +0100</pubDate>
11997 <description>&lt;p&gt;Endelig er &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt;
11998 &lt;a href=&quot;http://www.debian.org/News/2009/20090214&quot;&gt;Lenny&lt;/a&gt; gitt ut.
11999 Et langt steg videre for Debian-prosjektet, og en rekke nye
12000 programpakker blir nå tilgjengelig for de av oss som bruker den
12001 stabile utgaven av Debian. Neste steg er nå å få
12002 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; /
12003 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/&quot;&gt;Debian Edu&lt;/a&gt; ferdig
12004 oppdatert for den nye utgaven, slik at en oppdatert versjon kan
12005 slippes løs på skolene. Takk til alle debian-utviklerne som har
12006 gjort dette mulig. Endelig er f.eks. fungerende avhengighetsstyrt
12007 bootsekvens tilgjengelig i stabil utgave, vha pakken
12008 &lt;tt&gt;insserv&lt;/tt&gt;.&lt;/p&gt;
12009 </description>
12010 </item>
12011
12012 <item>
12013 <title>Endelig norsk stavekontroll med støtte for ord med bindestrek</title>
12014 <link>http://people.skolelinux.org/pere/blog/Endelig_norsk_stavekontroll_med_st_tte_for_ord_med_bindestrek.html</link>
12015 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Endelig_norsk_stavekontroll_med_st_tte_for_ord_med_bindestrek.html</guid>
12016 <pubDate>Fri, 26 Dec 2008 11:00:00 +0100</pubDate>
12017 <description>&lt;p&gt;Etter flere års mislykkede forsøk på å skrive om byggesystemet for
12018 &lt;a href=&quot;http://no.speling.org/&quot;&gt;den norske stavekontrollen for bokmål
12019 og nynorsk&lt;/a&gt; til å ikke bruke bindestrek som ordskillemarkør, lyktes jeg
12020 endelig første juledag. Bruken av bindestrek som ordskillemarkør har
12021 gjort det umulig å få med ord med bindestrek i
12022 stavekontrolldatagrunnlaget, slik at ord som e-post og CD-spiller ikke
12023 kunne godtas av stavekontrollen. Hadde litt tid til overs å bruke på
12024 stavekontrollen, og satte meg ned med to kopier av byggsystemet og en
12025 liten testdatafil, og byttet ut - med = på utvalgte steder i
12026 byggsystemet og datafilen helt til jeg fikk samme resultat med det
12027 gamle og det nye byggsystemet. Dette tror jeg var forsøk 4, der de
12028 foregående har feilet uten at jeg klarte å forstå hvorfor. Det sier
12029 kanskje litt om kompleksiteten i det originale byggsystemet som Rune
12030 Kleveland laget i sin tid.&lt;/p&gt;
12031
12032 &lt;p&gt;Etter å ha endret byggsystemet, var neste steg å importere ordene
12033 med bindestrek. Vi har en rekke slike i databasene for
12034 &lt;a href=&quot;http://tyge.sslug.dk/~korsvoll/nb.speling.org/htdocs/&quot;&gt;bokmål&lt;/a&gt;
12035 og
12036 &lt;a href=&quot;http://tyge.sslug.dk/~korsvoll/nn.speling.org/htdocs/&quot;&gt;nynorsk&lt;/a&gt;
12037 for korrektur av datagrunnlaget for stavekontrollen, og etter importen
12038 skulle nå 10350 nye ord bli godkjent som korrekt stavede ord av
12039 stavekontrollen.&lt;/p&gt;
12040 </description>
12041 </item>
12042
12043 <item>
12044 <title>Devcamp brought us closer to the Lenny based Debian Edu release</title>
12045 <link>http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</link>
12046 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</guid>
12047 <pubDate>Sun, 7 Dec 2008 12:00:00 +0100</pubDate>
12048 <description>&lt;p&gt;This weekend we had a small developer gathering for Debian Edu in
12049 Oslo. Most of Saturday was used for the general assemly for the
12050 member organization, but the rest of the weekend I used to tune the
12051 LTSP installation. LTSP now work out of the box on the 10-network.
12052 Acer Aspire One proved to be a very nice thin client, with both
12053 screen, mouse and keybard in a small box. Was working on getting the
12054 diskless workstation setup configured out of the box, but did not
12055 finish it before the weekend was up.&lt;/p&gt;
12056
12057 &lt;p&gt;Did not find time to look at the 4 VGA cards in one box we got from
12058 the Brazilian group, so that will have to wait for the next
12059 development gathering. Would love to have the Debian Edu installer
12060 automatically detect and configure a multiseat setup when it find one
12061 of these cards.&lt;/p&gt;
12062 </description>
12063 </item>
12064
12065 <item>
12066 <title>The sorry state of multimedia browser plugins in Debian</title>
12067 <link>http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</link>
12068 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</guid>
12069 <pubDate>Tue, 25 Nov 2008 00:10:00 +0100</pubDate>
12070 <description>&lt;p&gt;Recently I have spent some time evaluating the multimedia browser
12071 plugins available in Debian Lenny, to see which one we should use by
12072 default in Debian Edu. We need an embedded video playing plugin with
12073 control buttons to pause or stop the video, and capable of streaming
12074 all the multimedia content available on the web. The test results and
12075 notes are available on
12076 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;the
12077 Debian wiki&lt;/a&gt;. I was surprised how few of the plugins are able to
12078 fill this need. My personal video player favorite, VLC, has a really
12079 bad plugin which fail on a lot of the test pages. A lot of the MIME
12080 types I would expect to work with any free software player (like
12081 video/ogg), just do not work. And simple formats like the
12082 audio/x-mplegurl format (m3u playlists), just isn&#39;t supported by the
12083 totem and vlc plugins. I hope the situation will improve soon. No
12084 wonder sites use the proprietary Adobe flash to play video.&lt;/p&gt;
12085
12086 &lt;p&gt;For Lenny, we seem to end up with the mplayer plugin. It seem to
12087 be the only one fitting our needs. :/&lt;/p&gt;
12088 </description>
12089 </item>
12090
12091 </channel>
12092 </rss>