]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
Generated.
[homepage.git] / blog / index.rss
index eb14fbef80595717458e1c114c14b8e3f77c698c..bf02af8c7346cb6155a3d1a03f9b0b55f4bf87ec 100644 (file)
@@ -6,6 +6,39 @@
                 <link>http://people.skolelinux.org/pere/blog/</link>
                 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
        
+       <item>
+               <title>Debian Edu screencast: Mass creation of user accounts in Squeeze</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</guid>
+                <pubDate>Wed, 7 Mar 2012 13:40:00 +0100</pubDate>
+               <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
+
+&lt;p&gt;One of the Debian Edu developers, Wolfgang Schweer, just created a
+screen cast documenting how to create a lot of new users in LDAP on
+Debian Edu Squeeze.  The video is embedded here in quarter size, and
+also available from &lt;a href=&quot;http://vimeo.com/37675399&quot;&gt;vimeo&lt;/a&gt; and
+download as a
+&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg
+Theora&lt;/a&gt; file.  Check it out below.&lt;/p&gt;
+
+&lt;p&gt;&lt;video id=&quot;gosa-mass-user-create-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
+  &lt;source src=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot; type=&#39;video/ogg; codecs=&quot;theora, vorbis&quot;&#39; /&gt;
+    &lt;p&gt;Download video as
+      &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg&lt;/a&gt;.&lt;/p&gt; 
+&lt;/video&gt;
+&lt;script&gt;
+  var v = document.getElementById(&quot;gosa-mass-user-create-movie&quot;);
+  v.onclick = function() {
+    if (v.paused) {
+      v.play();
+    } else {
+      v.pause();
+    }
+  };
+&lt;/script&gt;&lt;/p&gt;
+</description>
+       </item>
+       
        <item>
                <title>Hamar kommune imponerer i FiksGataMi-rapportert problem i dag</title>
                <link>http://people.skolelinux.org/pere/blog/Hamar_kommune_imponerer_i_FiksGataMi_rapportert_problem_i_dag.html</link>
@@ -395,63 +428,5 @@ selvstendige individer som kan være med å skape sin egen fremtid.&lt;/p&gt;
 </description>
        </item>
        
-       <item>
-               <title>How to figure out which RAID disk to replace when it fail</title>
-               <link>http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</guid>
-                <pubDate>Tue, 14 Feb 2012 21:25:00 +0100</pubDate>
-               <description>&lt;p&gt;Once in a while my home server have disk problems.  Thanks to Linux
-Software RAID, I have not lost data yet (but
-&lt;a href=&quot;http://comments.gmane.org/gmane.linux.raid/34532&quot;&gt;I was
-close&lt;/a&gt; this summer :).  But once a disk is starting to behave
-funny, a practical problem present itself.  How to get from the Linux
-device name (like /dev/sdd) to something that can be used to identify
-the disk when the computer is turned off?  In my case I have SATA
-disks with a unique ID printed on the label.  All I need is a way to
-figure out how to query the disk to get the ID out.&lt;/p&gt;
-
-&lt;p&gt;After fumbling a bit, I
-&lt;a href=&quot;http://www.cyberciti.biz/faq/linux-getting-scsi-ide-harddisk-information/&quot;&gt;found
-that hdparm -I&lt;/a&gt; will report the disk serial number, which is
-printed on the disk label.  The following (almost) one-liner can be
-used to look up the ID of all the failed disks:&lt;/p&gt;
-
-&lt;blockquote&gt;&lt;pre&gt;
-for d in $(cat /proc/mdstat |grep &#39;(F)&#39;|tr &#39; &#39; &quot;\n&quot;|grep &#39;(F)&#39;|cut -d\[ -f1|sort -u);
-do
-    printf &quot;Failed disk $d: &quot;
-    hdparm -I /dev/$d |grep &#39;Serial Num&#39;
-done
-&lt;/blockquote&gt;&lt;/pre&gt;
-
-&lt;p&gt;Putting it here to make sure I do not have to search for it the
-next time, and in case other find it useful.&lt;/p&gt;
-
-&lt;p&gt;At the moment I have two failing disk. :(&lt;/p&gt;
-
-&lt;blockquote&gt;&lt;pre&gt;
-Failed disk sdd1:       Serial Number:      WD-WCASJ1860823
-Failed disk sdd2:       Serial Number:      WD-WCASJ1860823
-Failed disk sde2:       Serial Number:      WD-WCASJ1840589
-&lt;/blockquote&gt;&lt;/pre&gt;
-
-&lt;p&gt;The last time I had failing disks, I added the serial number on
-labels I printed and stuck on the short sides of each disk, to be able
-to figure out which disk to take out of the box without having to
-remove each disk to look at the physical vendor label.  The vendor
-label is at the top of the disk, which is hidden when the disks are
-mounted inside my box.&lt;/p&gt;
-
-&lt;p&gt;I really wish the check_linux_raid Nagios plugin for checking Linux
-Software RAID in the
-&lt;a href=&quot;http://packages.qa.debian.org/n/nagios-plugins.html&quot;&gt;nagios-plugins-standard&lt;/a&gt;
-debian package would look up this value automatically, as it would
-make the plugin a lot more useful when my disks fail.  At the moment
-it only report a failure when there are no more spares left (it really
-should warn as soon as a disk is failing), and it do not tell me which
-disk(s) is failing when the RAID is running short on disks.&lt;/p&gt;
-</description>
-       </item>
-       
         </channel>
 </rss>