1 <?xml version=
"1.0" encoding=
"ISO-8859-1"?>
2 <rss version='
2.0' xmlns:lj='http://www.livejournal.org/rss/lj/
1.0/'
>
4 <title>Petter Reinholdtsen - Entries from June
2012</title>
5 <description>Entries from June
2012</description>
6 <link>http://people.skolelinux.org/pere/blog/
</link>
10 <title>Veileder fra DIFI om publisering av offentlige data
</title>
11 <link>http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html
</link>
12 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html
</guid>
13 <pubDate>Fri,
1 Jun
2012 10:
40:
00 +
0200</pubDate>
14 <description><p
>På onsdag rakk jeg såvidt innom
15 <a href=
"http://www.meetup.com/osloopendata/
">Oslo Open Data Forums
</a
>
16 møte, og fikk lagt hendene mine på DIFIs helt nye veileder
17 "<a href=
"http://veileder.data.norge.no/
">Åpne data. Del og skap
18 verdier. Veileder i tilgjengeliggjøring av offentlig data
</a
>" (også
19 <a href=
"http://www.difi.no/filearchive/veileder-i-tilgjengeliggjoring-av-offentlig-data-web.pdf
">tilgjengelig
20 som PDF
</a
> fra DIFI).
</p
>
22 <p
>Veilederen er veldig bra, og nevner viktige problemstillinger og
23 skisserer f.eks. både verdiskapningspotensialet og formatmulighetene
24 som en bør ha i bakhodet når en publiserer offentlig informasjon på
25 maskinlesbart format. Kildekoden til veilederen er
26 <a href=
"https://github.com/difi/veileder-opnedata
">tilgjengelig via
27 github
</a
>, og en kan rapportere tilbakemeldinger og forslag til
28 forbedringer der (eller via epost og twitter for de som ønsker
31 <p
>Det eneste jeg virkelig savnet i veilederen var omtale av
32 <a href=
"http://www.w3.org/DesignIssues/LinkedData.html
">w3cs
33 stjerneklassifisering
</a
> av åpne datakilder, som jeg tror ville være
34 nyttige mentale knagger for de som vurderer å publisere sin
35 informasjon på som åpne data. Jeg har
36 <a href=
"https://github.com/difi/veileder-opnedata/issues/
1">rapportert
37 en github-bug
</a
> om dette, så får vi se hvordan den blir behandlet.
</p
>
39 <p
>Det slo meg at det var veldig lite konkret i veilederen om valg av
40 bruksvilkår ved publisering (aka lisens), men jeg er ikke sikker på om
41 det hører hjemme der, da det er et vanskelig tema som kanskje heller
42 hører hjemme i sin egen veileder. Uansett, anbefaler alle å ta en
43 titt på veilederen og sikre at alle offentlige etater en har kontakt
44 med får en kopi.
</p
>
49 <title>SOAP based webservice from Dell to check server support status
</title>
50 <link>http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html
</link>
51 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html
</guid>
52 <pubDate>Fri,
1 Jun
2012 15:
20:
00 +
0200</pubDate>
53 <description><p
>A few years ago I wrote
54 <a href=
"http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html
">how
55 to extract support status
</a
> for your Dell and HP servers. Recently
56 I have learned from colleges here at the
57 <a href=
"http://www.uio.no/
">University of Oslo
</a
> that Dell have
58 made this even easier, by providing a SOAP based web service. Given
59 the service tag, one can now query the Dell servers and get machine
60 readable information about the support status. This perl code
61 demonstrate how to do it:
</p
>
68 my $GUID =
'11111111-
1111-
1111-
1111-
111111111111';
69 my $App =
'test
';
70 my $servicetag = $ARGV[
0] or die
"Please supply a servicetag. $!\n
";
71 my ($deal, $latest, @dates);
73 -
> uri(
'http://support.dell.com/WebServices/
')
74 -
> on_action( sub { join
'', @_ } )
75 -
> proxy(
'http://xserv.dell.com/services/assetservice.asmx
')
77 my $a = $s-
>GetAssetInformation(
78 SOAP::Data-
>name(
'guid
')-
>value($GUID)-
>type(
''),
79 SOAP::Data-
>name(
'applicationName
')-
>value($App)-
>type(
''),
80 SOAP::Data-
>name(
'serviceTags
')-
>value($servicetag)-
>type(
''),
82 print Dumper($a -
> result) ;
83 </pre
></p
>
85 <p
>The output can look like this:
</p
>
89 'Asset
' =
> {
90 'Entitlements
' =
> {
91 'EntitlementData
' =
> [
93 'EntitlementType
' =
> 'Expired
',
94 'EndDate
' =
> '2009-
07-
29T00:
00:
00',
95 'Provider
' =
> '',
96 'StartDate
' =
> '2006-
07-
29T00:
00:
00',
97 'DaysLeft
' =
> '0'
100 'EntitlementType
' =
> 'Expired
',
101 'EndDate
' =
> '2009-
07-
29T00:
00:
00',
102 'Provider
' =
> '',
103 'StartDate
' =
> '2006-
07-
29T00:
00:
00',
104 'DaysLeft
' =
> '0'
107 'EntitlementType
' =
> 'Expired
',
108 'EndDate
' =
> '2007-
07-
29T00:
00:
00',
109 'Provider
' =
> '',
110 'StartDate
' =
> '2006-
07-
29T00:
00:
00',
111 'DaysLeft
' =
> '0'
115 'AssetHeaderData
' =
> {
116 'SystemModel
' =
> 'GX620
',
117 'ServiceTag
' =
> '8DSGD2J
',
118 'SystemShipDate
' =
> '2006-
07-
29T19:
00:
00-
05:
00',
119 'Buid
' =
> '2323',
120 'Region
' =
> 'Europe
',
121 'SystemID
' =
> 'PLX_GX620
',
122 'SystemType
' =
> 'OptiPlex
'
126 </pre
></p
>
128 <p
>I have not been able to find any documentation from Dell about this
130 <a href=
"http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation
">inline
131 documentation
</a
>, and according to
132 <a href=
"http://iboyd.net/index.php/
2012/
02/
14/updated-dell-warranty-information-script/
">one
133 comment
</a
> it can have stability issues, but it is a lot better than
134 scraping HTML pages. :)
</p
>
136 <p
>Wonder if HP and other server vendors have a similar service. If
137 you know of one, drop me an email. :)
</p
>
142 <title>Debian Edu interview: Mike Gabriel
</title>
143 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html
</link>
144 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html
</guid>
145 <pubDate>Sat,
2 Jun
2012 14:
30:
00 +
0200</pubDate>
146 <description><p
>Back in
2010, Mike Gabriel showed up on the
147 <a href=
"http://www.skolelinux.org/
">Debian Edu and Skolelinux
</a
>
148 mailing list. He quickly proved to be a valuable developer, and
149 thanks to his tireless effort we now have Kerberos integrated into the
150 <a href=
"http://www.debian.org/News/
2012/
20120311.html
">Debian Edu
151 Squeeze
</a
> version.
</p
>
153 <p
><strong
>Who are you, and how do you spend your days?
</strong
></p
>
155 <p
>My name is Mike Gabriel, I am
38 years old and live near Kiel,
156 Schleswig-Holstein, Germany. I live together with a wonderful partner
157 (Angela Fuß) and two own children and two bonus children (contributed
158 by Angela).
</p
>
160 <p
>During the day I am part-time employed as a system administrator
161 and part-time working as an IT consultant. The consultancy work
162 touches free software topics wherever and whenever possible. During
163 the nights I am a free software developer. In the gaps I also train in
164 becoming an osteopath.
</p
>
166 <p
>Starting in
2010 we (Andreas Buchholz, Angela Fuß, Mike Gabriel)
167 have set up a free software project in the area of Kiel that aims at
168 introducing free software into schools. The project
's name is
169 "IT-Zukunft Schule
" (IT future for schools). The project links IT
170 skills with communication skills.
</p
>
172 <p
><strong
>How did you get in contact with the Skolelinux/Debian Edu
173 project?
</strong
></p
>
175 <p
>While preparing our own customised Linux distribution for
176 "IT-Zukunft Schule
" we were repeatedly asked if we really wanted to
177 reinvent the wheel. What schools really need is already available,
178 people said. From this impulse we started evaluating other Linux
179 distributions that target being used for school networks.
</p
>
181 <p
>At the end we short-listed two approaches and compared them: a
182 commercial Linux distribution developed by a company in Bremen,
183 Germany, and Skolelinux / Debian Edu. Between
12/
2010 and
03/
2011 we
184 went to several events and met people being responsible for marketing
185 and development of either of the distributions. Skolelinux / Debian
186 Edu was by far much more convincing compared to the other product that
187 got short-listed beforehand--across the full spectrum. What was most
188 attractive for me personally: the perspective of collaboration within
189 the developmental branch of the Debian Edu project itself.
</p
>
191 <p
>In parallel with this, we talked to many local and not-so-local
192 people. People teaching at schools, headmasters, politicians, data
193 protection experts, other IT professionals.
</p
>
195 <p
>We came to two conclusions:
</p
>
197 <p
>First, a technical conclusion: What schools need is available in
198 bits and pieces here and there, and none of the solutions really fit
199 by
100%. Any school we have seen has a very individual IT setup
200 whereas most of each school
's requirements could mapped by a standard
201 IT solution. The requirement to this IT solution is flexibility and
202 customisability, so that individual adaptations here and there are
203 possible. In terms of re-distributing and rolling out such a
204 standardised IT system for schools (a system that is still to some
205 degree customisable) there is still a lot of work to do here
206 locally. Debian Edu / Skolelinux has been our choice as the starting
209 <p
>Second, a holistic conclusion: What schools need does not exist at
210 all (or we missed it so far). There are several technical solutions
211 for handling IT at schools that tend to make a good impression. What
212 has been missing completely here in Germany, though, is the enrolment
213 of people into using IT and teaching with IT.
"IT-Zukunft Schule
"
214 tries to provide an approach for this.
</p
>
216 <p
>Only some schools have some sort of a media concept which explains,
217 defines and gives guidance on how to use IT in class. Most schools in
218 Northern Germany do not have an IT service provider, the school
's IT
219 equipment is managed by one or (if the school is lucky) two (admin)
220 teachers, most of the workload these admin teachers get done in there
221 spare time.
</p
>
223 <p
>We were surprised that only a very few admin teachers were
224 networked with colleagues from other schools. Basically, every school
225 here around has its individual approach of providing IT equipment to
226 teachers and students and the exchange of ideas has been quasi
227 non-existent until
2010/
2011.
</p
>
229 <p
>Quite some (non-admin) teachers try to avoid using IT technology in
230 class as a learning medium completely. Several reasons for this
231 avoidance do exist.
</p
>
233 <p
>We discovered that no-one has ever taken a closer look at this
234 social part of IT management in schools, so far. On our quest journey
235 for a technical IT solution for schools, we discussed this issue with
236 several teachers, headmasters, politicians, other IT professionals and
237 they all confirmed: a holistic approach of considering IT management
238 at schools, an approach that includes the people in place, will be new
239 and probably a gain for all.
</p
>
241 <p
><strong
>What do you see as the advantages of Skolelinux/Debian
242 Edu?
</strong
></p
>
244 <p
>There is a list of advantages: international context, openness to
245 any kind of contributions, do-ocracy policy, the closeness to Debian,
246 the different installation scenarios possible (from stand-alone
247 workstation to complex multi-server sites), the transparency within
248 project communication, honest communication within the group of
249 developers, etc.
</p
>
251 <p
><strong
>What do you see as the disadvantages of Skolelinux/Debian
252 Edu?
</strong
></p
>
254 <p
>Every coin has two sides:
</p
>
256 <p
>Technically:
<a href=
"http://bugs.debian.org/
311188">BTS issue
257 #
311188</a
>, tricky upgradability of a Debian Edu main server, network
258 client installations on top of a plain vanilla Debian installation
259 should become possible sometime in the near future, one could think
260 about splitting the very complex package debian-edu-config into
261 several portions (to make it easier for new developers to
262 contribute).
</p
>
264 <p
>Another issue I see is that we (as Debian Edu developers) should
265 find out more about the network of people who do the marketing for
266 Debian Edu / Skolelinux. There is a very active group in Germany
267 promoting Skolelinux on the bigger Linux Days within Germany. Are
268 there other groups like that in other countries? How can we bring
269 these marketing people together (marketing group A with group B and
270 all of them with the group of Debian Edu developers)? During the last
271 meeting of the German Skolelinux group, I got the impression of people
272 there being rather disconnected from the development department of
273 Debian Edu / Skolelinux.
</p
>
275 <p
><strong
>Which free software do you use daily?
</strong
></p
>
277 <p
>For my daily business, I do not use commercial software at all.
</p
>
279 <p
>For normal stuff I use Iceweasel/Firefox, Libreoffice.org. For
280 serious text writing I prefer LaTeX. I use gimp, inkscape, scribus for
281 more artistic tasks. I run virtual machines in KVM and Virtualbox.
</p
>
283 <p
>I am one of the upstream developers of X2Go. In
2010 I started the
284 development of a Python based X2Go Client, called PyHoca-GUI.
285 PyHoca-GUI has brought forth a Python X2Go Client API that currently
286 is being integrated in Ubuntu
's software center.
</p
>
288 <p
>For communications I have my own Kolab server running using Horde
289 as web-based groupware client. For IRC I love to use irssi, for Jabber
290 I have several clients that I use, mostly pidgin, though. I am also
291 the Debian maintainer of Coccinella, a Jabber-based interactive
292 whiteboard.
</p
>
294 <p
>My favourite terminal emulator is KDE
's Yakuake.
</p
>
296 <p
><strong
>Which strategy do you believe is the right one to use to
297 get schools to use free software?
</strong
></p
>
299 <p
>Communicate, communicate, communicate. Enrol people, enrol people,
300 enrol people.
</p
>