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