]> pere.pagekite.me Git - homepage.git/blob - blog/index.rss
Generated.
[homepage.git] / blog / index.rss
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:atom="http://www.w3.org/2005/Atom">
3 <channel>
4 <title>Petter Reinholdtsen</title>
5 <description></description>
6 <link>http://people.skolelinux.org/pere/blog/</link>
7 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
8
9 <item>
10 <title>New home and release 1.0 for netgroup and innetgr (aka ng-utils)</title>
11 <link>http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</guid>
13 <pubDate>Sat, 22 Feb 2014 21:40:00 +0100</pubDate>
14 <description>&lt;p&gt;Many years ago, I wrote a GPL licensed version of the netgroup and
15 innetgr tools, because I needed them in
16 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;. I called the project
17 ng-utils, and it has served me well. I placed the project under the
18 &lt;a href=&quot;http://www.hungry.com/&quot;&gt;Hungry Programmer&lt;/a&gt; umbrella, and it was maintained in our CVS
19 repository. But many years ago, the CVS repository was dropped (lost,
20 not migrated to new hardware, not sure), and the project have lacked a
21 proper home since then.&lt;/p&gt;
22
23 &lt;p&gt;Last summer, I had a look at the package and made a new release
24 fixing a irritating crash bug, but was unable to store the changes in
25 a proper source control system. I applied for a project on
26 &lt;a href=&quot;https://alioth.debian.org/&quot;&gt;Alioth&lt;/a&gt;, but did not have time
27 to follow up on it. Until today. :)&lt;/p&gt;
28
29 &lt;p&gt;After many hours of cleaning and migration, the ng-utils project
30 now have a new home, and a git repository with the highlight of the
31 history of the project. I published all release tarballs and imported
32 them into the git repository. As the project is really stable and not
33 expected to gain new features any time soon, I decided to make a new
34 release and call it 1.0. Visit the new project home on
35 &lt;a href=&quot;https://alioth.debian.org/projects/ng-utils/&quot;&gt;https://alioth.debian.org/projects/ng-utils/&lt;/a&gt;
36 if you want to check it out. The new version is also uploaded into
37 Debian Unstable.&lt;/p&gt;
38 </description>
39 </item>
40
41 <item>
42 <title>Testing sysvinit from experimental in Debian Hurd</title>
43 <link>http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</link>
44 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</guid>
45 <pubDate>Mon, 3 Feb 2014 13:40:00 +0100</pubDate>
46 <description>&lt;p&gt;A few days ago I decided to try to help the Hurd people to get
47 their changes into sysvinit, to allow them to use the normal sysvinit
48 boot system instead of their old one. This follow up on the
49 &lt;a href=&quot;https://teythoon.cryptobitch.de//categories/gsoc.html&quot;&gt;great
50 Google Summer of Code work&lt;/a&gt; done last summer by Justus Winter to
51 get Debian on Hurd working more like Debian on Linux. To get started,
52 I downloaded a prebuilt hard disk image from
53 &lt;a href=&quot;http://ftp.debian-ports.org/debian-cd/hurd-i386/current/debian-hurd.img.tar.gz&quot;&gt;http://ftp.debian-ports.org/debian-cd/hurd-i386/current/debian-hurd.img.tar.gz&lt;/a&gt;,
54 and started it using virt-manager.&lt;/p&gt;
55
56 &lt;p&gt;The first think I had to do after logging in (root without any
57 password) was to get the network operational. I followed
58 &lt;a href=&quot;https://www.debian.org/ports/hurd/hurd-install&quot;&gt;the
59 instructions on the Debian GNU/Hurd ports page&lt;/a&gt; and ran these
60 commands as root to get the machine to accept a IP address from the
61 kvm internal DHCP server:&lt;/p&gt;
62
63 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
64 settrans -fgap /dev/netdde /hurd/netdde
65 kill $(ps -ef|awk &#39;/[p]finet/ { print $2}&#39;)
66 kill $(ps -ef|awk &#39;/[d]evnode/ { print $2}&#39;)
67 dhclient /dev/eth0
68 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
69
70 &lt;p&gt;After this, the machine had internet connectivity, and I could
71 upgrade it and install the sysvinit packages from experimental and
72 enable it as the default boot system in Hurd.&lt;/p&gt;
73
74 &lt;p&gt;But before I did that, I set a password on the root user, as ssh is
75 running on the machine it for ssh login to work a password need to be
76 set. Also, note that a bug somewhere in openssh on Hurd block
77 compression from working. Remember to turn that off on the client
78 side.&lt;/p&gt;
79
80 &lt;p&gt;Run these commands as root to upgrade and test the new sysvinit
81 stuff:&lt;/p&gt;
82
83 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
84 cat &gt; /etc/apt/sources.list.d/experimental.list &amp;lt;&amp;lt;EOF
85 deb http://http.debian.net/debian/ experimental main
86 EOF
87 apt-get update
88 apt-get dist-upgrade
89 apt-get install -t experimental initscripts sysv-rc sysvinit \
90 sysvinit-core sysvinit-utils
91 update-alternatives --config runsystem
92 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
93
94 &lt;p&gt;To reboot after switching boot system, you have to use
95 &lt;tt&gt;reboot-hurd&lt;/tt&gt; instead of just &lt;tt&gt;reboot&lt;/tt&gt;, as there is not
96 yet a sysvinit process able to receive the signals from the normal
97 &#39;reboot&#39; command. After switching to sysvinit as the boot system,
98 upgrading every package and rebooting, the network come up with DHCP
99 after boot as it should, and the settrans/pkill hack mentioned at the
100 start is no longer needed. But for some strange reason, there are no
101 longer any login prompt in the virtual console, so I logged in using
102 ssh instead.
103
104 &lt;p&gt;Note that there are some race conditions in Hurd making the boot
105 fail some times. No idea what the cause is, but hope the Hurd porters
106 figure it out. At least Justus said on IRC (#debian-hurd on
107 irc.debian.org) that they are aware of the problem. A way to reduce
108 the impact is to upgrade to the Hurd packages built by Justus by
109 adding this repository to the machine:&lt;/p&gt;
110
111 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
112 cat &gt; /etc/apt/sources.list.d/hurd-ci.list &amp;lt;&amp;lt;EOF
113 deb http://darnassus.sceen.net/~teythoon/hurd-ci/ sid main
114 EOF
115 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
116
117 &lt;p&gt;At the moment the prebuilt virtual machine get some packages from
118 http://ftp.debian-ports.org/debian, because some of the packages in
119 unstable do not yet include the required patches that are lingering in
120 BTS. This is the completely list of &quot;unofficial&quot; packages installed:&lt;/p&gt;
121
122 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
123 # aptitude search &#39;?narrow(?version(CURRENT),?origin(Debian Ports))&#39;
124 i emacs - GNU Emacs editor (metapackage)
125 i gdb - GNU Debugger
126 i hurd-recommended - Miscellaneous translators
127 i isc-dhcp-client - ISC DHCP client
128 i isc-dhcp-common - common files used by all the isc-dhcp* packages
129 i libc-bin - Embedded GNU C Library: Binaries
130 i libc-dev-bin - Embedded GNU C Library: Development binaries
131 i libc0.3 - Embedded GNU C Library: Shared libraries
132 i A libc0.3-dbg - Embedded GNU C Library: detached debugging symbols
133 i libc0.3-dev - Embedded GNU C Library: Development Libraries and Hea
134 i multiarch-support - Transitional package to ensure multiarch compatibilit
135 i A x11-common - X Window System (X.Org) infrastructure
136 i xorg - X.Org X Window System
137 i A xserver-xorg - X.Org X server
138 i A xserver-xorg-input-all - X.Org X server -- input driver metapackage
139 #
140 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
141
142 &lt;p&gt;All in all, testing hurd has been an interesting experience. :)
143 X.org did not work out of the box and I never took the time to follow
144 the porters instructions to fix it. This time I was interested in the
145 command line stuff.&lt;p&gt;
146 </description>
147 </item>
148
149 <item>
150 <title>A fist full of non-anonymous Bitcoins</title>
151 <link>http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</link>
152 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</guid>
153 <pubDate>Wed, 29 Jan 2014 14:10:00 +0100</pubDate>
154 <description>&lt;p&gt;Bitcoin is a incredible use of peer to peer communication and
155 encryption, allowing direct and immediate money transfer without any
156 central control. It is sometimes claimed to be ideal for illegal
157 activity, which I believe is quite a long way from the truth. At least
158 I would not conduct illegal money transfers using a system where the
159 details of every transaction are kept forever. This point is
160 investigated in
161 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;USENIX ;login:&lt;/a&gt;
162 from December 2013, in the article
163 &quot;&lt;a href=&quot;https://www.usenix.org/system/files/login/articles/03_meiklejohn-online.pdf&quot;&gt;A
164 Fistful of Bitcoins - Characterizing Payments Among Men with No
165 Names&lt;/a&gt;&quot; by Sarah Meiklejohn, Marjori Pomarole,Grant Jordan, Kirill
166 Levchenko, Damon McCoy, Geoffrey M. Voelker, and Stefan Savage. They
167 analyse the transaction log in the Bitcoin system, using it to find
168 addresses belong to individuals and organisations and follow the flow
169 of money from both Bitcoin theft and trades on Silk Road to where the
170 money end up. This is how they wrap up their article:&lt;/p&gt;
171
172 &lt;p&gt;&lt;blockquote&gt;
173 &lt;p&gt;&quot;To demonstrate the usefulness of this type of analysis, we turned
174 our attention to criminal activity. In the Bitcoin economy, criminal
175 activity can appear in a number of forms, such as dealing drugs on
176 Silk Road or simply stealing someone else’s bitcoins. We followed the
177 flow of bitcoins out of Silk Road (in particular, from one notorious
178 address) and from a number of highly publicized thefts to see whether
179 we could track the bitcoins to known services. Although some of the
180 thieves attempted to use sophisticated mixing techniques (or possibly
181 mix services) to obscure the flow of bitcoins, for the most part
182 tracking the bitcoins was quite straightforward, and we ultimately saw
183 large quantities of bitcoins flow to a variety of exchanges directly
184 from the point of theft (or the withdrawal from Silk Road).&lt;/p&gt;
185
186 &lt;p&gt;As acknowledged above, following stolen bitcoins to the point at
187 which they are deposited into an exchange does not in itself identify
188 the thief; however, it does enable further de-anonymization in the
189 case in which certain agencies can determine (through, for example,
190 subpoena power) the real-world owner of the account into which the
191 stolen bitcoins were deposited. Because such exchanges seem to serve
192 as chokepoints into and out of the Bitcoin economy (i.e., there are
193 few alternative ways to cash out), we conclude that using Bitcoin for
194 money laundering or other illicit purposes does not (at least at
195 present) seem to be particularly attractive.&quot;&lt;/p&gt;
196 &lt;/blockquote&gt;&lt;p&gt;
197
198 &lt;p&gt;These researches are not the first to analyse the Bitcoin
199 transaction log. The 2011 paper
200 &quot;&lt;a href=&quot;http://arxiv.org/abs/1107.4524&quot;&gt;An Analysis of Anonymity in
201 the Bitcoin System&lt;/A&gt;&quot; by Fergal Reid and Martin Harrigan is
202 summarized like this:&lt;/p&gt;
203
204 &lt;p&gt;&lt;blockquote&gt;
205 &quot;Anonymity in Bitcoin, a peer-to-peer electronic currency system, is a
206 complicated issue. Within the system, users are identified by
207 public-keys only. An attacker wishing to de-anonymize its users will
208 attempt to construct the one-to-many mapping between users and
209 public-keys and associate information external to the system with the
210 users. Bitcoin tries to prevent this attack by storing the mapping of
211 a user to his or her public-keys on that user&#39;s node only and by
212 allowing each user to generate as many public-keys as required. In
213 this chapter we consider the topological structure of two networks
214 derived from Bitcoin&#39;s public transaction history. We show that the
215 two networks have a non-trivial topological structure, provide
216 complementary views of the Bitcoin system and have implications for
217 anonymity. We combine these structures with external information and
218 techniques such as context discovery and flow analysis to investigate
219 an alleged theft of Bitcoins, which, at the time of the theft, had a
220 market value of approximately half a million U.S. dollars.&quot;
221 &lt;/blockquote&gt;&lt;/p&gt;
222
223 &lt;p&gt;I hope these references can help kill the urban myth that Bitcoin
224 is anonymous. It isn&#39;t really a good fit for illegal activites. Use
225 cash if you need to stay anonymous, at least until regular DNA
226 sampling of notes and coins become the norm. :)&lt;/p&gt;
227
228 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
229 activities, please send Bitcoin donations to my address
230 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
231 </description>
232 </item>
233
234 <item>
235 <title>New chrpath release 0.16</title>
236 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</link>
237 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</guid>
238 <pubDate>Tue, 14 Jan 2014 11:00:00 +0100</pubDate>
239 <description>&lt;p&gt;&lt;a href=&quot;http://www.coverity.com/&quot;&gt;Coverity&lt;/a&gt; is a nice tool to
240 find problems in C, C++ and Java code using static source code
241 analysis. It can detect a lot of different problems, and is very
242 useful to find memory and locking bugs in the error handling part of
243 the source. The company behind it provide
244 &lt;a href=&quot;https://scan.coverity.com/&quot;&gt;check of free software projects as
245 a community service&lt;/a&gt;, and many hundred free software projects are
246 already checked. A few days ago I decided to have a closer look at
247 the Coverity system, and discovered that the
248 &lt;a href=&quot;http://www.gnu.org/software/gnash/&quot;&gt;gnash&lt;/a&gt; and
249 &lt;a href=&quot;http://sourceforge.net/projects/ipmitool/&quot;&gt;ipmitool&lt;/a&gt;
250 projects I am involved with was already registered. But these are
251 fairly big, and I would also like to have a small and easy project to
252 check, and decided to &lt;a href=&quot;http://scan.coverity.com/projects/1179&quot;&gt;request
253 checking of the chrpath project&lt;/a&gt;. It was
254 added to the checker and discovered seven potential defects. Six of
255 these were real, mostly resource &quot;leak&quot; when the program detected an
256 error. Nothing serious, as the resources would be released a fraction
257 of a second later when the program exited because of the error, but it
258 is nice to do it right in case the source of the program some time in
259 the future end up in a library. Having fixed all defects and added
260 &lt;a href=&quot;https://lists.alioth.debian.org/mailman/listinfo/chrpath-devel&quot;&gt;a
261 mailing list for the chrpath developers&lt;/a&gt;, I decided it was time to
262 publish a new release. These are the release notes:&lt;/p&gt;
263
264 &lt;p&gt;New in 0.16 released 2014-01-14:&lt;/p&gt;
265
266 &lt;ul&gt;
267
268 &lt;li&gt;Fixed all minor bugs discovered by Coverity.&lt;/li&gt;
269 &lt;li&gt;Updated config.sub and config.guess from the GNU project.&lt;/li&gt;
270 &lt;li&gt;Mention new project mailing list in the documentation.&lt;/li&gt;
271
272 &lt;/ul&gt;
273
274 &lt;p&gt;You can
275 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
276 new version 0.16 from alioth&lt;/a&gt;. Please let us know via the Alioth
277 project if something is wrong with the new release. The test suite
278 did not discover any old errors, so if you find a new one, please also
279 include a test suite check.&lt;/p&gt;
280 </description>
281 </item>
282
283 <item>
284 <title>Debian Edu interview: Dominik George</title>
285 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</link>
286 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</guid>
287 <pubDate>Wed, 25 Dec 2013 13:40:00 +0100</pubDate>
288 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
289 project&lt;/a&gt; consist of both newcomers and old timers, and this time I
290 was able to get an interview with a newcomer in the project who showed
291 up on the IRC channel a few weeks ago to let us know about his
292 successful installation of Debian Edu Wheezy in his School. Say hello
293 to &lt;a href=&quot;https://www.ohloh.net/accounts/Natureshadow&quot;&gt;Dominik
294 George&lt;/a&gt;.&lt;/p&gt;
295
296 &lt;!-- http://www.dominik-george.de/images/foto.jpg --&gt;
297
298 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
299
300 &lt;p&gt;I am a 23 year-old student from Germany who has spent half of his
301 life with open source. In &quot;real life&quot;, I am, as already mentioned, a
302 student in the fields of Computer Science, Electrical Engineering,
303 Information Technologies and Anglistics. Due to my (only partially
304 voluntary) huge engagement in the open source world, these things are
305 a bit vacant right now however.&lt;/p&gt;
306
307 &lt;p&gt;I also have been working as a project teacher at a Gymasnium
308 (public school) for various years now. I took up that work some time
309 around 2005 when still attending that school myself and have continued
310 it until today. I also had been running the (kind of very advanced)
311 network of that school together with a team of very interested and
312 talented students in the age of 11 to 15 years, who took the chance to
313 learn a lot about open source and networking before I left the school
314 to help building another school&#39;s informational education concept from
315 scratch.&lt;/p&gt;
316
317 &lt;p&gt;That said, one might see me as a kind of &quot;glue&quot; between school kids
318 and the elderly of teachers as well as between the open source
319 ecosystem and the (even more complex) educational ecosystem.&lt;/p&gt;
320
321 &lt;p&gt;When I am not busy with open source or education, I like Geocaching
322 and cycling.&lt;/p&gt;
323
324 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
325 project?&lt;/strong&gt;&lt;/p&gt;
326
327 &lt;p&gt;I think that happened some time around 2009 when I first attended
328 &lt;a href=&quot;http://www.froscon.org&quot;&gt;FrOSCon&lt;/a&gt; and visited the project
329 booth. I think I wasn&#39;t too interested back then because I used to
330 have an attitude of disliking software that does too much stuff on its
331 own. Maybe I was too inexperienced to realise the upsides of an
332 &quot;out-of-the-box&quot; solution ;).&lt;/p&gt;
333
334 &lt;p&gt;The first time I actively talked to Skolelinux people was at
335 &lt;a href=&quot;http://www.openrheinruhr.de&quot;&gt;OpenRheinRuhr&lt;/a&gt; 2011 when the
336 BiscuIT project, a home-grewn software used by my school for various
337 really cool things from timetables and class contact lists to lunch
338 ordering, student ID card printing and project elections first got to
339 a stage where it could have been published. I asked the Skolelinux
340 guys running the booth if the project were interested in it and gave a
341 small demonstration, but there wasn&#39;t any real feedback and the guys
342 seemed rather uninterested.&lt;/p&gt;
343
344 &lt;p&gt;After I left the school where I developed the software, it got
345 mostly lost, but I am now reimplementing it for my new school. I have
346 reusability and compatibility in mind, and I hop there will be a new
347 basis for contributing it to the Skolelinux project ;)!&lt;/p&gt;
348
349 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
350 Edu?&lt;/strong&gt;&lt;/p&gt;
351
352 &lt;p&gt;The most important advantage seems to be that it &quot;just
353 works&quot;. After overcoming some minor (but still very annoying) glitches
354 in the installer, I got a fully functional, working school network,
355 without the month-long hassle I experienced when setting all that up
356 from scratch in earlier years. And above that, it rocked - I didn&#39;t
357 have any real hardware at hand, because the school was just founded
358 and has no money whatsoever, so I installed a combined server (main
359 server, terminal services and workstation) in a VM on my personal
360 notebook, bridging the LTSP network interface to the ethernet port,
361 and then PXE-booted the Windows notebooks that were lying around from
362 it. I could use 8 clients without any performance issues, by using a
363 tiny little VM on a tiny little notebook. I think that&#39;s enough to say
364 that it rocks!&lt;/p&gt;
365
366 &lt;p&gt;Secondly, there are marketing reasons. Life&#39;s bad, and so no
367 politician will ever permit a setup described as &quot;Debian, an universal
368 operating system, with some really cool educational tools&quot; while they
369 will be jsut fine with &quot;Skolelinux, a single-purpose solution for your
370 school network&quot;, even if both turn out to be the very same thing (yes,
371 this is unfair towards the Skolelinux project, and must not be taken
372 too seriously - you get the idea, anyway).&lt;/p&gt;
373
374 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
375 Edu?&lt;/strong&gt;&lt;/p&gt;
376
377 &lt;p&gt;I have not been involved with Skolelinux long enough to really
378 answer this question in a fair way. Thus, please allow me to put it in
379 other words: &quot;What do you expect from Skolelinux to keep liking it?&quot; I
380 can list a few points about that:&lt;/p&gt;
381
382 &lt;ul&gt;
383
384 &lt;li&gt;always strive to get all things integrated into Debian upstream
385 &lt;li&gt;be open to discussion about changes and the like, even with newcomers
386 &lt;li&gt;be helpful at being helpful ;)
387
388 &lt;/ul&gt;
389
390 &lt;p&gt;I&#39;m really sorry I cannot say much more about that :(!&lt;/p&gt;
391
392 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
393
394 &lt;p&gt;First of all, all software I use is free and open. I have abandoned
395 all non-free software (except for firmware on my darned phone) this
396 year.&lt;/p&gt;
397
398 &lt;p&gt;I run Debian GNU/Linux on all PC systems I use. On that, I mostly
399 run text tools. I use
400 &lt;a href=&quot;https://www.mirbsd.org/mksh.htm&quot;&gt;mksh&lt;/a&gt; as shell,
401 &lt;a href=&quot;https://www.mirbsd.org/jupp.htm&quot;&gt;jupp&lt;/a&gt; as very advanced
402 text editor (I even got the developer to help me write a script/macro
403 based full-featured student management software with the two),
404 &lt;a href=&quot;http://mcabber.com/&quot;&gt;mcabber&lt;/a&gt; for XMPP and
405 &lt;a href=&quot;http://www.irssi.org/&quot;&gt;irssi&lt;/a&gt; for IRC. For that overly
406 coloured world called the WWW, I use
407 &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Iceweasel
408 (Firefox)&lt;/a&gt;. Oh, and &lt;a href=&quot;http://www.mutt.org/&quot;&gt;mutt&lt;/a&gt; for
409 e-mail.&lt;/p&gt;
410
411 &lt;p&gt;However, while I am personally aware of the fact that text tools
412 are more efficient and powerful than anything else, I also use (or at
413 least operate) some tools that are suitable to bring open source to
414 kids. One of these things is &lt;a href=&quot;http://jappix.org/&quot;&gt;Jappix&lt;/a&gt;,
415 which I already introduced to some kids even before they got aware of
416 Facebook, making them see for themselves that they do not need
417 Facebook now ;).&lt;/p&gt;
418
419 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
420 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
421
422 &lt;p&gt;Well, that&#39;s a two-sided thing. One side is what I believe, and one
423 side is what I have experienced.&lt;/p&gt;
424
425 &lt;p&gt;I believe that the right strategy is showing them the benefits. But
426 that won&#39;t work out as long as the acceptance of free alternatives
427 grows globally. What I mean is that if all the kids are almost forced
428 to use Windows, Facebook, Skype, you name it at home, they will not
429 see why they would want to use alternatives at school. I have seen
430 students take seat in front of a fully-functional, modern Debian
431 desktop that could do anything their Windows at home could do, and
432 they jsut refused to use it because &quot;Linux sucks&quot;. It is something
433 that makes the council of our city spend around 600000 € to buy
434 software - not including hardware, mind you - for operating school
435 networks, and for installing a system that, as has been proved, does
436 not work. For those of you readers who are good at maths, have you
437 already found out how many lives could have been saved with that money
438 if we had instead used it to bring education to parts of the world
439 that need it? I have, and found it to be nothing less dramatic than
440 plain criminal.&lt;/p&gt;
441
442 &lt;p&gt;That said, the only feasible way appears to be the bottom up
443 method. We have to bring free software to kids and parents. I have
444 founded an association named
445 &lt;a href=&quot;https://www.teckids.org&quot;&gt;Teckids&lt;/a&gt; here in Germany that does
446 just that. We organise several events for kids and adolescents in the
447 area of free and open source software, for example the
448 &lt;a href=&quot;http://kids.froscon.org&quot;&gt;FrogLabs&lt;/a&gt;, which share staff with
449 Teckids and are the youth programme of
450 &lt;a href=&quot;http://www.froscon.org&quot;&gt;the Free and Open Source Software
451 Conference (FrOSCon)&lt;/a&gt;. We do a lot more than most other conferences
452 - this year, we first offered the FrogLabs as a holiday camp for kids
453 aged 10 to 16. It was a huge success, with approx. 30 kids taking part
454 and learning with and about free software through a whole weekend. All
455 of us had a lot of fun, and the results were really exciting.&lt;/p&gt;
456
457 &lt;p&gt;Apart from that, we are preparing a campaign that is supposed to bring
458 the message of free alternatives to stuff kids use every day to them and
459 their parents, e.g. the use of Jabber / Jappix instead of Facebook and
460 Skype. To make that possible, we are planning to get together a team of
461 clever kids who understand very well what their peers need and can bring
462 it across to them. So we will have a peer-driven network of adolescents
463 who teach each other and collect feedback from the community of minors.
464 We then take that feedback and our own experience to work closely with
465 open source projects, such as Skolelinux or Jappix, at improving their
466 software in a way that makes it more and more attractive for the target
467 group. At least I hope that we will have good cooperation with
468 Skolelinux in the future ;)!&lt;/p&gt;
469
470 &lt;p&gt;So in conclusion, what I believe is that, if it weren&#39;t for the world
471 being so bad, it should be very clear to the political decision makers
472 that the only way to go nowadays is free software for various reasons,
473 but I have learnt that the only way that seems to work is bottom up.&lt;/p&gt;
474
475 &lt;!--
476
477 &gt; * Who should be interviewed with this questions in the future?
478
479 That&#39;s probably the hardest question of them all, as I do not know the
480 community. However, I would be willing to do the following:
481
482 &lt;li&gt;Run an interview with a German headteacher who is very open to
483 free software, and also prefers it, but cannot really use it because
484 of the decision makers above;
485 &lt;li&gt;Run interviews with some kids, both with and without previous
486 knowledge about free software
487
488 If that is wanted, just let me know ;).
489
490 --&gt;
491 </description>
492 </item>
493
494 <item>
495 <title>Dugnadsnett for alle stiller på Oslo Maker Faire i januar 2014</title>
496 <link>http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle_stiller_p__Oslo_Maker_Faire_i_januar_2014.html</link>
497 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle_stiller_p__Oslo_Maker_Faire_i_januar_2014.html</guid>
498 <pubDate>Tue, 10 Dec 2013 19:20:00 +0100</pubDate>
499 <description>&lt;p&gt;Helga 18. og 19. januar 2014 arrangeres
500 &lt;a href=&quot;http://makerfaireoslo.no/no/program/dugnadsnett&quot;&gt;Oslo Maker
501 Faire&lt;/a&gt;, og &lt;a href=&quot;http://www.dugnadsnett.no/&quot;&gt;Dugnadsnett for
502 alle&lt;/a&gt; har fått plass! Planen er å ha et bord med en plakat der vi
503 forteller om hva Dugnadsnett for alle er for noe, og et lite verksted
504 der vi hjelper folk som er interessert i å få opp sin egen mesh-node.
505 Jeg gleder meg til å se hvordan prosjektet blir mottatt der.&lt;/p&gt;
506
507 &lt;p&gt;Målet med dugnadsnett for alle i Oslo er å få på plass et datanett
508 for kommunikasjon ved hjelp av radio-repeaterstasjoner (kalt
509 mesh-noder) som gjør at en kan direkte kommunisere med slekt, venner
510 og bekjente i Oslo via andre som deltar i dugnadsnettet, samt gjøre
511 det mulig komme ut på internett via dugnadsnettet. Første delmål er å
512 kunne sende SMS-meldinger vha. IP-telefoni løsningen
513 &lt;a href=&quot;http://www.servalproject.org/&quot;&gt;Serval project&lt;/a&gt; mellom
514 deltagerne i Dugnadsnett for alle i Oslo. Formålet er å ta tilbake
515 kontrollen over egen nett-infrastruktur og gjøre det dyrere å bedrive
516 massiv innsamling av informasjon om borgernes bruk av datanett.&lt;/p&gt;
517
518 &lt;p&gt;Høres dette interessant ut? Bli med på prosjektet, fortell oss
519 hvor du kunne tenke deg å sette opp en radio-repeater (slik at folk i
520 nærheten kan finne hverandre ved hjelp av
521 &lt;a href=&quot;http://flynor.net/mesh/mesh.php&quot;&gt;kartet over planlagte og
522 eksisterende radio-repeatere&lt;/A&gt;), bli med på epostlisten
523 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/dugnadsnett&quot;&gt;dugnadsnett
524 (at) nuug.no&lt;/a&gt; og stikk innom
525 &lt;a href=&quot;irc://irc.freenode.net/#dugnadsnett.no&quot;&gt;IRC-kanalen
526 #dugnadsnett.no&lt;/a&gt;. Så langt er det planlagt over 40
527 radio-repeatere, med VPN-forbindelser via Internet for å la de delene
528 av nettet som ikke når hverandre via radio kunne snakke med hverandre
529 likevel.&lt;/p&gt;
530 </description>
531 </item>
532
533 <item>
534 <title>Debian Edu interview: Klaus Knopper</title>
535 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</link>
536 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</guid>
537 <pubDate>Fri, 6 Dec 2013 09:50:00 +0100</pubDate>
538 <description>&lt;p&gt;It has been a while since I managed to publish the last interview,
539 but the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
540 Skolelinux&lt;/a&gt; community is still going strong, and yesterday we even
541 had a new school administrator show up on
542 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt; to share
543 his success story with installing Debian Edu at their school. This
544 time I have been able to get some helpful comments from the creator of
545 Knoppix, Klaus Knopper, who was involved in a Skolelinux project in
546 Germany a few years ago.&lt;/p&gt;
547
548 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
549
550 &lt;p&gt;I am Klaus Knopper. I have a master degree in electrical
551 engineering, and is currently professor in information management at
552 the university of applied sciences Kaiserslautern / Germany and
553 freelance Open Source software developer and consultant.&lt;/p&gt;
554
555 &lt;p&gt;All of this is pretty much of the work I spend my days with. Apart
556 from teaching, I&#39;m also conducting some more or less experimental
557 projects like the &lt;a href=&quot;http://www.knoppix.org&quot;&gt;Knoppix GNU/Linux live
558 system&lt;/a&gt; (Debian-based like Skolelinux),
559 &lt;a href=&quot;http://www.knopper.net/knoppix-adriane/index-en.html&quot;&gt;ADRIANE&lt;/a&gt;
560 (a blind-friendly talking desktop system) and
561 &lt;a href=&quot;http://www.knopper.net/linbo/index-en.html&quot;&gt;LINBO&lt;/a&gt;
562 (Linux-based network boot console, a fast remote install and repair
563 system supporting various operating systems).&lt;/p&gt;
564
565 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
566 project?&lt;/strong&gt;&lt;/p&gt;
567
568 &lt;p&gt;The credit for this have to go to Kurt Gramlich, who is the German
569 coordinator for Skolelinux. We were looking for an all-in-one open
570 source community-supported distribution for schools, and Kurt
571 introduced us to Skolelinux for this purpose.&lt;/p&gt;
572
573 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
574 Edu?&lt;/strong&gt;&lt;/p&gt;
575
576 &lt;ul&gt;
577 &lt;li&gt;Quick installation,&lt;/li&gt;
578 &lt;li&gt;works (almost) out of the box,&lt;/li&gt;
579 &lt;li&gt;contains many useful software packages for teaching and learning,&lt;/li&gt;
580 &lt;li&gt;is a purely community-based distro and not controlled by a
581 single company,&lt;/li&gt;
582 &lt;li&gt;has a large number of supporters and teachers who share their
583 experience and problem solutions.&lt;/li&gt;
584 &lt;/ul&gt;
585
586 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
587 Edu?&lt;/strong&gt;&lt;/p&gt;
588
589 &lt;ul&gt;
590 &lt;li&gt;Skolelinux is - as we had to learn - not easily upgradable to
591 the next version. Opposed to its genuine Debian base, upgrading to
592 a new version means a full new installation from scratch to get it
593 working again reliably.
594
595 &lt;li&gt;Skolelinux is based on Debian/stable, and therefore always a
596 little outdated in terms of program versions compared to Edubuntu or
597 similar educational Linux distros, which rather use Debian/testing
598 as their base.
599
600 &lt;li&gt;Skolelinux has some very self-opinionated and stubborn default
601 configuration which in my opinion adds unnecessary complexity and is
602 not always suitable for a schools needs, the preset network
603 configuration is actually a core definition feature of Skolelinux
604 and not easy to change, so schools sometimes have to change their
605 network configuration to make it &quot;Skolelinux-compatible&quot;.
606
607 &lt;li&gt;Some proposed extensions, which were made available as
608 contribution, like secure examination mode and lecture material
609 distribution and collection, were not accepted into the mainline
610 Skolelinux development and are now not easy to maintain in the
611 future because of Skolelinux somewhat undeterministic update
612 schemes.&lt;/li&gt;
613
614 &lt;li&gt;Skolelinux has only a very tiny number of base developers
615 compared to Debian.&lt;/li&gt;
616
617 &lt;/ul&gt;
618
619 &lt;p&gt;For these reasons and experience from our project, I would now
620 rather consider using plain Debian for schools next time, until
621 Skolelinux is more closely integrated into Debian and becomes
622 upgradeable without reinstallation.&lt;/p&gt;
623
624 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
625
626 &lt;p&gt;GNU/Linux with LXDE desktop, bash for interactive dialog and
627 programming, texlive for documentation and correspondence,
628 occasionally LibreOffice for document format conversion. Various
629 programming languages for teaching.&lt;/p&gt;
630
631 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
632 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
633
634 &lt;p&gt;Strong arguments are&lt;/p&gt;
635
636 &lt;ul&gt;
637
638 &lt;li&gt;Knowledge is free, and so should be methods and tools for
639 teaching and learning.&lt;/li&gt;
640
641 &lt;li&gt;Students can learn with and use the same software at school, at
642 home, and at their working place without running into license or
643 conversion problems.&lt;/li&gt;
644
645 &lt;li&gt;Closed source or proprietary software hides knowledge rather
646 than exposing it, and proprietary software vendors try to bind
647 customers to certain products. But teachers need to teach
648 science, not products.&lt;/li&gt;
649
650 &lt;li&gt;If you have everything you for daily work as open source, what
651 would you need proprietary software for?&lt;/li&gt;
652
653 &lt;/ul&gt;
654 </description>
655 </item>
656
657 <item>
658 <title>Dugnadsnett for alle, a wireless community network in Oslo, take shape</title>
659 <link>http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</link>
660 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</guid>
661 <pubDate>Sat, 30 Nov 2013 10:10:00 +0100</pubDate>
662 <description>&lt;p&gt;If you want the ability to electronically communicate directly with
663 your neighbors and friends using a network controlled by your peers in
664 stead of centrally controlled by a few corporations, or would like to
665 experiment with interesting network technology, the
666 &lt;a href=&quot;http://www.dugnadsnett.no/&quot;&gt;Dugnasnett for alle i Oslo&lt;/a&gt;
667 might be project for you. 39 mesh nodes are currently being planned,
668 in the freshly started initiative from NUUG and Hackeriet to create a
669 wireless community network. The work is inspired by
670 &lt;a href=&quot;http://freifunk.net/&quot;&gt;Freifunk&lt;/a&gt;,
671 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan
672 Network&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Roofnet&quot;&gt;Roofnet&lt;/a&gt;
673 and other successful mesh networks around the globe. Two days ago we
674 held a workshop to try to get people started on setting up their own
675 mesh node, and there we decided to create a new mailing list
676 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/dugnadsnett&quot;&gt;dugnadsnett
677 (at) nuug.no&lt;/a&gt; and IRC channel
678 &lt;a href=&quot;irc://irc.freenode.net/#dugnadsnett.no&quot;&gt;#dugnadsnett.no&lt;/a&gt; to
679 coordinate the work. See also the NUUG blog post
680 &lt;a href=&quot;http://www.nuug.no/news/E_postliste_og_IRC_kanal_for_Dugnadsnett_for_alle_i_Oslo.shtml&quot;&gt;announcing
681 the mailing list and IRC channel&lt;/a&gt;.&lt;/p&gt;
682 </description>
683 </item>
684
685 <item>
686 <title>Hvor godt fungerer Linux-klienter mot MS Exchange?</title>
687 <link>http://people.skolelinux.org/pere/blog/Hvor_godt_fungerer_Linux_klienter_mot_MS_Exchange_.html</link>
688 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hvor_godt_fungerer_Linux_klienter_mot_MS_Exchange_.html</guid>
689 <pubDate>Tue, 26 Nov 2013 18:50:00 +0100</pubDate>
690 <description>&lt;p&gt;Jeg
691 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/_pent_m_te_p__onsdag_om_bruken_av_Microsoft_Exchange_ved_Universitetet_i_Oslo.html&quot;&gt;skrev
692 i juni om protestene&lt;/a&gt; på planene til min arbeidsplass,
693 &lt;a href=&quot;http://www.uio.no/&quot;&gt;Universitetet i Oslo&lt;/a&gt;, om å gå bort fra
694 fri programvare- og åpne standardløsninger for å håndtere epost,
695 vekk fra IETF-standarden SIEVE for filtrering av epost og over til
696 godseide spesifikasjoner og epostsystemet Microsoft Exchange.
697 Protestene har fått litt ny omtale i media de siste dagene, i tillegg
698 til de oppslagene som kom i mai.&lt;/p&gt;
699
700 &lt;ul&gt;
701
702 &lt;li&gt;2013-11-26 &lt;a href=&quot;http://www.version2.dk/artikel/gigantisk-outlook-konvertering-moeder-protester-paa-universitet-55147&quot;&gt;Gigantisk Outlook-konvertering møder protester på universitet&lt;/a&gt; - versjon2.dk&lt;/li&gt;
703
704 &lt;li&gt;2013-11-25
705 &lt;a href=&quot;http://www.idg.no/computerworld/article279407.ece&quot;&gt;Microsoft-protest
706 på Universitetet&lt;/a&gt; - Computerworld&lt;/li&gt;
707
708 &lt;li&gt;2013-11-25
709 &lt;a href=&quot;http://www.uniforum.uio.no/nyheter/2013/11/uio-bor-bruke-apen-programvare.html&quot;&gt;Kjemper
710 mot innføring av Microsoft Exchange på UiO&lt;/a&gt; - Uniforum&lt;/li&gt;
711
712 &lt;li&gt;2013-11-25
713 &lt;a href=&quot;http://www.uniforum.uio.no/nyheter/2013/11/uio-utsetter-innforing-av-nytt-e-postsystem.html&quot;&gt;Utsetter
714 innføring av nytt e-postsystem&lt;/a&gt; - Uniforum&lt;/li&gt;
715
716 &lt;li&gt;2013-05-29
717 &lt;a href=&quot;http://universitas.no/nyhet/58462/forsvarer-nytt-it-system&quot;&gt;Forsvarer
718 nytt IT-system&lt;/a&gt; - Universitas&lt;/li&gt;
719
720 &lt;li&gt;2013-05-23
721 &lt;a href=&quot;http://www.uniforum.uio.no/nyheter/2013/05/uio-innforer-nytt-epost-og-kalendersystem.html&quot;&gt;UiO
722 innfører nytt epost- og kalenderverktøy&lt;/a&gt; - Uniforum&lt;/li&gt;
723
724 &lt;li&gt;2013-05-22
725 &lt;a href=&quot;http://universitas.no/nyhet/58424/protestgruppe-vil-stanse-it-system&quot;&gt;Protestgruppe
726 vil stanse IT-system&lt;/a&gt; - Universitas&lt;/li&gt;
727
728 &lt;li&gt;2013-05-15
729 &lt;a href=&quot;http://www.uniforum.uio.no/leserbrev/2013/uio-ma-ha-kontroll-over-sitt-eget-epostsystem.html&quot;&gt;UiO
730 må ha kontroll over sitt eget epostsystem&lt;/a&gt; - Uniforum&lt;/li&gt;
731
732 &lt;/ul&gt;
733
734 &lt;p&gt;Prosjektledelsen har fortalt at dette skal fungere like godt for
735 Linux-brukere som for brukere av Microsoft Windows og Apple MacOSX,
736 men jeg lurer på hva slags erfaringer Linux-brukere i eksisterende
737 miljøer som bruker MS Exchange har gjort. Hvis du har slik erfaring
738 hadet det vært veldig fint om du kan send et leserbrev til
739 &lt;a href=&quot;http://www.uniforum.uio.no/&quot;&gt;Uniforum&lt;/a&gt; og fortelle om hvor
740 greit det er å bruke Exchange i kryss-platform-miljøer? De jeg har
741 snakket med sier en greit får lest e-posten sin hvis Exchange har
742 slått på IMAP-funksjonalitet, men at kalender og møtebooking ikke
743 fungerer godt for Linux-klienter. Jeg har ingen personlig erfaring å
744 komme med, så jeg er nysgjerrig på hva andre kan dele av erfaringer
745 med universitetet.&lt;/p&gt;
746
747 &lt;p&gt;Mitt ankerpunkt mot å bytte ut fri programvare som fungerer godt
748 med godseid programvare er at en mister kontroll over egen
749 infrastruktur, låser seg inn i en løsning det vil bli dyrt å komme ut
750 av, uten at en får funksjonalitet en ikke kunne skaffet seg med fri
751 programvare, eventuelt videreutviklet med de pengene som brukes på
752 overgangen til MS Exchange. Personlig planlegger jeg å fortsette å
753 laste ned all eposten min til lokal maskin for indeksering og lesing
754 med &lt;a href==&quot;http://notmuchmail.org&quot;&gt;notmuch&lt;/a&gt;, så jeg håper jeg
755 ikke blir veldig skadelidende av overgangen.&lt;/p&gt;
756
757 &lt;p&gt;&lt;a href=&quot;http://dinis.linguateca.pt/Diana/ImotMSUiO.html&quot;&gt;Underskriftslista
758 for oss som er mot endringen&lt;/a&gt;, som omtales i artiklene, er fortsatt
759 åpen for de som vil signere på oppropet. Akkurat nå er det 298
760 personer som har signert.&lt;/p&gt;
761 </description>
762 </item>
763
764 <item>
765 <title>New chrpath release 0.15</title>
766 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</link>
767 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</guid>
768 <pubDate>Sun, 24 Nov 2013 09:30:00 +0100</pubDate>
769 <description>&lt;p&gt;After many years break from the package and a vain hope that
770 development would be continued by someone else, I finally pulled my
771 acts together this morning and wrapped up a new release of chrpath,
772 the command line tool to modify the rpath and runpath of already
773 compiled ELF programs. The update was triggered by the persistence of
774 Isha Vishnoi at IBM, which needed a new config.guess file to get
775 support for the ppc64le architecture (powerpc 64-bit Little Endian) he
776 is working on. I checked the
777 &lt;a href=&quot;http://packages.qa.debian.org/chrpath&quot;&gt;Debian&lt;/a&gt;,
778 &lt;a href=&quot;https://launchpad.net/ubuntu/+source/chrpath&quot;&gt;Ubuntu&lt;/a&gt; and
779 &lt;a href=&quot;https://admin.fedoraproject.org/pkgdb/acls/name/chrpath&quot;&gt;Fedora&lt;/a&gt;
780 packages for interesting patches (failed to find the source from
781 OpenSUSE and Mandriva packages), and found quite a few nice fixes.
782 These are the release notes:&lt;/p&gt;
783
784 &lt;p&gt;New in 0.15 released 2013-11-24:&lt;/p&gt;
785
786 &lt;ul&gt;
787
788 &lt;li&gt;Updated config.sub and config.guess from the GNU project to work
789 with newer architectures. Thanks to isha vishnoi for the heads
790 up.&lt;/li&gt;
791
792 &lt;li&gt;Updated README with current URLs.&lt;/li&gt;
793
794 &lt;li&gt;Added byteswap fix found in Ubuntu, credited Jeremy Kerr and
795 Matthias Klose.&lt;/li&gt;
796
797 &lt;li&gt;Added missing help for -k|--keepgoing option, using patch by
798 Petr Machata found in Fedora.&lt;/li&gt;
799
800 &lt;li&gt;Rewrite removal of RPATH/RUNPATH to make sure the entry in
801 .dynamic is a NULL terminated string. Based on patch found in
802 Fedora credited Axel Thimm and Christian Krause.&lt;/li&gt;
803
804 &lt;/ul&gt;
805
806 &lt;p&gt;You can
807 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
808 new version 0.15 from alioth&lt;/a&gt;. Please let us know via the Alioth
809 project if something is wrong with the new release. The test suite
810 did not discover any old errors, so if you find a new one, please also
811 include a testsuite check.&lt;/p&gt;
812 </description>
813 </item>
814
815 </channel>
816 </rss>