<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Marti's Home</title>
	<atom:link href="http://marti.dimerge.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://marti.dimerge.net/blog</link>
	<description>you can't be as good as God, but you can be close!</description>
	<pubDate>Thu, 20 Nov 2008 17:16:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>one year</title>
		<link>http://marti.dimerge.net/blog/2008/11/20/one-year</link>
		<comments>http://marti.dimerge.net/blog/2008/11/20/one-year#comments</comments>
		<pubDate>Thu, 20 Nov 2008 17:16:21 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=228</guid>
		<description><![CDATA[It is exacly one year after first post&#8230; one year of new challenges and experience. So&#8230; maybe some statistics.
My blog has 48195 visits (without bots)&#8230; and 33159 unique.
Thanks for all your comments (23), and to RSS readers (12).
Best regards for all,
And see you in the future :)&#8230; near I hope :]
]]></description>
			<content:encoded><![CDATA[<p>It is exacly one year after first post&#8230; one year of new challenges and experience. So&#8230; maybe some statistics.</p>
<p>My blog has 48195 visits (without bots)&#8230; and 33159 unique.</p>
<p>Thanks for all your comments (23), and to RSS readers (12).</p>
<p>Best regards for all,</p>
<p>And see you in the future :)&#8230; near I hope :]</p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/20/one-year/feed</wfw:commentRss>
		</item>
		<item>
		<title>convert security.fdb to security2.fdb in firebird</title>
		<link>http://marti.dimerge.net/blog/2008/11/14/convert-securityfdb-to-security2fdb-in-firebird</link>
		<comments>http://marti.dimerge.net/blog/2008/11/14/convert-securityfdb-to-security2fdb-in-firebird#comments</comments>
		<pubDate>Fri, 14 Nov 2008 15:52:05 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[firebird database conversion]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=224</guid>
		<description><![CDATA[I have to migrate from firebird 1.5 to 2.0. And of course there was a databases migration. The security.fdb as it is said in /opt/firebird/upgrade/security_database.txt is not compatibile:
You can&#8217;t use pre-2.0 security database in firebird 2.0 or higher directly.
If you try to put old security.fdb into firebird&#8217;s new home directory with
new (security2.fdb) name, you will [...]]]></description>
			<content:encoded><![CDATA[<p>I have to migrate from firebird 1.5 to 2.0. And of course there was a databases migration. The security.fdb as it is said in /opt/firebird/upgrade/security_database.txt is not compatibile:</p>
<blockquote><p>You can&#8217;t use pre-2.0 security database in firebird 2.0 or higher directly.<br />
If you try to put old security.fdb into firebird&#8217;s new home directory with<br />
new (security2.fdb) name, you will get a message - cannot attach to password<br />
database. That&#8217;s OK and is by design. In order to be able to use old database,<br />
you must run appropriate upgrade script - security_database.sql. To do so:<br />
1. Put your old security database in some known to you place (not new home directory). Always have a copy of it!<br />
2. Start firebird using it&#8217;s new, native security2.fdb.<br />
3. Convert your old security database to ODS11 (i.e. backup and restore it using gbak from firebird 2.0). Without this step you will get failure running security_database.sql!<br />
4. Connect to restored database as SYSDBA and run the script.<br />
5. Stop firebird.<br />
6. Copy upgraded database to firebird&#8217;s home directory (as security2.fdb).<br />
7. Start firebird.
</p></blockquote>
<p>but point 3 is not explained. so&#8230; let&#8217;s rock&#8230;</p>
<p>To be sure - You have to change native sercurity2.fdb password to same as your sysdba in previous version of firebird has, and check if firebird is running!</p>
<blockquote><p># /opt/firebird/bin/changeDBAPassword.sh<br />
Please enter current password for SYSDBA user: oldpassword<br />
Please enter new password for SYSDBA user: masterkey
</p></blockquote>
<p>STEP 1 (make a copy of security.fdb):</p>
<blockquote><p># /opt/firebird/bin/gbak -user SYSDBA -password masterkey /opt/firebird/security.fdb /opt/firebird/security.fbk
</p></blockquote>
<p>if you get following error you have to chown security.fdb to firebird user!</p>
<blockquote><p>gbak: ERROR:I/O error for file &#8220;/opt/firebird/security.fdb&#8221;<br />
gbak: ERROR:    Error while trying to open file<br />
gbak: ERROR:    Permission denied<br />
gbak:Exiting before completion due to errors
</p></blockquote>
<p>STEP 2 (restore the database):</p>
<blockquote><p># /opt/firebird/bin/gbak -rep -user SYSDBA -password masterkey /opt/firebird/security.fbk /opt/firebird/security.fdb
</p></blockquote>
<p>STEP 3 (database conversion):</p>
<blockquote><p># /opt/firebird/bin/isql -user SYSDBA -password masterkey -i /opt/firebird/upgrade/security_database.sql /opt/firebird/security.fdb
</p></blockquote>
<p>STEP 4 (stop the firebird):</p>
<blockquote><p># service firebird stop:
</p></blockquote>
<p>STEP 5 (overwrite the old security fdb):</p>
<blockquote><p>cp security.fdb security2.fdb
</p></blockquote>
<p>that&#8217;s all&#8230; simple <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> don&#8217;t you think so? <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/14/convert-securityfdb-to-security2fdb-in-firebird/feed</wfw:commentRss>
		</item>
		<item>
		<title>WORN - Write Once Read Never - new trend in hard disk production?</title>
		<link>http://marti.dimerge.net/blog/2008/11/14/worn-write-once-read-never-new-trend-in-hard-disk-production</link>
		<comments>http://marti.dimerge.net/blog/2008/11/14/worn-write-once-read-never-new-trend-in-hard-disk-production#comments</comments>
		<pubDate>Fri, 14 Nov 2008 10:01:52 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[raid]]></category>

		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=218</guid>
		<description><![CDATA[Yesterday I participated Hitachi Storage training, which was about new AMS 2500 storage and its new active-active controller. A few white papers can be found below. I attach two additional links. One which has some interesting info about disk failures (from FAST&#8217;07: 5th USENIX Conference on File and Storage Technologies) and one about risk of [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I participated Hitachi Storage training, which was about new AMS 2500 storage and its new active-active controller. A few white papers can be found below. I attach two additional links. One which has some interesting info about disk failures (from FAST&#8217;07: 5th USENIX Conference on File and Storage Technologies) and one about risk of raid5 in disks bigger than 750GB. So - remeber the WORN rule - which make SATA drives compleatly untrusted <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://marti.dimerge.net/blog/wp-content/uploads/2008/11/hitachi-ams-2500.pdf">hitachi-ams-2500</a></p>
<p><a href="http://marti.dimerge.net/blog/wp-content/uploads/2008/11/symmetric-active-active-controller-wp.pdf">symmetric-active-active-controller</a></p>
<p><a href="http://marti.dimerge.net/blog/wp-content/uploads/2008/11/fast07-what_does_mttf_mean.pdf">what_does_mttf_mean_to_you</a></p>
<p><a title="why raid 5 stops working in 2009" href="http://blogs.zdnet.com/storage/?p=162">why raid 5 stops working in 2009</a></p>
<p><a title="everything you know about disk is wrong" href="http://storagemojo.com/2007/02/20/everything-you-know-about-disks-is-wrong/" target="_blank">everything You know about disks is wrong</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/14/worn-write-once-read-never-new-trend-in-hard-disk-production/feed</wfw:commentRss>
		</item>
		<item>
		<title>transmission-1.40 at centos 5 libcurl problem</title>
		<link>http://marti.dimerge.net/blog/2008/11/11/transmission-140-at-centos-5-libcurl-problem</link>
		<comments>http://marti.dimerge.net/blog/2008/11/11/transmission-140-at-centos-5-libcurl-problem#comments</comments>
		<pubDate>Tue, 11 Nov 2008 10:35:44 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[centos]]></category>

		<category><![CDATA[libcurl]]></category>

		<category><![CDATA[transmission]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=216</guid>
		<description><![CDATA[When I tried to update my transmission (1.34) bittorent client to newest version 1.40 at centos 5 I got a configure error:
Requested &#8216;libcurl &#62;= 7.16.3&#8242; but version of libcurl is 7.15.5
and it is true&#8230; libcurl in centos 5 is now 7.15.5 and probably will not be updated in a short time. As a solution, I [...]]]></description>
			<content:encoded><![CDATA[<p>When I tried to update my transmission (1.34) bittorent client to newest version 1.40 at centos 5 I got a configure error:</p>
<blockquote><p>Requested &#8216;libcurl &gt;= 7.16.3&#8242; but version of libcurl is 7.15.5</p></blockquote>
<p>and it is true&#8230; libcurl in centos 5 is now 7.15.5 and probably will not be updated in a short time. As a solution, I tried to rebuild a fedora 8 src package.</p>
<p>What I need was: <a title="curl 7.16.4" href="ftp://ftp.pbone.net/mirror/download.fedora.redhat.com/pub/fedora/linux/releases/8/Everything/source/SRPMS/curl-7.16.4-8.fc8.src.rpm" target="_blank">curl-7.16.4-8.fc8.src.rpm</a> and rpmbuild in my centos system. You will probably need nss-devel and nspr-devel so install it before running rpmbuild.  Let&#8217;s rock:</p>
<blockquote><p>rpmbuild &#8211;rebuild &#8211;define &#8216;dist .el5&#8242; curl-7.16.4-8.fc8.src.rpm</p></blockquote>
<p>after some time you should get files:</p>
<blockquote><p>-rw-r&#8211;r&#8211; 1 root root 675076 Nov 11 10:19 <a href="http://marti.dimerge.net/packages/centos5/curl-7.16.4-8.el5.i386.rpm" target="_blank">curl-7.16.4-8.el5.i386.rpm</a><br />
-rw-r&#8211;r&#8211; 1 root root 206491 Nov 11 10:19 <a href="http://marti.dimerge.net/packages/centos5/curl-devel-7.16.4-8.el5.i386.rpm">curl-devel-7.16.4-8.el5.i386.rpm</a></p></blockquote>
<p>of course, you can download them from my repo (click at them). Now you can easly install both:</p>
<blockquote><p># rpm -Uvh /usr/src/redhat/RPMS/i386/curl-*<br />
Preparing&#8230;                ########################################### [100%]<br />
1:curl                   ########################################### [ 50%]<br />
2:curl-devel             ########################################### [100%]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/11/transmission-140-at-centos-5-libcurl-problem/feed</wfw:commentRss>
		</item>
		<item>
		<title>Duplicate name exists</title>
		<link>http://marti.dimerge.net/blog/2008/11/10/duplicate-name-exists</link>
		<comments>http://marti.dimerge.net/blog/2008/11/10/duplicate-name-exists#comments</comments>
		<pubDate>Mon, 10 Nov 2008 08:36:18 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<category><![CDATA[cribs]]></category>

		<category><![CDATA[windows]]></category>

		<category><![CDATA[duplicate name exists]]></category>

		<category><![CDATA[workgroup]]></category>

		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=214</guid>
		<description><![CDATA[After starting windows xp pro, I got:
Duplicate name exists.
Solution:
If changing name for sth random (for example 376huf2e) does not help, check if the workgroup name is not same as one of computers in your network. For me - it solved the problem.
]]></description>
			<content:encoded><![CDATA[<p>After starting windows xp pro, I got:</p>
<p>Duplicate name exists.</p>
<p>Solution:</p>
<p>If changing name for sth random (for example 376huf2e) does not help, check if the workgroup name is not same as one of computers in your network. For me - it solved the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/10/duplicate-name-exists/feed</wfw:commentRss>
		</item>
		<item>
		<title>software raid 10 at linux</title>
		<link>http://marti.dimerge.net/blog/2008/11/07/software-raid-10-at-linux</link>
		<comments>http://marti.dimerge.net/blog/2008/11/07/software-raid-10-at-linux#comments</comments>
		<pubDate>Fri, 07 Nov 2008 14:21:38 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[RAID10]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=212</guid>
		<description><![CDATA[Today I was looking for some performace tests at linux filesystems, and I found some pages, where raid 10 at linux has been done by merging two raid 1 into raid 0, or simmilar&#8230;
Maybe some of you does not know, that linux mdadm support raid10, as you can see below:
# mdadm &#8211;create /dev/md2 &#8211;level 10 [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was looking for some performace tests at linux filesystems, and I found some pages, where raid 10 at linux has been done by merging two raid 1 into raid 0, or simmilar&#8230;</p>
<p>Maybe some of you does not know, that linux mdadm support raid10, as you can see below:</p>
<blockquote><p># mdadm &#8211;create /dev/md2 &#8211;level 10 &#8211;raid-devices=4 /dev/sda5 /dev/sdb5 /dev/sdc5 /dev/sdd5<br />
mdadm: array /dev/md2 started.</p></blockquote>
<p>and check:</p>
<blockquote><p># cat /proc/mdstat<br />
Personalities : [raid1] [raid10]<br />
md2 : active raid10 sdd5[3] sdc5[2] sdb5[1] sda5[0]<br />
4481920 blocks 64K chunks 2 near-copies [4/4] [UUUU]<br />
[======&gt;..............]  resync = 32.2% (1445184/4481920) finish=0.3min speed=160576K/sec</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/11/07/software-raid-10-at-linux/feed</wfw:commentRss>
		</item>
		<item>
		<title>e-mail delivery can&#8217;t be guaranteed</title>
		<link>http://marti.dimerge.net/blog/2008/10/22/e-mail-delivery-cant-be-guaranteed</link>
		<comments>http://marti.dimerge.net/blog/2008/10/22/e-mail-delivery-cant-be-guaranteed#comments</comments>
		<pubDate>Wed, 22 Oct 2008 14:16:23 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[considers]]></category>

		<category><![CDATA[mail systems]]></category>

		<category><![CDATA[spam delivery]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=207</guid>
		<description><![CDATA[One of my business partners has something like this in his disclaimer:
Messages sent to and from CompanyName may be monitored to ensure compliance with internal policies and to protect our business. Emails are not secure and cannot be guaranteed to be error free. Anyone who communicates with us by email is taken to accept these [...]]]></description>
			<content:encoded><![CDATA[<p>One of my business partners has something like this in his disclaimer:</p>
<blockquote><p>Messages sent to and from CompanyName may be monitored to ensure compliance with internal policies and to protect our business. <strong>Emails are not secure and cannot be guaranteed to be error free. </strong>Anyone who communicates with us by email is taken to accept these risks.</p></blockquote>
<p>In my opinion this is perfect definition of whole mailsystem based at pop3 and smtp protocol. It is doddored like whole Internet (which &#8220;be or not to be&#8221; is based at 13 global nameservers). The main problem is that is has been invented in time - when security was not considered.</p>
<p>Of course - we have the tls/ssl in mail comunication, but we cannot enforce the second server to use it, because of compatibility, and risk of loosing some mails.</p>
<p>No provider can guarantee email delivery. ISP&#8217;s have different rules about SPAM detection based on content, subject and how many of their users are reporting emails as SPAM. The best way to make sure that your specific survey invitation is not blocked as SPAM is to pre-test it with free email addresses from hotmail, yahoo etc. But as I said WITH NO GUARANTEE <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>next problem is that we cannot be sure, that person who send us an e-mail is the real person, not an robot or sth. Yes - there is an SPF - but enforcing it like tls/ssl can make some serious problems to delivery. And like you can read <a title="spf vunerable" href="http://blog.deliverability.com/2008/10/new-spf-vuln.html">here</a> SPF in his simplicyty is vulnerable too&#8230; which is not a good news.</p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/10/22/e-mail-delivery-cant-be-guaranteed/feed</wfw:commentRss>
		</item>
		<item>
		<title>have a good weekend :)&#8230; with linux kernel matrix</title>
		<link>http://marti.dimerge.net/blog/2008/10/10/have-a-good-weekend-with-linux-kernel-matrix</link>
		<comments>http://marti.dimerge.net/blog/2008/10/10/have-a-good-weekend-with-linux-kernel-matrix#comments</comments>
		<pubDate>Fri, 10 Oct 2008 15:55:31 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[linux kernel]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=204</guid>
		<description><![CDATA[  best regards


]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"> <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> best regards</p>
<p style="text-align: center;"><a href="http://marti.dimerge.net/blog/wp-content/uploads/2008/10/linux.jpg"><img class="size-thumbnail wp-image-205 alignnone" title="linux" src="http://marti.dimerge.net/blog/wp-content/uploads/2008/10/linux-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/10/10/have-a-good-weekend-with-linux-kernel-matrix/feed</wfw:commentRss>
		</item>
		<item>
		<title>endian firewall community default root password</title>
		<link>http://marti.dimerge.net/blog/2008/09/25/endian-firewall-community-default-root-password</link>
		<comments>http://marti.dimerge.net/blog/2008/09/25/endian-firewall-community-default-root-password#comments</comments>
		<pubDate>Thu, 25 Sep 2008 14:16:45 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[endian default password]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=201</guid>
		<description><![CDATA[I do not like to read whole documentation to get the default password, it is wasting of time, so I use google to do it. But it was rather hard do find the default password for endian firewall (Yes, I&#8217;ve just installed it for testing purposes). So:
login: root
password: endian
 
]]></description>
			<content:encoded><![CDATA[<p>I do not like to read whole documentation to get the default password, it is wasting of time, so I use google to do it. But it was rather hard do find the default password for endian firewall (Yes, I&#8217;ve just installed it for testing purposes). So:</p>
<blockquote><p>login: <strong>root</strong><br />
password: <strong>endian</strong></p></blockquote>
<p> <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/09/25/endian-firewall-community-default-root-password/feed</wfw:commentRss>
		</item>
		<item>
		<title>re-add disk to mdadm array</title>
		<link>http://marti.dimerge.net/blog/2008/09/23/re-add-disk-to-mdadm-array</link>
		<comments>http://marti.dimerge.net/blog/2008/09/23/re-add-disk-to-mdadm-array#comments</comments>
		<pubDate>Tue, 23 Sep 2008 11:42:32 +0000</pubDate>
		<dc:creator>Marcin Rybak</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[mdadm]]></category>

		<category><![CDATA[re-add disks]]></category>

		<guid isPermaLink="false">http://marti.dimerge.net/blog/?p=195</guid>
		<description><![CDATA[Sometimes you can meet the situation when you lost a drive by accident from your mdadm configuration, as you can see below, two of my arrays has lost a drive:
# cat /proc/mdstat
Personalities : [raid1] [raid0]
md3 : active raid1 sdc2[0] hde2[1]
      195358336 blocks [2/2] [UU]
md2 : active raid0 sdc1[0] hde1[1]
  [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you can meet the situation when you lost a drive by accident from your mdadm configuration, as you can see below, two of my arrays has lost a drive:</p>
<blockquote><p># cat /proc/mdstat<br />
Personalities : [raid1] [raid0]<br />
md3 : active raid1 sdc2[0] hde2[1]<br />
      195358336 blocks [2/2] [UU]</p>
<p>md2 : active raid0 sdc1[0] hde1[1]<br />
      97675008 blocks 64k chunks<br />
<strong><br />
md1 : active raid1 sda1[0]<br />
      104320 blocks [2/1] [U_]</strong></p>
<p>md6 : active raid1 sdb4[1] sda4[0]<br />
      958084352 blocks [2/2] [UU]</p>
<p><strong>md0 : active raid1 sda3[0]<br />
      14659200 blocks [2/1] [U_]</strong>
</p></blockquote>
<p>to re-add it to array just:</p>
<blockquote><p># mdadm /dev/md1 -a /dev/sdb1<br />
mdadm: re-added /dev/sdb1<br />
# mdadm /dev/md0 -a /dev/sdb3<br />
mdadm: re-added /dev/sdb3</p></blockquote>
<p>now - my array is alive and kicking again <img src='http://marti.dimerge.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p># cat /proc/mdstat<br />
Personalities : [raid1] [raid0]<br />
md3 : active raid1 sdc2[0] hde2[1]<br />
      195358336 blocks [2/2] [UU]</p>
<p>md2 : active raid0 sdc1[0] hde1[1]<br />
      97675008 blocks 64k chunks</p>
<p>md1 : active raid1 sdb1[1] sda1[0]<br />
      104320 blocks [2/2] [UU]</p>
<p>md6 : active raid1 sdb4[1] sda4[0]<br />
      958084352 blocks [2/2] [UU]</p>
<p>md0 : active raid1 sdb3[2] sda3[0]<br />
      14659200 blocks [2/1] [U_]<br />
      [>....................]  recovery =  1.8% (272128/14659200) finish=2.6min speed=90709K/sec</p>
<p>unused devices: <none></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://marti.dimerge.net/blog/2008/09/23/re-add-disk-to-mdadm-array/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
