<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" > <channel><title>Comments for Kevin Deldycke</title> <atom:link href="http://kevin.deldycke.com/comments/feed/" rel="self" type="application/rss+xml" /><link>http://kevin.deldycke.com</link> <description>Free software engineer &#38; wannabe videomaker</description> <lastBuildDate>Sat, 19 May 2012 07:29:53 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Comment on Increase OpenERP 6.0 web-client session timeout by RII ERP</title><link>http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/comment-page-1/#comment-10720</link> <dc:creator>RII ERP</dc:creator> <pubDate>Sat, 19 May 2012 07:29:53 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4804#comment-10720</guid> <description>Thanks. Good information to use it.</description> <content:encoded><![CDATA[<p>Thanks. Good information to use it.</p> ]]></content:encoded> </item> <item><title>Comment on Heroic journey to RAID-5 data recovery by Endre Fejes</title><link>http://kevin.deldycke.com/2008/07/heroic-journey-to-raid-5-data-recovery/comment-page-1/#comment-10707</link> <dc:creator>Endre Fejes</dc:creator> <pubDate>Wed, 16 May 2012 22:21:27 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=246#comment-10707</guid> <description>Thanks for this post it helped me a lot.In my case 1 had 4 drives (&lt;code&gt;sd[a-d]&lt;/code&gt;): &lt;ul&gt; &lt;li&gt;&lt;code&gt;sda&lt;/code&gt; and &lt;code&gt;sdb&lt;/code&gt; are 250G &lt;code&gt;c&lt;/code&gt; and &lt;code&gt;d&lt;/code&gt; are 160G&lt;/li&gt; &lt;li&gt;&lt;code&gt;sda1&lt;/code&gt; and &lt;code&gt;sdb1&lt;/code&gt; (200m each) as raid1 &lt;code&gt;md0&lt;/code&gt; for &lt;code&gt;/boot&lt;/code&gt;&lt;/li&gt; &lt;li&gt;&lt;code&gt;sd[ab]2&lt;/code&gt; and &lt;code&gt;sd[cd]1&lt;/code&gt; as raid5 &lt;code&gt;md1&lt;/code&gt; for LVM providing root and else.&lt;/li&gt; &lt;/ul&gt;The problem was that &lt;code&gt;sd[ab]2&lt;/code&gt; were both ~250G regardless the uselessness regarding the other members of the array. So I decided to take out &lt;code&gt;sda2&lt;/code&gt;, delete the partition, create a 160G sized and an &lt;code&gt;sda3&lt;/code&gt; for the rest, put &lt;code&gt;sda2&lt;/code&gt; it back to &lt;code&gt;md1&lt;/code&gt;, leave it to rebuild. Then do the same with &lt;code&gt;sdb&lt;/code&gt; so I get &lt;code&gt;sd[ab]3&lt;/code&gt; to form a raid1 array.Everything went well, except for I disregarded the notifications of &lt;code&gt;partprobe&lt;/code&gt; (after altering &lt;code&gt;sda&lt;/code&gt; and &lt;code&gt;sdb&lt;/code&gt; with &lt;code&gt;fdisk&lt;/code&gt;) and even the alternation was complete, after reboot the startup failed to find the root device.Booting up with a livecd it turned out that both &lt;code&gt;sda2&lt;/code&gt; and &lt;code&gt;sdb2&lt;/code&gt; were kicked out of the array. After a short panic I found this post, and tried to collect some information.[code lang=&quot;shell&quot;] mdadm -E /dev/sd{a2,b2,c1,d1} &#124; grep Event [/code]It turned out, that &lt;code&gt;sda2&lt;/code&gt; were completely faulty but the rest were ok, though &lt;code&gt;mdadm&lt;/code&gt; denied to add it to the array.Long story short, this was the solution: [code lang=&quot;shell&quot;] mdadm --create -l5 -n4 --assume-clean /dev/md1 missing /dev/sdb2 /dev/sdc1 /dev/sdd1 [/code]It showed clean,degraded,. I was half relieved this point, because I could not mount it! Anyway I continued, zeroed &lt;code&gt;sda2&lt;/code&gt;, added to the array and left it to rebuild. It worked!Although since create changed the &lt;code&gt;uuid&lt;/code&gt; of the array I had to reconfigure some other things, such as &lt;code&gt;mdadm.conf&lt;/code&gt;, &lt;code&gt;grub.conf&lt;/code&gt;, &lt;code&gt;fstab&lt;/code&gt;, but that&#039;s an other story ...Thanks again!</description> <content:encoded><![CDATA[<p>Thanks for this post it helped me a lot.</p><p>In my case 1 had 4 drives (<code>sd[a-d]</code>):</p><ul><li><code>sda</code> and <code>sdb</code> are 250G <code>c</code> and <code>d</code> are 160G</li><li><code>sda1</code> and <code>sdb1</code> (200m each) as raid1 <code>md0</code> for <code>/boot</code></li><li><code>sd[ab]2</code> and <code>sd[cd]1</code> as raid5 <code>md1</code> for LVM providing root and else.</li></ul><p>The problem was that <code>sd[ab]2</code> were both ~250G regardless the uselessness regarding the other members of the array. So I decided to take out <code>sda2</code>, delete the partition, create a 160G sized and an <code>sda3</code> for the rest, put <code>sda2</code> it back to <code>md1</code>, leave it to rebuild. Then do the same with <code>sdb</code> so I get <code>sd[ab]3</code> to form a raid1 array.</p><p>Everything went well, except for I disregarded the notifications of <code>partprobe</code> (after altering <code>sda</code> and <code>sdb</code> with <code>fdisk</code>) and even the alternation was complete, after reboot the startup failed to find the root device.</p><p>Booting up with a livecd it turned out that both <code>sda2</code> and <code>sdb2</code> were kicked out of the array. After a short panic I found this post, and tried to collect some information.</p><pre class="brush: bash; title: ; notranslate">
mdadm -E /dev/sd{a2,b2,c1,d1} | grep Event
</pre><p>It turned out, that <code>sda2</code> were completely faulty but the rest were ok, though <code>mdadm</code> denied to add it to the array.</p><p>Long story short, this was the solution:</p><pre class="brush: bash; title: ; notranslate">
mdadm --create -l5 -n4 --assume-clean /dev/md1 missing /dev/sdb2 /dev/sdc1 /dev/sdd1
</pre><p>It showed clean,degraded,. I was half relieved this point, because I could not mount it! Anyway I continued, zeroed <code>sda2</code>, added to the array and left it to rebuild. It worked!</p><p>Although since create changed the <code>uuid</code> of the array I had to reconfigure some other things, such as <code>mdadm.conf</code>, <code>grub.conf</code>, <code>fstab</code>, but that&#8217;s an other story &#8230;</p><p>Thanks again!</p> ]]></content:encoded> </item> <item><title>Comment on Why I chose Ubercart instead of Magento or osCommerce. by Vinod Kumar</title><link>http://kevin.deldycke.com/2011/03/chose-ubercart-magento-oscommerce/comment-page-1/#comment-10705</link> <dc:creator>Vinod Kumar</dc:creator> <pubDate>Wed, 16 May 2012 13:54:15 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=2947#comment-10705</guid> <description>Hello. Is there anyway to stop the sales of products whose quantity has gone to zero. Is there a module to remove the product from  display or put out of stock for zero quantity products. I am using Drupal 7.x and Ubercart 7.x</description> <content:encoded><![CDATA[<p>Hello. Is there anyway to stop the sales of products whose quantity has gone to zero. Is there a module to remove the product from  display or put out of stock for zero quantity products. I am using Drupal 7.x and Ubercart 7.x</p> ]]></content:encoded> </item> <item><title>Comment on Beautify Contextual Related Posts WordPress plugin by arrisje</title><link>http://kevin.deldycke.com/2012/04/beautify-contextual-related-posts-wordpress-plugin/comment-page-1/#comment-10700</link> <dc:creator>arrisje</dc:creator> <pubDate>Mon, 14 May 2012 03:26:00 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4754#comment-10700</guid> <description>Thanks that worked for me :)</description> <content:encoded><![CDATA[<p>Thanks that worked for me <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>Comment on VirtualBox commands by All my command lines &#124; Kevin Deldycke</title><link>http://kevin.deldycke.com/2012/05/virtualbox-commands/comment-page-1/#comment-10672</link> <dc:creator>All my command lines &#124; Kevin Deldycke</dc:creator> <pubDate>Tue, 08 May 2012 14:24:43 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4570#comment-10672</guid> <description>[...] / l10nMySQLPostgreSQLGitMercurialSubversionBazaarCVSQemuEximPythonJavaScriptWordPressVirtualBoxFor the context, you can read this introduction.Related contentUseful Commands: IntroductionWebsite [...]</description> <content:encoded><![CDATA[<p>[...] / l10nMySQLPostgreSQLGitMercurialSubversionBazaarCVSQemuEximPythonJavaScriptWordPressVirtualBoxFor the context, you can read this introduction.Related contentUseful Commands: IntroductionWebsite [...]</p> ]]></content:encoded> </item> <item><title>Comment on CVS commands by All my command lines &#124; Kevin Deldycke</title><link>http://kevin.deldycke.com/2006/11/cvs-commands/comment-page-1/#comment-10671</link> <dc:creator>All my command lines &#124; Kevin Deldycke</dc:creator> <pubDate>Tue, 08 May 2012 14:24:26 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/2006/11/usefull-commands-cvs/#comment-10671</guid> <description>[...] &amp; AptitudeRPM, Urpmi &amp; YumOpenSSHGPGi18n / l10nMySQLPostgreSQLGitMercurialSubversionBazaarCVSQemuEximPythonJavaScriptWordPressVirtualBoxFor the context, you can read this introduction.Related [...]</description> <content:encoded><![CDATA[<p>[...] &amp; AptitudeRPM, Urpmi &amp; YumOpenSSHGPGi18n / l10nMySQLPostgreSQLGitMercurialSubversionBazaarCVSQemuEximPythonJavaScriptWordPressVirtualBoxFor the context, you can read this introduction.Related [...]</p> ]]></content:encoded> </item> <item><title>Comment on Check Point&#8217;s SNX client on Ubuntu 11.04 by manu</title><link>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/comment-page-1/#comment-10665</link> <dc:creator>manu</dc:creator> <pubDate>Mon, 07 May 2012 07:23:08 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4713#comment-10665</guid> <description>Thanks Kev, for the reply.I did try the 3 scripts, for the same result, unfortunately.The &lt;code&gt;-g&lt;/code&gt; switch turns debugging on, and a &lt;code&gt;snx.elg&lt;/code&gt; file is filled with different kind of informations. At a certain point, it says : [code lang=&quot;text&quot;] CkpRegDir: Environment variable CPDIR is not set. GenerateGlobalEntry: Unable to get registry path [/code]This missing &lt;code&gt;CPDIR&lt;/code&gt; variable is mentionned here and there on the net, for instance at http://ubuntuforums.org/showthread?t=1221196&amp;page=2This is why I was asking you about &lt;code&gt;CPDIR&lt;/code&gt; and &lt;code&gt;FWDIR&lt;/code&gt;.Reading your article, I understand it&#039;s been working right out of the box, but it doesn&#039;t for many...BTW, what is your java distro (Sun/Oracle ?) and version ? The reason why I&#039;m asking is the mention at https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;solutionid=sk36681#5 : All Linux OSs require Oracle JRE to install.Thanks for your help !</description> <content:encoded><![CDATA[<p>Thanks Kev, for the reply.</p><p>I did try the 3 scripts, for the same result, unfortunately.</p><p>The <code>-g</code> switch turns debugging on, and a <code>snx.elg</code> file is filled with different kind of informations.<br /> At a certain point, it says :</p><pre class="brush: plain; title: ; notranslate">
CkpRegDir: Environment variable CPDIR is not set.
GenerateGlobalEntry: Unable to get registry path
</pre><p>This missing <code>CPDIR</code> variable is mentionned here and there on the net, for instance at <a href="http://ubuntuforums.org/showthread?t=1221196&#038;page=2" rel="nofollow">http://ubuntuforums.org/showthread?t=1221196&#038;page=2</a></p><p>This is why I was asking you about <code>CPDIR</code> and <code>FWDIR</code>.</p><p>Reading your article, I understand it&#8217;s been working right out of the box, but it doesn&#8217;t for many&#8230;</p><p>BTW, what is your java distro (Sun/Oracle ?) and version ? The reason why I&#8217;m asking is the mention at <a href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&#038;solutionid=sk36681#5" rel="nofollow">https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&#038;solutionid=sk36681#5</a> :<br /> All Linux OSs require Oracle JRE to install.</p><p>Thanks for your help !</p> ]]></content:encoded> </item> <item><title>Comment on Auto-advance WordPress&#8217; TwentyEleven showcase slides by Auto slide for Twenty Eleven Featured Posts Slider</title><link>http://kevin.deldycke.com/2011/12/auto-advance-wordpress-twentyeleven-showcase-slides/comment-page-1/#comment-10663</link> <dc:creator>Auto slide for Twenty Eleven Featured Posts Slider</dc:creator> <pubDate>Mon, 07 May 2012 02:57:25 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4227#comment-10663</guid> <description>[...] article by the famous Lorelle that referred to a light but elegant solution writen by Kevin Deldycke.  This short piece of code uses (and extends) the code that is already used by the theme and can  [...]</description> <content:encoded><![CDATA[<p>[...] article by the famous Lorelle that referred to a light but elegant solution writen by Kevin Deldycke.  This short piece of code uses (and extends) the code that is already used by the theme and can  [...]</p> ]]></content:encoded> </item> <item><title>Comment on Check Point&#8217;s SNX client on Ubuntu 11.04 by Kev</title><link>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/comment-page-1/#comment-10662</link> <dc:creator>Kev</dc:creator> <pubDate>Sun, 06 May 2012 18:29:39 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4713#comment-10662</guid> <description>@manu: after decompressing the &lt;code&gt;.tar.gz&lt;/code&gt; file downloaded from the Check Point website, the script I ran was &lt;code&gt;snx_install_linux30.sh&lt;/code&gt;. The &lt;code&gt;snx_install.sh&lt;/code&gt; is an exact copy of the latter: [code lang=&quot;shell&quot;] $ tar xvzf ./SNX_for_VPN1_Win7.tgz (...) $ md5sum * 5e1ec2eb18dc42f5217a67b50799052d  cashell_ver.txt 381dd25826c43f97e3f36308368fa8e6  cpextender.msi a705310db23ba28115eb13949b9eb63d  CShell.cab da237199d2e6fbfc0d1b73af9417e461  CShell.jar a6472bb9ed86849b6a29d2c6d52ff64b  extender.cab 1ed18a7c9c02e1c2517c59305d0a0c2a  slim_ver.txt 97456b093c7f8bebaaae2492b8c36a8d  SNX4LINUX30.jar 2d02ad5819dcd4e9678dce58a33f1ce6  SNX4LINUX.jar c8b79a1e2896ef72ff17759dd67bdffd  SNX4TIGER.jar 7d4bc06526a0ec13287417e58ffe9d65  SNX.cab fcd3d5925eb4dc2a01c8e10e30eb58ab  SNX_for_VPN1_Win7.tgz 99ac347c5e53126b0df2ac00fbba1c4c  snx_install_linux22.sh 5061fdf75b0c760adb2cb8b4a274aba1  snx_install_linux30.sh e43492296fdd577bc2650785c254a0b5  snx_install_osx.sh 5061fdf75b0c760adb2cb8b4a274aba1  snx_install.sh 8ad9dc1b11be2c2d2974616566eae7f2  SNX.jar [/code]As for the &lt;code&gt;CPDIR&lt;/code&gt; and &lt;code&gt;FWDIR&lt;/code&gt; variables, I have absolutely no idea what you&#039;re talking about ! :)</description> <content:encoded><![CDATA[<p>@manu: after decompressing the <code>.tar.gz</code> file downloaded from the Check Point website, the script I ran was <code>snx_install_linux30.sh</code>. The <code>snx_install.sh</code> is an exact copy of the latter:</p><pre class="brush: bash; title: ; notranslate">
$ tar xvzf ./SNX_for_VPN1_Win7.tgz
(...)
$ md5sum *
5e1ec2eb18dc42f5217a67b50799052d  cashell_ver.txt
381dd25826c43f97e3f36308368fa8e6  cpextender.msi
a705310db23ba28115eb13949b9eb63d  CShell.cab
da237199d2e6fbfc0d1b73af9417e461  CShell.jar
a6472bb9ed86849b6a29d2c6d52ff64b  extender.cab
1ed18a7c9c02e1c2517c59305d0a0c2a  slim_ver.txt
97456b093c7f8bebaaae2492b8c36a8d  SNX4LINUX30.jar
2d02ad5819dcd4e9678dce58a33f1ce6  SNX4LINUX.jar
c8b79a1e2896ef72ff17759dd67bdffd  SNX4TIGER.jar
7d4bc06526a0ec13287417e58ffe9d65  SNX.cab
fcd3d5925eb4dc2a01c8e10e30eb58ab  SNX_for_VPN1_Win7.tgz
99ac347c5e53126b0df2ac00fbba1c4c  snx_install_linux22.sh
5061fdf75b0c760adb2cb8b4a274aba1  snx_install_linux30.sh
e43492296fdd577bc2650785c254a0b5  snx_install_osx.sh
5061fdf75b0c760adb2cb8b4a274aba1  snx_install.sh
8ad9dc1b11be2c2d2974616566eae7f2  SNX.jar
</pre><p>As for the <code>CPDIR</code> and <code>FWDIR</code> variables, I have absolutely no idea what you&#8217;re talking about ! <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>Comment on Check Point&#8217;s SNX client on Ubuntu 11.04 by manu</title><link>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/comment-page-1/#comment-10659</link> <dc:creator>manu</dc:creator> <pubDate>Sun, 06 May 2012 11:26:42 +0000</pubDate> <guid isPermaLink="false">http://kevin.deldycke.com/?p=4713#comment-10659</guid> <description>Well, this sounds quite easy the way you explain it, but on my side I still get a &lt;code&gt;SNX: Connection aborted.&lt;/code&gt; after a while, and I just can&#039;t connect to the VPN the way I do under XP. :oI would add that the installation needs to be sudoed, since files are created on &lt;code&gt;/etc/snx&lt;/code&gt;, etc. So, after : [code lang=&quot;shell&quot;] chmod +x snx_install*.sh [/code] run : [code lang=&quot;shell&quot;] sudo ./snx_install.sh [/code]I didn&#039;t understand why there are other &lt;code&gt;Linux22&lt;/code&gt; or &lt;code&gt;30&lt;/code&gt; shell scripts. No documentation found in the zip nor on the Check Point site...BTW, do you have a &lt;code&gt;CPDIR&lt;/code&gt; variable initialised ? And, in this case, what is its value ? Same for a &lt;code&gt;FWDIR&lt;/code&gt; ?Thank you Kevin.</description> <content:encoded><![CDATA[<p>Well, this sounds quite easy the way you explain it, but on my side I still get a <code>SNX: Connection aborted.</code> after a while, and I just can&#8217;t connect to the VPN the way I do under XP. <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /></p><p>I would add that the installation needs to be sudoed, since files are created on <code>/etc/snx</code>, etc.<br /> So, after :</p><pre class="brush: bash; title: ; notranslate">
chmod +x snx_install*.sh
</pre><p>run :</p><pre class="brush: bash; title: ; notranslate">
sudo ./snx_install.sh
</pre><p>I didn&#8217;t understand why there are other <code>Linux22</code> or <code>30</code> shell scripts. No documentation found in the zip nor on the Check Point site&#8230;</p><p>BTW, do you have a <code>CPDIR</code> variable initialised ? And, in this case, what is its value ?<br /> Same for a <code>FWDIR</code> ?</p><p>Thank you Kevin.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 3/24 queries in 1.497 seconds using apc
Object Caching 593/607 objects using apc

Served from: kevin.deldycke.com @ 2012-05-21 04:20:21 -->
