]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
Prepare a new interview.
[homepage.git] / blog / index.rss
index 5f7af60ba61d3ffd7f948b6251038c3099b8af90..86a15fe3a9bbaa9fb284fec4c2fd5e7e81d7c1e8 100644 (file)
@@ -6,6 +6,178 @@
                 <link>http://people.skolelinux.org/pere/blog/</link>
                 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
        
+       <item>
+               <title>SOAP based webservice from Dell to check server support status</title>
+               <link>http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</guid>
+                <pubDate>Fri, 1 Jun 2012 15:20:00 +0200</pubDate>
+               <description>&lt;p&gt;A few years ago I wrote
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html&quot;&gt;how
+to extract support status&lt;/a&gt; for your Dell and HP servers.  Recently
+I have learned from colleges here at the
+&lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; that Dell have
+made this even easier, by providing a SOAP based web service.  Given
+the service tag, one can now query the Dell servers and get machine
+readable information about the support status.  This perl code
+demonstrate how to do it:&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+use strict;
+use warnings;
+use SOAP::Lite;
+use Data::Dumper;
+my $GUID = &#39;11111111-1111-1111-1111-111111111111&#39;;
+my $App = &#39;test&#39;;
+my $servicetag = $ARGV[0] or die &quot;Please supply a servicetag. $!\n&quot;;
+my ($deal, $latest, @dates);
+my $s = SOAP::Lite
+    -&gt; uri(&#39;http://support.dell.com/WebServices/&#39;)
+    -&gt; on_action( sub { join &#39;&#39;, @_ } )
+    -&gt; proxy(&#39;http://xserv.dell.com/services/assetservice.asmx&#39;)
+    ;
+my $a = $s-&gt;GetAssetInformation(
+    SOAP::Data-&gt;name(&#39;guid&#39;)-&gt;value($GUID)-&gt;type(&#39;&#39;),
+    SOAP::Data-&gt;name(&#39;applicationName&#39;)-&gt;value($App)-&gt;type(&#39;&#39;),
+    SOAP::Data-&gt;name(&#39;serviceTags&#39;)-&gt;value($servicetag)-&gt;type(&#39;&#39;),
+);
+print Dumper($a -&gt; result) ;
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;The output can look like this:&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+$VAR1 = {
+          &#39;Asset&#39; =&gt; {
+                     &#39;Entitlements&#39; =&gt; {
+                                       &#39;EntitlementData&#39; =&gt; [
+                                                            {
+                                                              &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
+                                                              &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
+                                                              &#39;Provider&#39; =&gt; &#39;&#39;,
+                                                              &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
+                                                              &#39;DaysLeft&#39; =&gt; &#39;0&#39;
+                                                            },
+                                                            {
+                                                              &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
+                                                              &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
+                                                              &#39;Provider&#39; =&gt; &#39;&#39;,
+                                                              &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
+                                                              &#39;DaysLeft&#39; =&gt; &#39;0&#39;
+                                                            },
+                                                            {
+                                                              &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
+                                                              &#39;EndDate&#39; =&gt; &#39;2007-07-29T00:00:00&#39;,
+                                                              &#39;Provider&#39; =&gt; &#39;&#39;,
+                                                              &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
+                                                              &#39;DaysLeft&#39; =&gt; &#39;0&#39;
+                                                            }
+                                                          ]
+                                     },
+                     &#39;AssetHeaderData&#39; =&gt; {
+                                          &#39;SystemModel&#39; =&gt; &#39;GX620&#39;,
+                                          &#39;ServiceTag&#39; =&gt; &#39;8DSGD2J&#39;,
+                                          &#39;SystemShipDate&#39; =&gt; &#39;2006-07-29T19:00:00-05:00&#39;,
+                                          &#39;Buid&#39; =&gt; &#39;2323&#39;,
+                                          &#39;Region&#39; =&gt; &#39;Europe&#39;,
+                                          &#39;SystemID&#39; =&gt; &#39;PLX_GX620&#39;,
+                                          &#39;SystemType&#39; =&gt; &#39;OptiPlex&#39;
+                                        }
+                   }
+        };
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;I have not been able to find any documentation from Dell about this
+service outside the
+&lt;a href=&quot;http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation&quot;&gt;inline
+documentation&lt;/a&gt;, and according to
+&lt;a href=&quot;http://iboyd.net/index.php/2012/02/14/updated-dell-warranty-information-script/&quot;&gt;one
+comment&lt;/a&gt; it can have stability issues, but it is a lot better than
+scraping HTML pages. :)&lt;/p&gt;
+
+&lt;p&gt;Wonder if HP and other server vendors have a similar service.  If
+you know of one, drop me an email. :)&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Veileder fra DIFI om publisering av offentlige data</title>
+               <link>http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html</guid>
+                <pubDate>Fri, 1 Jun 2012 10:40:00 +0200</pubDate>
+               <description>&lt;p&gt;På onsdag rakk jeg såvidt innom
+&lt;a href=&quot;http://www.meetup.com/osloopendata/&quot;&gt;Oslo Open Data Forums&lt;/a&gt;
+møte, og fikk lagt hendene mine på DIFIs helt nye veileder
+&quot;&lt;a href=&quot;http://veileder.data.norge.no/&quot;&gt;Åpne data.  Del og skap
+verdier.  Veileder i tilgjengeliggjøring av offentlig data&lt;/a&gt;&quot; (også
+&lt;a href=&quot;http://www.difi.no/filearchive/veileder-i-tilgjengeliggjoring-av-offentlig-data-web.pdf&quot;&gt;tilgjengelig
+som PDF&lt;/a&gt; fra DIFI).&lt;/p&gt;
+
+&lt;p&gt;Veilederen er veldig bra, og nevner viktige problemstillinger og
+skisserer f.eks. både verdiskapningspotensialet og formatmulighetene
+som en bør ha i bakhodet når en publiserer offentlig informasjon på
+maskinlesbart format.  Kildekoden til veilederen er
+&lt;a href=&quot;https://github.com/difi/veileder-opnedata&quot;&gt;tilgjengelig via
+github&lt;/a&gt;, og en kan rapportere tilbakemeldinger og forslag til
+forbedringer der (eller via epost og twitter for de som ønsker
+det).&lt;/p&gt;
+
+&lt;p&gt;Det eneste jeg virkelig savnet i veilederen var omtale av
+&lt;a href=&quot;http://www.w3.org/DesignIssues/LinkedData.html&quot;&gt;w3cs
+stjerneklassifisering&lt;/a&gt; av åpne datakilder, som jeg tror ville være
+nyttige mentale knagger for de som vurderer å publisere sin
+informasjon på som åpne data.  Jeg har
+&lt;a href=&quot;https://github.com/difi/veileder-opnedata/issues/1&quot;&gt;rapportert
+en github-bug&lt;/a&gt; om dette, så får vi se hvordan den blir behandlet.&lt;/p&gt;
+
+&lt;p&gt;Det slo meg at det var veldig lite konkret i veilederen om valg av
+bruksvilkår ved publisering (aka lisens), men jeg er ikke sikker på om
+det hører hjemme der, da det er et vanskelig tema som kanskje heller
+hører hjemme i sin egen veileder.  Uansett, anbefaler alle å ta en
+titt på veilederen og sikre at alle offentlige etater en har kontakt
+med får en kopi.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>First monitor calibration using ColorHug</title>
+               <link>http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</guid>
+                <pubDate>Thu, 31 May 2012 22:10:00 +0200</pubDate>
+               <description>&lt;p&gt;A few days ago my color calibration gadget
+&lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;ColorHug&lt;/a&gt; arrived in the
+mail, and I&#39;ve had a few days to test it.  As all my machines are
+running Debian Squeeze, where 
+&lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;the
+calibration software&lt;/a&gt; is missing (it is present in Wheezy and Sid),
+I ran the calibration using the Fedora based live CD.  This worked
+just fine.  So far I have only done the quick calibration.  It was
+slow enough for me, so I will leave the more extensive calibration for
+another day.&lt;/p&gt;
+
+&lt;p&gt;After calibration, I get a
+&lt;a href=&quot;http://en.wikipedia.org/wiki/ICC_profile&quot;&gt;ICC color
+profile&lt;/a&gt; file that can be passed to programs understanding such
+tools.  KDE do not seem to understand it out of the box, so I searched
+for command line tools to use to load the color profile into X.
+xcalib was the first one I found, and it seem to work fine for single
+monitor setups.  But for my video player, a laptop with a flat screen
+attached, it was unable to load the color profile for the correct
+monitor.  After searching a bit, I
+&lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=1347896&quot;&gt;discovered&lt;/a&gt;
+that the dispwin tool from the argyll package would do what I wanted,
+and a simple&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+dispwin -d 1 profile.icc
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;later I had the color profile loaded for the correct monitor.  The
+result was a bit more pink than I expected.  I guess I picked the
+wrong monitor type for the &quot;led&quot; monitor I got, but the result is good
+enough for now.&lt;/p&gt;
+</description>
+       </item>
+       
        <item>
                <title>Hvor samles det inn bensinpriser for Norge?</title>
                <link>http://people.skolelinux.org/pere/blog/Hvor_samles_det_inn_bensinpriser_for_Norge_.html</link>
@@ -24,7 +196,7 @@ dag.&lt;/p&gt;
 &lt;dt&gt;Dinside.no nettside&lt;/dt&gt;
 
 &lt;dd&gt;Nettavisen dinside startet for noen år siden en dugnad for å
-&lt;ahref=&quot;http://www.dinside.no/1931/her-faar-du-billigst-bensin-diesel&quot;&gt;samle
+&lt;a href=&quot;http://www.dinside.no/1931/her-faar-du-billigst-bensin-diesel&quot;&gt;samle
 inn drivstoffpriser&lt;/a&gt;.  Tjenesten samler inn med et nettsideskjema
 der en må registrere seg for å delta.  En SMS-tjeneste har visst
 eksistert tidligere, men er ute av drift 2012-05-31.  Listen over
@@ -33,19 +205,19 @@ mangler geografiske koordinater for fremvisning på kart.  Listen over
 innsamlede bensinpriser er tilgjengelig som nettside i litt over 24
 timer etter registrering.  Antall innsamlede priser pr. dag ligger i
 området 10-35, og jeg har startet på
-&lt;ahref=&quot;https://scraperwiki.com/scrapers/dinside-bensinpriser/&quot;&gt;en
+&lt;a href=&quot;https://scraperwiki.com/scrapers/dinside-bensinpriser/&quot;&gt;en
 database over de publiserte prisene&lt;/a&gt; hos Scraperwiki.&lt;/dd&gt;
 
 &lt;dt&gt;Bitfactorys mobilapp&lt;/dt&gt;
 
 &lt;dd&gt;I fjor lanserte
-&lt;ahref=&quot;http://www.bitfactory.no/bensinpris.html&quot;&gt;selskapet Bitfactory
+&lt;a href=&quot;http://www.bitfactory.no/bensinpris.html&quot;&gt;selskapet Bitfactory
 sin landsdekkende mobilapp&lt;/a&gt; (først for iphone, siden også for
 Android) for å samle inn drivstoffpriser og gjøre det enkelt å finne
 billigste stasjon i nærområdet ved hjelp av smarttelefon.  Den
 innsamlede informasjonen er ikke publisert på web, men dagens priser
 kan hentes ut ved hjelp av et
-&lt;ahref=&quot;http://people.skolelinux.org/pere/blog/Litt_informasjon_om_Bitfactorys_Bensinpris_API.html&quot;&gt;web-API
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Litt_informasjon_om_Bitfactorys_Bensinpris_API.html&quot;&gt;web-API
 som jeg har dokumentert med reversutvikling&lt;/a&gt;.  Stasjonslisten
 inneholder geografiske koordinater for fremvisning på kart.  Antall
 innsamlede priser pr. dag ser ut til å ligge rundt 200.&lt;/dd&gt;
@@ -54,7 +226,7 @@ innsamlede priser pr. dag ser ut til å ligge rundt 200.&lt;/dd&gt;
 
 &lt;dt&gt;NAF Bergens nettside og iphone-app&lt;/dt&gt;
 
-&lt;dd&gt;I år lanserte NAF Bergen &lt;ahref=&quot;http://www.drivstoffpriser.no/&quot;&gt;en
+&lt;dd&gt;I år lanserte NAF Bergen &lt;a href=&quot;http://www.drivstoffpriser.no/&quot;&gt;en
 landsdekkende iphone-app&lt;/a&gt; koblet til NAF Bergens tjeneste for å
 samle inn og varsle brukerne om bensinpriser.  Nettstedet har
 publisert listen over bensinstasjoner, men ikke en komplett oversikt
@@ -74,7 +246,7 @@ tiden.&lt;/dd&gt;
 &lt;p&gt;I tillegg er jeg kjent med drivstoffguiden.no som ser ut til å være
 nedlagt, og at SSB som del av beregningen av konsumprisindeksen samler
 inn driftstoffpriser hver måned og
-&lt;ahref=&quot;http://www.ssb.no/petroleumsalg/&quot;&gt;legger dem ut i
+&lt;a href=&quot;http://www.ssb.no/petroleumsalg/&quot;&gt;legger dem ut i
 PDF-format&lt;/a&gt;.&lt;/p&gt;
 
 &lt;p&gt;Det jeg ikke forstår er hvorfor det stadig opprettes nye nett- og
@@ -94,7 +266,7 @@ bensinstasjonslisten og prisinformasjonen.&lt;/p&gt;
 
 &lt;tr&gt;
 &lt;th&gt;Tjeneste&lt;/th&gt;
-&lt;th&gt;Offentlig stasjonsliste&lt;/th&gt;
+&lt;th&gt;Offentlig stasjons-liste&lt;/th&gt;
 &lt;th&gt;Publisert stasjons-geopunkt&lt;/th&gt;
 &lt;th&gt;Publisert API for inn-legging&lt;/th&gt;
 &lt;th&gt;Publisert API for ut-henting&lt;/th&gt;
@@ -157,7 +329,7 @@ dokumentert API for innlegging og uthenting av informasjon.  NAFs
 løsning mangler publisering av all innsamlet informasjon og API for
 innlegging og uthenting av informasjon.&lt;/p&gt;
 
-&lt;p&gt;Jeg har nylig spurt folkene bak dinside.no oversikt og
+&lt;p&gt;Jeg har nylig spurt folkene bak dinside.nos oversikt og
 drivstoffpriser.no om de er villige til å gi ut sine innsamlede data
 uten bruksbegresninger og tilby et dokumentert og publisert API for å
 legge inn og hente ut informasjon.  Så får vi se hva de sier.&lt;/p&gt;
@@ -332,7 +504,7 @@ Ikke helt sikker på hva alle feltene er.  Her er mine gjett:&lt;/p&gt;
 &lt;tr&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;Pris for blyfri 95 oktan, flyttall med punktum som desimalskille.&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;Klokkeslett da prisen ble oppdatert, format HH:MM.  &lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;Telefon-ID på formen Android-123456789012345 eller hex-kodet streng/MD5-sum&lt;/td&gt;&lt;/tr&gt;
-&lt;tr&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;tall, uviss betydning.  muligens relatert til day-verdien.&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;tall, uviss betydning.  muligens relatert til day-verdien. &lt;b&gt;Oppdatering 2012-06-02: Denne verdien er antall bekreftelse en gitt pris har fått.&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;Pris for blyfri 98-oktan?&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;samme som felt 3&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;samme som felt 4&lt;/td&gt;&lt;/tr&gt;
@@ -724,211 +896,5 @@ alternativer.
 </description>
        </item>
        
-       <item>
-               <title>ColorHug - USB and free software based screen color calibration</title>
-               <link>http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</guid>
-                <pubDate>Fri, 18 May 2012 10:00:00 +0200</pubDate>
-               <description>&lt;p&gt;In january, I
-&lt;a href=&quot;http://blog.cihar.com/archives/2012/01/17/colorhug-has-arrived/&quot;&gt;discovered
-the ColorHug&lt;/a&gt;, a USB dongle from
-&lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;Hughski&lt;/a&gt; to calibrate
-the color on a computer screen.  The software required is
-&lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;included
-in Debian&lt;/a&gt;, and I decided back then to preorder from the next
-batch.  Yesterday I finally heard back from them, and got the
-opportunity to order.  Today I ordered mine, and eagerly await the
-delivery.  I hope it arrive next week, as I got a confirmation that it
-should go in the mail on monday. :)&lt;/p&gt;
-
-&lt;p&gt;If you want to ensure the colors on the screen match the intended
-colors, I suggest you check out this cheap tool with free software
-drivers. :)&lt;/p&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Dør Unix, eller lever den videre som Linux?</title>
-               <link>http://people.skolelinux.org/pere/blog/D_r_Unix__eller_lever_den_videre_som_Linux_.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/D_r_Unix__eller_lever_den_videre_som_Linux_.html</guid>
-                <pubDate>Tue, 15 May 2012 10:20:00 +0200</pubDate>
-               <description>&lt;p&gt;Peter Hidas fra Gartner melder i Computerworld at
-&lt;a href=&quot;http://www.idg.no/computerworld/article245011.ece&quot;&gt;Unix
-nedkjempes av Linux og Windows&lt;/a&gt;.  For meg er påstanden meningsløs,
-da Linux er en variant av Unix, og hele diskusjonen om Linux er Unix
-eller ikke er utdatert og uinteressant.  Jeg ser at Helge Skrivervik
-deler mitt syn på saken i sin kommentar fra i går om at
-&quot;&lt;a href=&quot;http://www.mymayday.com/blogs/2012/unix-linux&quot;&gt;Unix vs. Linux
-= uinteressant&quot;&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;I &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt;-sammenheng møter jeg av og
-til folk som tror NUUG er for avdankede folk som driver med den samme
-Unix-varianten som Peter Hidas skriver om i sin kommentar, og dermed
-er en foreningen for avdankede teknologer interessert i døende
-teknologi.  Intet kunne være lengre fra sannheten.&lt;/p&gt;
-
-&lt;p&gt;NUUG er en forening for oss som har sans for fri programvare, åpne
-standarder og Unix-lignende operativsystemer, som Ubuntu, FreeBSD,
-Debian, Mint, Gentoo, Android, Gnome, KDE, LXDE, Firefox, LibreOffice,
-ODF, HTML, C++, ECMA-Script, etc.  Kort sagt der nyskapning skjer på
-IT-fronten i dag.  Det innebærer selvfølgelig også de som er
-interessert i de &quot;gamle&quot; Unix-ene som Solaris og HP-UX, men de er bare
-et lite mindretall blant NUUGs medlemmer.  De aller fleste medlemmene
-har i dag fokus på Linux.&lt;/p&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Debian Edu interview: Jürgen Leibner</title>
-               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</guid>
-                <pubDate>Sun, 13 May 2012 20:30:00 +0200</pubDate>
-               <description>&lt;p&gt;It has been a few busy weeks for me, but I am finally back to
-publish another interview with the people behind
-&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
-This time it is one of our German developers, who have helped out over the
-years to make sure both a lot of major but also a lot of the minor
-details get right before release.
-
-&lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;My name is Jürgen Leibner, I&#39;m 49 years old and living in
-Bielefeld, a town in northern Germany.  I worked nearly 20 years as
-certified engineer in the department for plant design and layout of an
-international company for machinery and equipment.  Since 2011 I&#39;m a
-certified technical writer (tekom e.V.) and doing technical
-documentations for a steam turbine manufacturer.  From April this year
-I will manage the department of technical documentation at a
-manufacturer of automation and assembly line engineering.&lt;/p&gt;
-
-&lt;p&gt;My first contact with linux was around 1993. Since that time I used
-it at work and at home repeatedly but not exclusively as I do now at
-home since 2006.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
-project?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;Once a day in the early year of 2001 when I wanted to fetch my
-daughter from primary school, there was a teacher sitting in the
-middle of 20 old computers trying to boot them and he failed. I helped
-him to get them booting. That was seen by the school director and she
-asked me if I would like to manage that the school gets all that old
-computers in use. I answered: &quot;Yes&quot;.&lt;/p&gt;
-
-&lt;p&gt;Some weeks later every of the 10 classrooms had one computer
-running Windows98. I began to collect old computers and equipment as
-gifts and installed the first computer room with a peer-to-peer
-network. I did my work at school without being payed in my spare time
-and with a lot of fun.  About one year later the school was connected
-to Internet and a local area network was installed in the school
-building.  That was the time to have a server and I knew it must be a
-Linux server to be able to fulfil all the wishes of the teachers and
-being able to do this in a transparent and economic way, without extra
-costs for things like licence and software.  So I searched for a
-school server system running under Linux and I found a couple of
-people nearby who founded &#39;skolelinux.de&#39;. It was the Skolelinux
-prerelease 32 I first tried out for being used at the school.  I
-managed the IT of that school until the municipal authority took over
-the IT management and centralised the services for all schools in
-Bielefeld in December of 2006.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
-Edu?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;When I&#39;m looking back to the beginning, there were other advantages
-for me as today.&lt;/p&gt;
-
-&lt;p&gt;In the past there were advantages like:&lt;/p&gt;
-
-&lt;p&gt;&lt;ul&gt;
-
-&lt;li&gt;I don&#39;t need to buy it so it generates no costs to the school as
-they had little money to spent for computers and software.&lt;/li&gt;
-
-&lt;li&gt;It has a licence which grands all rights to use it without
-cost.&lt;/li&gt;
-
-&lt;li&gt;It was more able to fit all requirements of a server system for
-schools than a Microsoft server system, even if there are only Windows
-clients because of it&#39;s preconfigured overall concept of being a
-infrastructure solution and community for schools, not only a
-server&lt;/li&gt;
-
-&lt;li&gt;I was able to configure the server to the needs of the
-school.&lt;/li&gt;
-
-&lt;/ul&gt;&lt;/p&gt;
-
-&lt;p&gt;Today some of the advantages has been lost, changed or new ones
-came up in this way:&lt;/p&gt;
-
-&lt;p&gt;&lt;ul&gt;
-
-&lt;li&gt;Most schools here do have money to buy hardware and software
-now.&lt;/li&gt;
-
-&lt;li&gt;They are today mostly managed from central IT departments which
-have own concepts which often do not fit to Debian Edu concepts
-because they are to close to Microsoft ideology.&lt;/li&gt;
-
-&lt;li&gt;With the Squeeze version of Debian Edu which now uses GOsa² for
-management I feel more able to manage the daily tasks than with the
-interfaces used in the past.&lt;/li&gt;
-
-&lt;li&gt;It is more modular than in the past and fits even better to the
-different needs.&lt;/li&gt;
-
-&lt;li&gt;The documentation is usable and gets better every day.&lt;/li&gt;
-
-&lt;li&gt;More people than ever before are using Debian Edu all over the
-world and so the community, which is an very important part I think,
-is sharing knowledge and minds.&lt;/li&gt;
-
-&lt;li&gt;Most, maybe all, of the technical requirements for schools are
-solved today by Debian Edu. &lt;/li&gt;
-
-&lt;/ul&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
-Edu?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;ul&gt;
-
-&lt;li&gt;There are too few IT companies able to integrate Debian Edu into
-their product portfolio for serving schools with concepts or even
-whole municipality areas.&lt;/li&gt;
-
-&lt;li&gt;Debian Edu has beside other free and open software projects not
-enough lobbyists which promote free and open software to
-politicians.&lt;/li&gt;
-
-&lt;li&gt;Technically there are no disadvantages I&#39;m aware of.&lt;/li&gt;
-
-&lt;/ul&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;I use Debian stable on my home server and on my little desktop
-computer. On my laptop I use Debian testing/sid. The applications I
-use on my laptop and my desktop are Open/Libre-office, Iceweasel,
-KMail, DigiKam, Amarok, Dolphin, okular and all the other programs I
-need from the KDE environment.  On console I use newsbeuter, mutt,
-screen, irssi and all the other famous and useful tools.&lt;/p&gt;
-
-&lt;p&gt;My home server provides mail services with exim, dovecot, roundcube
-and mutt over ssh on the console, file services with samba, NFS,
-rsync, web services with apache, moinmoin-wiki, multimedia services
-with gallery2 and mediatomb and database services with MySQL for me
-and the whole family.  I probably forgot something.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
-get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;I believe, we should provide concepts for IT companies to integrate
-Debian Edu into their product portfolio with use cases for different
-countries and areas all over the world.&lt;/p&gt;
-</description>
-       </item>
-       
         </channel>
 </rss>