]> pere.pagekite.me Git - homepage.git/blob - blog/index.rss
57c57503a2a77f6eb090ee0edaaf9df3886f85df
[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>How to fix a Thinkpad X230 with a broken 180 GB SSD disk</title>
11 <link>http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</guid>
13 <pubDate>Wed, 17 Jul 2013 23:50:00 +0200</pubDate>
14 <description>&lt;p&gt;Today I switched to
15 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;my
16 new laptop&lt;/a&gt;. I&#39;ve previously written about the problems I had with
17 my new Thinkpad X230, which was delivered with an
18 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html&quot;&gt;180
19 GB Intel SSD disk with Lenovo firmware&lt;/a&gt; that did not handle
20 sustained writes. My hardware supplier have been very forthcoming in
21 trying to find a solution, and after first trying with another
22 identical 180 GB disks they decided to send me a 256 GB Samsung SSD
23 disk instead to fix it once and for all. The Samsung disk survived
24 the installation of Debian with encrypted disks (filling the disk with
25 random data during installation killed the first two), and I thus
26 decided to trust it with my data. I have installed it as a Debian Edu
27 Wheezy roaming workstation hooked up with my Debian Edu Squeeze main
28 server at home using Kerberos and LDAP, and will use it as my work
29 station from now on.&lt;/p&gt;
30
31 &lt;p&gt;As this is a solid state disk with no moving parts, I believe the
32 Debian Wheezy default installation need to be tuned a bit to increase
33 performance and increase life time of the disk. The Linux kernel and
34 user space applications do not yet adjust automatically to such
35 environment. To make it easier for my self, I created a draft Debian
36 package &lt;tt&gt;ssd-setup&lt;/tt&gt; to handle this tuning. The
37 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/ssd-setup.git&quot;&gt;source
38 for the ssd-setup package&lt;/a&gt; is available from collab-maint, and it
39 is set up to adjust the setup of the machine by just installing the
40 package. If there is any non-SSD disk in the machine, the package
41 will refuse to install, as I did not try to write any logic to sort
42 file systems in SSD and non-SSD file systems.&lt;/p&gt;
43
44 &lt;p&gt;I consider the package a draft, as I am a bit unsure how to best
45 set up Debian Wheezy with an SSD. It is adjusted to my use case,
46 where I set up the machine with one large encrypted partition (in
47 addition to /boot), put LVM on top of this and set up partitions on
48 top of this again. See the README file in the package source for the
49 references I used to pick the settings. At the moment these
50 parameters are tuned:&lt;/p&gt;
51
52 &lt;ul&gt;
53
54 &lt;li&gt;Set up cryptsetup to pass TRIM commands to the physical disk
55 (adding discard to /etc/crypttab)&lt;/li&gt;
56
57 &lt;li&gt;Set up LVM to pass on TRIM commands to the underlying device (in
58 this case a cryptsetup partition) by changing issue_discards from
59 0 to 1 in /etc/lvm/lvm.conf.&lt;/li&gt;
60
61 &lt;li&gt;Set relatime as a file system option for ext3 and ext4 file
62 systems.&lt;/li&gt;
63
64 &lt;li&gt;Tell swap to use TRIM commands by adding &#39;discard&#39; to
65 /etc/fstab.&lt;/li&gt;
66
67 &lt;li&gt;Change I/O scheduler from cfq to deadline using a udev rule.&lt;/li&gt;
68
69 &lt;li&gt;Run fstrim on every ext3 and ext4 file system every night (from
70 cron.daily).&lt;/li&gt;
71
72 &lt;li&gt;Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure
73 to 50 to reduce the kernel eagerness to swap out processes.&lt;/li&gt;
74
75 &lt;/ul&gt;
76
77 &lt;p&gt;During installation, I cancelled the part where the installer fill
78 the disk with random data, as this would kill the SSD performance for
79 little gain. My goal with the encrypted file system is to ensure
80 those stealing my laptop end up with a brick and not a working
81 computer. I have no hope in keeping the really resourceful people
82 from getting the data on the disk (see
83 &lt;a href=&quot;http://xkcd.com/538/&quot;&gt;XKCD #538&lt;/a&gt; for an explanation why).
84 Thus I concluded that adding the discard option to crypttab is the
85 right thing to do.&lt;/p&gt;
86
87 &lt;p&gt;I considered using the noop I/O scheduler, as several recommended
88 it for SSD, but others recommended deadline and a benchmark I found
89 indicated that deadline might be better for interactive use.&lt;/p&gt;
90
91 &lt;p&gt;I also considered using the &#39;discard&#39; file system option for ext3
92 and ext4, but read that it would give a performance hit ever time a
93 file is removed, and thought it best to that that slowdown once a day
94 instead of during my work.&lt;/p&gt;
95
96 &lt;p&gt;My package do not set up tmpfs on /var/run, /var/lock and /tmp, as
97 this is already done by Debian Edu.&lt;/p&gt;
98
99 &lt;p&gt;I have not yet started on the user space tuning. I expect
100 iceweasel need some tuning, and perhaps other applications too, but
101 have not yet had time to investigate those parts.&lt;/p&gt;
102
103 &lt;p&gt;The package should work on Ubuntu too, but I have not yet tested it
104 there.&lt;/p&gt;
105
106 &lt;p&gt;As for the answer to the question in the title of this blog post,
107 as far as I know, the only solution I know about is to replace the
108 disk. It might be possible to flash it with Intel firmware instead of
109 the Lenovo firmware. But I have not tried and did not want to do so
110 without approval from Lenovo as I wanted to keep the warranty on the
111 disk until a solution was found and they wanted the broken disks
112 back.&lt;/p&gt;
113 </description>
114 </item>
115
116 <item>
117 <title>Intel SSD 520 Series 180 GB with Lenovo firmware still lock up from sustained writes</title>
118 <link>http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</link>
119 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</guid>
120 <pubDate>Wed, 10 Jul 2013 13:30:00 +0200</pubDate>
121 <description>&lt;p&gt;A few days ago, I wrote about
122 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;the
123 problems I experienced with my new X230 and its SSD disk&lt;/a&gt;, which
124 was dying during installation because it is unable to cope with
125 sustained write. My supplier is in contact with
126 &lt;a href=&quot;http://www.lenovo.com/&quot;&gt;Lenovo&lt;/a&gt;, and they wanted to send a
127 replacement disk to try to fix the problem. They decided to send an
128 identical model, so my hopes for a permanent fix was slim.&lt;/p&gt;
129
130 &lt;p&gt;Anyway, today I got the replacement disk and tried to install
131 Debian Edu Wheezy with encrypted disk on it. The new disk have the
132 same firmware version as the original. This time my hope raised
133 slightly as the installation progressed, as the original disk used to
134 die after 4-7% of the disk was written to, while this time it kept
135 going past 10%, 20%, 40% and even past 50%. But around 60%, the disk
136 died again and I was back on square one. I still do not have a new
137 laptop with a disk I can trust. I can not live with a disk that might
138 lock up when I download a new
139 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ISO or
140 other large files. I look forward to hearing from my supplier with
141 the next proposal from Lenovo.&lt;/p&gt;
142
143 &lt;p&gt;The original disk is marked Intel SSD 520 Series 180 GB,
144 11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW:
145 LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
146 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model:
147 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
148 P/N 45N8295, P0C38732.&lt;/p&gt;
149
150 &lt;p&gt;The replacement disk is marked Intel SSD 520 Series 180 GB,
151 11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW:
152 LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
153 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model:
154 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
155 P/N 45N8295, P0C38732.&lt;/p&gt;
156
157 &lt;p&gt;The only difference is in the first number (serial number?), ISN,
158 SA, date and WNPP values. Mentioning all the details here in case
159 someone is able to use the information to find a way to identify the
160 failing disk among working ones (if any such working disk actually
161 exist).&lt;/p&gt;
162 </description>
163 </item>
164
165 <item>
166 <title>July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</title>
167 <link>http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</link>
168 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</guid>
169 <pubDate>Tue, 9 Jul 2013 10:40:00 +0200</pubDate>
170 <description>&lt;p&gt;The upcoming Saturday, 2013-07-13, we are organising a combined
171 Debian Edu developer gathering and Debian and Ubuntu bug squashing
172 party in Oslo. It is organised by &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
173 member assosiation NUUG&lt;/a&gt; and
174 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;the Debian Edu / Skolelinux
175 project&lt;/a&gt; together with &lt;a href=&quot;http://bitraf.no/&quot;&gt;the hack space
176 Bitraf&lt;/a&gt;.&lt;/p&gt;
177
178 &lt;p&gt;It starts 10:00 and continue until late evening. Everyone is
179 welcome, and there is no fee to participate. There is on the other
180 hand limited space, and only room for 30 people. Please put your name
181 on &lt;a href=&quot;http://wiki.debian.org/BSP/2013/07/13/no/Oslo&quot;&gt;the event
182 wiki page&lt;/a&gt; if you plan to join us.&lt;/p&gt;
183 </description>
184 </item>
185
186 <item>
187 <title>The Thinkpad is dead, long live the Thinkpad X230?</title>
188 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</link>
189 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</guid>
190 <pubDate>Fri, 5 Jul 2013 08:30:00 +0200</pubDate>
191 <description>&lt;p&gt;Half a year ago, I reported that I had to find a
192 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html&quot;&gt;replacement
193 for my trusty old Thinkpad X41&lt;/a&gt;. Unfortunately I did not have much
194 time to spend on it, and it took a while to find a model I believe
195 will do the job, but two days ago the replacement finally arrived. I
196 ended up picking a
197 &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad X230&lt;/a&gt;
198 with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as
199 a roaming workstation, and it seemed to work flawlessly. But my
200 second installation with encrypted disk was not as successful. More
201 on that below.&lt;/p&gt;
202
203 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
204 important requirements (robust and with a good keyboard) are never
205 listed in the feature list. But I did get good help from the search
206 feature at &lt;a href=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
207 allowed me to limit the list of interesting laptops based on my other
208 requirements. A bit surprising that SSD disk are not disks according
209 to that search interface, so I had to drop specifying the number of
210 disks from my search parameters. I also asked around among friends to
211 get their impression on keyboards and robustness.&lt;/p&gt;
212
213 &lt;p&gt;So the new laptop arrived, and it is quite a lot wider than the
214 X41. I am not quite convinced about the keyboard, as it is
215 significantly wider than my old keyboard, and I have to stretch my
216 hand a lot more to reach the edges. But the key response is fairly
217 good and the individual key shape is fairly easy to handle, so I hope
218 I will get used to it. My old X40 was starting to fail, and I really
219 needed a new laptop now. :)&lt;/p&gt;
220
221 &lt;p&gt;Turning off the touch pad was simple. All it took was a quick
222 visit to the BIOS during boot it disable it.&lt;/p&gt;
223
224 &lt;p&gt;But there is a fatal problem with the laptop. The 180 GB SSD disk
225 lock up during load. And this happen when installing Debian Wheezy
226 with encrypted disk, while the disk is being filled with random data.
227 I also tested to install Ubuntu Raring, and it happen there too if I
228 reenable the code to fill the disk with random data (it is disabled by
229 default in Ubuntu). And the bug with is already known. It was
230 reported to Debian as &lt;a href=&quot;http://bugs.debian.org/691427&quot;&gt;BTS
231 report #691427 2012-10-25&lt;/a&gt; (journal commit I/O error on brand-new
232 Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux
233 kernel developers as
234 &lt;a href=&quot;https://bugzilla.kernel.org/show_bug.cgi?id=51861&quot;&gt;Kernel bugzilla
235 report #51861 2012-12-20&lt;/a&gt; (Intel SSD 520 stops working under load
236 (SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the
237 Lenovo forums, both for
238 &lt;a href=&quot;http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T430s-Intel-SSD-520-180GB-issue/m-p/1070549&quot;&gt;T430
239 2012-11-10&lt;/a&gt; and for
240 &lt;a href=&quot;http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/x230-SATA-errors-with-180GB-Intel-520-SSD-under-heavy-write-load/m-p/1068147&quot;&gt;X230
241 03-20-2013&lt;/a&gt;. The problem do not only affect installation. The
242 reports state that the disk lock up during use if many writes are done
243 on the disk, so it is much no use to work around the installation
244 problem and end up with a computer that can lock up at any moment.
245 There is even a
246 &lt;a href=&quot;https://git.efficios.com/?p=test-ssd.git&quot;&gt;small C program
247 available&lt;/a&gt; that will lock up the hard drive after running a few
248 minutes by writing to a file.&lt;/p&gt;
249
250 &lt;p&gt;I&#39;ve contacted my supplier and asked how to handle this, and after
251 contacting PCHELP Norway (request 01D1FDP) which handle support
252 requests for Lenovo, his first suggestion was to upgrade the disk
253 firmware. Unfortunately there is no newer firmware available from
254 Lenovo, as my disk already have the most recent one (version LF1i). I
255 hope to hear more from him today and hope the problem can be
256 fixed. :)&lt;/p&gt;
257 </description>
258 </item>
259
260 <item>
261 <title>The Thinkpad is dead, long live the Thinkpad X230</title>
262 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</link>
263 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</guid>
264 <pubDate>Thu, 4 Jul 2013 09:20:00 +0200</pubDate>
265 <description>&lt;p&gt;Half a year ago, I reported that I had to find a replacement for my
266 trusty old Thinkpad X41. Unfortunately I did not have much time to
267 spend on it, but today the replacement finally arrived. I ended up
268 picking a &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad
269 X230&lt;/a&gt; with SSD disk (NZDAJMN). I first test installed Debian Edu
270 Wheezy as a roaming workstation, and it worked flawlessly. As I write
271 this, it is installing what I hope will be a more final installation,
272 with a encrypted hard drive to ensure any dope head stealing it end up
273 with an expencive door stop.&lt;/p&gt;
274
275 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
276 important requirements (robust and with a good keyboard) are never
277 listed in the feature list. But I did get good help from the search
278 feature at &lt;ahref=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
279 allowed me to limit the list of interesting laptops based on my other
280 requirements. A bit surprising that SSD disk are not disks, so I had
281 to drop number of disks from my search parameters.&lt;/p&gt;
282
283 &lt;p&gt;I am not quite convinced about the keyboard, as it is significantly
284 wider than my old keyboard, and I have to stretch my hand a lot more
285 to reach the edges. But the key response is fairly good and the
286 individual key shape is fairly easy to handle, so I hope I will get
287 used to it. My old X40 was starting to fail, and I really needed a
288 new laptop now. :)&lt;/p&gt;
289
290 &lt;p&gt;I look forward to figuring out how to turn off the touch pad.&lt;/p&gt;
291 </description>
292 </item>
293
294 <item>
295 <title>Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</title>
296 <link>http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
297 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
298 <pubDate>Wed, 3 Jul 2013 14:00:00 +0200</pubDate>
299 <description>&lt;p&gt;The fourth wheezy based alpha release of Debian Edu was wrapped up
300 today. This is the release announcement:&lt;/p&gt;
301
302 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~alpha3 released
303 2013-07-03&lt;/strong&gt;&lt;/p&gt;
304
305 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
306 7.1+edu0~alpha3, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
307
308 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
309
310 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
311 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
312 out-of-the box environment of a completely configured school
313 network. Immediately after installation a school server running all
314 services needed for a school network is set up just waiting for users
315 and machines being added via GOsa², a comfortable Web-UI. A netbooting
316 environment is prepared using PXE, so after initial installation of
317 the main server from CD, DVD or USB stick all other machines can be
318 installed via the network. The provided school server provides LDAP
319 database and Kerberos authentication service, centralized home
320 directories, DHCP server, web proxy and many other services. The
321 desktop contains
322 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
323 than 60 educational software packages&lt;/a&gt; and more are available from
324 the Debian archive, and schools can choose between KDE, Gnome, LXDE
325 and Xfce desktop environment.&lt;/p&gt;
326
327 &lt;p&gt;This is the fourth test release based on Debian Wheezy. Basically
328 this is an updated and slightly improved version compared to the
329 Squeeze release.&lt;/p&gt;
330
331 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
332 &lt;ul&gt;
333 &lt;li&gt;Dropped ispell dictionaries from our default installation.&lt;/li&gt;
334 &lt;li&gt;Dropped menu-xdg from the KDE desktop option, to drop the Debian
335 submenu. It was not included with Gnome, LXDE or Xfce, so this
336 brings KDE in line with the others.&lt;/li&gt;
337 &lt;li&gt;Dropped xdrawchem, xjig and xsok from our default installation as
338 they don&#39;t have a desktop menu entry and thus won&#39;t show up in the
339 menu now that menu-xdg was removed.&lt;/li&gt;
340 &lt;li&gt;Removed the killer system to kill left behind processes on
341 multi-user machines, as it was no longer able to understand when a
342 X display was in use and killed the processes of the active users
343 too.&lt;/li&gt;
344 &lt;li&gt;Dropped the golearn (from goplay) package as the debtags in wheezy
345 are too few to make the package useful.&lt;/li&gt;
346 &lt;/ul&gt;
347 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
348 &lt;ul&gt;
349 &lt;li&gt;Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
350 &lt;li&gt;Multi-arch i386/amd64 USB stick ISO available.&lt;/li&gt;
351 &lt;li&gt;Got rid of ispell/wordlist related debconf questions that showed
352 up for some language options.&lt;/li&gt;
353 &lt;li&gt;Switched to using http.debian.net as APT source by default.&lt;/li&gt;
354 &lt;li&gt;Fixed proxy configuration on Main Server installations.&lt;/li&gt;
355 &lt;li&gt;Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
356 d-i is doing it.&lt;/li&gt;
357 &lt;li&gt;Made sure root and user passwords were not left behind in the
358 debconf database after installation on Main Server installations.&lt;/li&gt;
359 &lt;li&gt;Made Roaming Workstation dynamic setup more robust and added draft
360 script setup-ad-client to hook a Roaming Workstation up to a
361 Active Directory server instead of a Debian Edu Main Server.&lt;/li&gt;
362 &lt;li&gt;Update system to install needed firmware packages during
363 installation, to work properly in Wheezy.&lt;/li&gt;
364 &lt;li&gt;Update system to handle hardware quirks (debian-edu-hwsetup).&lt;/li&gt;
365 &lt;li&gt;Corrected PXE installation setup to properly pass selected desktop
366 and keymap settings to PXE installation clients.&lt;/li&gt;
367 &lt;li&gt;LTSP diskless workstations use sshfs by default, allowing them to
368 work without adding them to DNS and NIS netgroups for NFS access.&lt;/li&gt;
369 &lt;/ul&gt;
370 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
371 &lt;ul&gt;
372 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
373 available yet (698840).&lt;/li&gt;
374 &lt;li&gt;Artwork not enabled for all desktops.&lt;/li&gt;
375 &lt;/ul&gt;
376 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
377
378 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
379 &lt;ul&gt;
380 &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;
381 &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;
382 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .&lt;/li&gt;
383 &lt;/ul&gt;
384
385 &lt;p&gt;The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
386 &lt;br&gt;The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8&lt;/p&gt;
387
388 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
389 &lt;ul&gt;
390 &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;
391 &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;
392 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .&lt;/li&gt;
393 &lt;/ul&gt;
394
395 &lt;p&gt;The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
396 &lt;br&gt;The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721&lt;/p&gt;
397
398 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
399
400 &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;
401 </description>
402 </item>
403
404 <item>
405 <title>Automatically locate and install required firmware packages on Debian (Isenkram 0.4)</title>
406 <link>http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</link>
407 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</guid>
408 <pubDate>Tue, 25 Jun 2013 11:50:00 +0200</pubDate>
409 <description>&lt;p&gt;It annoys me when the computer fail to do automatically what it is
410 perfectly capable of, and I have to do it manually to get things
411 working. One such task is to find out what firmware packages are
412 needed to get the hardware on my computer working. Most often this
413 affect the wifi card, but some times it even affect the RAID
414 controller or the ethernet card. Today I pushed version 0.4 of the
415 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram package&lt;/a&gt;
416 including a new script isenkram-autoinstall-firmware handling the
417 process of asking all the loaded kernel modules what firmware files
418 they want, find debian packages providing these files and install the
419 debian packages. Here is a test run on my laptop:&lt;/p&gt;
420
421 &lt;p&gt;&lt;pre&gt;
422 # isenkram-autoinstall-firmware
423 info: kernel drivers requested extra firmware: ipw2200-bss.fw ipw2200-ibss.fw ipw2200-sniffer.fw
424 info: fetching http://http.debian.net/debian/dists/squeeze/Contents-i386.gz
425 info: locating packages with the requested firmware files
426 info: Updating APT sources after adding non-free APT source
427 info: trying to install firmware-ipw2x00
428 firmware-ipw2x00
429 firmware-ipw2x00
430 Preconfiguring packages ...
431 Selecting previously deselected package firmware-ipw2x00.
432 (Reading database ... 259727 files and directories currently installed.)
433 Unpacking firmware-ipw2x00 (from .../firmware-ipw2x00_0.28+squeeze1_all.deb) ...
434 Setting up firmware-ipw2x00 (0.28+squeeze1) ...
435 #
436 &lt;/pre&gt;&lt;/p&gt;
437
438 &lt;p&gt;When all the requested firmware is present, a simple message is
439 printed instead:&lt;/p&gt;
440
441 &lt;p&gt;&lt;pre&gt;
442 # isenkram-autoinstall-firmware
443 info: did not find any firmware files requested by loaded kernel modules. exiting
444 #
445 &lt;/pre&gt;&lt;/p&gt;
446
447 &lt;p&gt;It could use some polish, but it is already working well and saving
448 me some time when setting up new machines. :)&lt;/p&gt;
449
450 &lt;p&gt;So, how does it work? It look at the set of currently loaded
451 kernel modules, and look up each one of them using modinfo, to find
452 the firmware files listed in the module meta-information. Next, it
453 download the Contents file from a nearby APT mirror, and search for
454 the firmware files in this file to locate the package with the
455 requested firmware file. If the package is in the non-free section, a
456 non-free APT source is added and the package is installed using
457 &lt;tt&gt;apt-get install&lt;/tt&gt;. The end result is a slightly better working
458 machine.&lt;/p&gt;
459
460 &lt;p&gt;I hope someone find time to implement a more polished version of
461 this script as part of the hw-detect debian-installer module, to
462 finally fix &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;BTS report
463 #655507&lt;/a&gt;. There really is no need to insert USB sticks with
464 firmware during a PXE install when the packages already are available
465 from the nearby Debian mirror.&lt;/p&gt;
466 </description>
467 </item>
468
469 <item>
470 <title>The value of a good distro wide test suite...</title>
471 <link>http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</link>
472 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</guid>
473 <pubDate>Sat, 22 Jun 2013 07:00:00 +0200</pubDate>
474 <description>&lt;p&gt;In the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
475 Skolelinux&lt;/a&gt; project, we include a post-installation test suite,
476 which check that services are running, working, and return the
477 expected results. It runs automatically just after the first boot on
478 test installations (using test ISOs), but not on production
479 installations (using non-test ISOs). It test that the LDAP service is
480 operating, Kerberos is responding, DNS is replying, file systems are
481 online resizable, etc, etc. And it check that the PXE service is
482 configured, which is the topic of this post.&lt;/p&gt;
483
484 &lt;p&gt;The last week I&#39;ve fixed the DVD and USB stick ISOs for our Debian
485 Edu Wheezy release. These ISOs are supposed to be able to install a
486 complete system without any Internet connection, but for that to
487 happen all the needed packages need to be on them. Thanks to our test
488 suite, I discovered that we had forgotten to adjust our PXE setup to
489 cope with the new names and paths used by the netboot d-i packages.
490 When Internet connectivity was available, the installer fall back to
491 using wget to fetch d-i boot images, but when offline it require
492 working packages to get it working. And ad the packages changed name
493 from debian-installer-6.0-netboot-$arch to
494 debian-installer-7.0-netboot-$arch, we no longer pulled in the
495 packages during installation. Without our test suite, I suspect we
496 would never have discovered this before release. Now it is fixed
497 right after we got the ISOs operational.&lt;/p&gt;
498
499 &lt;p&gt;Another by-product of the test suite is that we can ask system
500 administrators with problems getting Debian Edu to work, to run the
501 test suite using &lt;tt&gt;/usr/sbin/debian-edu-test-install&lt;/tt&gt; and see if
502 any errors are detected. This usually pinpoint the subsystem causing
503 the problem.&lt;/p&gt;
504
505 &lt;p&gt;If you want to help us help kids learn how to share and create,
506 please join us on
507 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
508 irc.debian.org&lt;/a&gt; and the
509 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@&lt;/a&gt; mailing
510 list.&lt;/p&gt;
511 </description>
512 </item>
513
514 <item>
515 <title>Debian Edu interview: Victor Nițu</title>
516 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</link>
517 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</guid>
518 <pubDate>Mon, 17 Jun 2013 10:50:00 +0200</pubDate>
519 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
520 Skolelinux&lt;/a&gt; distribution have users and contributors all around the
521 globe. And a while back, an enterprising young man showed up on
522 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;our IRC channel
523 #debian-edu&lt;/a&gt; and started asking questions about how Debian Edu
524 worked. We answered as good as we could, and even convinced him to
525 help us with translations. And today I managed to get an interview
526 with him, to learn more about him.&lt;/p&gt;
527
528 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
529
530 &lt;p&gt;I&#39;m a 25 year old free software enthusiast, living in Romania,
531 which is also my country of origin. Back in 2009, at a New Year&#39;s Eve
532 party, I had a very nice &lt;strike&gt;beer&lt;/strike&gt; discussion with a
533 friend, when we realized we have no organised Debian community in our
534 country. A few days later, we put together the infrastructure for such
535 community and even gathered a nice Debian-ish crowd. Since then, I
536 began my quest as a free software hacker and activist and I am
537 constantly trying to cover as much ground as possible on that
538 field.&lt;/p&gt;
539
540 &lt;p&gt;A few years ago I founded a small web development company, which
541 provided me the flexible schedule I needed so much for my
542 activities. For the last 13 months, I have been the Technical Director
543 of &lt;a href=&quot;http://ceata.org/&quot;&gt;Fundația Ceata&lt;/a&gt;, which is a free
544 software activist organisation endorsed by the FSF and the FSFE, and
545 the only one we have in our country.&lt;/p&gt;
546
547 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
548 project?&lt;/strong&gt;&lt;/p&gt;
549
550 &lt;p&gt;The idea of participating in the Debian Edu project was a surprise
551 even to me, since I never used it before I began getting involved in
552 it. This year I had a great opportunity to deliver a talk on
553 educational software, and I knew immediately where to look. It was a
554 love at first sight, since I was previously involved with some of the
555 technologies the project incorporates, and I rapidly found a lot of
556 ways to contribute.&lt;/p&gt;
557
558 &lt;p&gt;My first contributions consisted in translating the installer and
559 configuration dialogs, then I found some bugs to squash (I still
560 haven&#39;t fixed them yet though), and I even got my eyes on some other
561 areas where I can prove myself helpful. Since the appetite for free
562 software in my country is pretty low, I&#39;ll be happy to be the first
563 one around here advocating for the project&#39;s adoption in educational
564 environments, and maybe even get my hands dirty in creating a flavour
565 for our own needs. I am not used to make very advanced plannings, so
566 from now on, time will tell what I&#39;ll be doing next, but I think I
567 have a pretty consistent starting point.&lt;/p&gt;
568
569 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
570 Edu?&lt;/strong&gt;&lt;/p&gt;
571
572 &lt;p&gt;Not a long time ago, I was in the position of configuring and
573 maintaining a LDAP server on some Debian derivative, and I must say it
574 took me a while. A long time ago, I was maintaining a bigger
575 Samba-powered infrastructure, and I must say I spent quite a lot of
576 time on it. I have similar stories about many of the services included
577 with Skolelinux, and the main advantage I see about it is the
578 out-of-the box availability of them, making it quite competitive when
579 it comes to managing a school&#39;s network, for example.&lt;/p&gt;
580
581 &lt;p&gt;Of course, there is more to say about Skolelinux than the
582 availability of the software included, its flexibility in various
583 scenarios is something I can&#39;t wait to experiment &quot;into the wild&quot; (I
584 only played with virtual machines so far). And I am sure there is a
585 lot more I haven&#39;t discovered yet about it, being so new within the
586 project.&lt;/p&gt;
587
588 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
589 Edu?&lt;/strong&gt;&lt;/p&gt;
590
591 &lt;p&gt;As usual, when it comes to Debian Blends, I see as the biggest
592 disadvantage the lack of a numerous team dedicated to the
593 project. Every day I see the same names in the changelogs, and I have
594 a constantly fear of the bus factor in this story. I&#39;d like to see
595 Debian Edu advertised more as an entry point into the Debian
596 ecosystem, especially amongst newcomers and students. IMHO there are a
597 lot low-hanging fruits in terms of bug squashing, and enough
598 opportunities to get the feeling of the Debian Project&#39;s dynamics. Not
599 to mention it&#39;s a very fun blend to work on!&lt;/p&gt;
600
601 &lt;p&gt;Derived from the previous statement, is the delay in catching up
602 with the main Debian release and documentation. This is common though
603 to all blends and derivatives, but it&#39;s an issue we can all work
604 on.&lt;/p&gt;
605
606 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
607
608 &lt;p&gt;I can hardly imagine myself spending a day without Vim, since my
609 daily routine covers writing code and hacking configuration files. I
610 am a fan of the Awesome window manager (but I also like the
611 Enlightenment project a lot!),
612 &lt;a href=&quot;http://www.claws-mail.org/‎&quot;&gt;Claws Mail&lt;/a&gt; due to its ease of
613 use and very configurable behaviour. Recently I fell in love with
614 &lt;a href=&quot;https://launchpad.net/redshift&quot;&gt;Redshift&lt;/a&gt;, which helps me
615 get through the night without headaches. Of course, there is much more
616 stuff in this bag, but I&#39;ll need a blog on my own for doing this!&lt;/p&gt;
617
618 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
619 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
620
621 &lt;p&gt;Well, on this field, I cannot do much more than experiment right
622 now. So, being far from having a recipe for success, I can only assume
623 that:&lt;/p&gt;
624
625 &lt;ul&gt;
626
627 &lt;li&gt;schools would like to get rid of proprietary software&lt;/li&gt;
628
629 &lt;li&gt;students will love the openness of the system, and will want to
630 experiment with it - maybe we need to harvest the native curiosity
631 of teenagers more?&lt;/li&gt;
632
633 &lt;li&gt;there is no &quot;right one&quot; when it comes to strategies, but it would
634 be useful to have some success stories published somewhere, so
635 other can get some inspiration from them (I know I&#39;d promote
636 them!)&lt;/li&gt;
637
638 &lt;li&gt;more active promotion - talks, conferences, even small school
639 lectures can do magical things if they encounter at least one
640 person interested. Who knows who that person might be? ;-)&lt;/li&gt;
641
642 &lt;/ul&gt;
643
644 &lt;p&gt;I also see some problems in getting Skolelinux into schools; for
645 example, in our country we have a great deal of corruption issues, so
646 it might be hard(er) to fight against proprietary solutions. Also,
647 people who relied on commercial software for all their lives, would be
648 very hard to convert against their will.&lt;/p&gt;
649 </description>
650 </item>
651
652 <item>
653 <title>Debian Edu interview: Jonathan Carter</title>
654 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</link>
655 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</guid>
656 <pubDate>Wed, 12 Jun 2013 09:50:00 +0200</pubDate>
657 <description>&lt;p&gt;There is a certain cross-over between the
658 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
659 project&lt;/a&gt; and &lt;a href=&quot;http://www.edubuntu.org/&quot;&gt;the Edubuntu
660 project&lt;/a&gt;, and for example the LTSP packages in Debian are a joint
661 effort between the projects. One person with a foot in both camps is
662 Jonathan Carter, which I am now happy to present to you.&lt;/p&gt;
663
664 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
665
666 &lt;p&gt;I&#39;m a South-African free software geek who lives in Cape Town. My
667 days vary quite a bit since I&#39;m involved in too many things. As I&#39;m
668 getting older I&#39;m learning how to focus a bit more :)&lt;/p&gt;
669
670 &lt;p&gt;I&#39;m also an Edubuntu contributor and I love when there are
671 opportunities for the Edubuntu and Debian Edu projects to benefit from
672 each other.&lt;/p&gt;
673
674 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
675 project?&lt;/strong&gt;&lt;/p&gt;
676
677 &lt;p&gt;I&#39;ve been somewhat familiar with the project before, but I think my
678 first direct exposure to the project was when I met Petter
679 [Reinholdtsen] and Knut [Yrvin] at the Edubuntu summit in 2005 in
680 London. They provided great feedback that helped the bootstrapping of
681 Edubuntu. Back then Edubuntu (and even Ubuntu) was still very new and
682 it was great getting input from people who have been around longer. I
683 was also still very excitable and said yes to everything and to this
684 day I have a big todo list backlog that I&#39;m catching up with. I think
685 over the years the relationship between Edubuntu and Debian-Edu has
686 been gradually improving, although I think there&#39;s a lot that we could
687 still improve on in terms of working together on packages. I&#39;m sure
688 we&#39;ll get there one day.&lt;/p&gt;
689
690 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
691 Edu?&lt;/strong&gt;&lt;/p&gt;
692
693 &lt;p&gt;Debian itself already has so many advantages. I could go on about
694 it for pages, but in essence I love that it&#39;s a very honest project
695 that puts its users first with no hidden agendas and also produces
696 very high quality work.&lt;/p&gt;
697
698 &lt;p&gt;I think the advantage of Debian Edu is that it makes many common
699 set-up tasks simpler so that administrators can get up and running
700 with a lot less effort and frustration. At the same time I think it
701 helps to standardise installations in schools so that it&#39;s easier for
702 community members and commercial suppliers to support.&lt;/p&gt;
703
704 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
705 Edu?&lt;/strong&gt;&lt;/p&gt;
706
707 &lt;p&gt;I had to re-type this one a few times because I&#39;m trying to
708 separate &quot;disadvantages&quot; from &quot;areas that need improvement&quot; (which is
709 what I originally rambled on about)&lt;/p&gt;
710
711 &lt;p&gt;The biggest disadvantage I can think of is lack of manpower. The
712 project could do so much more if there were more good contributors. I
713 think some of the problems are external too. Free software and free
714 content in education is a no-brainer but it takes some time to catch
715 on. When you&#39;ve been working with the same proprietary eco-system for
716 years and have gotten used to it, it can be hard to adjust to some
717 concepts in the free software world. It would be nice if there were
718 more Debian Edu consultants across the world. I&#39;d love to be one
719 myself but I&#39;m already so over-committed that it&#39;s just not possible
720 currently.&lt;/p&gt;
721
722 &lt;p&gt;I think the best short-term solution to that large-scale problem is
723 for schools to be pro-active and share their experiences and grow
724 their skills in-house. I&#39;m often saddened to see how much money
725 educational institutions spend on 3rd party solutions that they don&#39;t
726 have access to after the service has ended and they could&#39;ve gotten so
727 much more value otherwise by being more self-sustainable and
728 autonomous.&lt;/p&gt;
729
730 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
731
732 &lt;p&gt;My main laptop dual-boots between Debian and Windows 7. I was
733 Windows free for years but started dual-booting again last year for
734 some games which help me focus and relax (Starcraft II in
735 particular). Gaming support on Linux is improving in leaps and bounds
736 so I suppose I&#39;ll soon be able to regain that disk space :)&lt;/p&gt;
737
738 &lt;p&gt;Besides that I rely on Icedove, Chromium, Terminator, Byobu, irssi,
739 git, Tomboy, KVM, VLC and LibreOffice. Recently I&#39;ve been torn on
740 which desktop environment I like and I&#39;m taking some refuge in Xfce
741 while I figure that out. I like tools that keep things simple. I enjoy
742 Python and shell scripting. I went to an Arduino workshop recently and
743 it was awesome seeing how easy and simple the IDE software was to get
744 up and running in Debian compared to the users running Windows and OS
745 X.&lt;/p&gt;
746
747 &lt;p&gt;I also use mc which some people frown upon slightly. I got used to
748 using Norton Commander in the early 90&#39;s and it stuck (I think the
749 people who sneer at it is just jealous that they don&#39;t know how to use
750 it :p)
751
752 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
753 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
754
755 &lt;p&gt;I think trying to force it is unproductive. I also think that in
756 many cases it&#39;s appropriate for schools to use non-free systems and I
757 don&#39;t think that there&#39;s any particular moral or ethical problem with
758 that.&lt;/p&gt;
759
760 &lt;p&gt;I do think though that free software can already solve so so many
761 problems in educational institutions and it&#39;s just a shame not taking
762 advantage of that.&lt;/p&gt;
763
764 &lt;p&gt;I also think that some curricula need serious review. For example,
765 some areas of the world rely heavily on very specific versions of MS
766 Office, teaching students to parrot menu items instead of learning the
767 general concepts. I think that&#39;s very unproductive because firstly, MS
768 Office&#39;s interface changes drastically every few years and on top of
769 that it also locks in a generation to a product that might not be the
770 best solution for them.&lt;/p&gt;
771
772 &lt;p&gt;To answer your question, I believe that the right strategy is to
773 educate and inform, giving someone the information they require to
774 make a decision that would work for them.&lt;/p&gt;
775 </description>
776 </item>
777
778 </channel>
779 </rss>