<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux T&#38;T &#187; Kernel</title>
	<atom:link href="http://linux.wxs.ro/category/kernel/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.wxs.ro</link>
	<description>WladyX’s collection of linux tips&#38;tricks</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:42:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>how to set the kernel parameters in hpux</title>
		<link>http://linux.wxs.ro/2010/03/10/how-to-set-the-kernel-parameters-in-hpux/</link>
		<comments>http://linux.wxs.ro/2010/03/10/how-to-set-the-kernel-parameters-in-hpux/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 06:08:17 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[Kernel]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=653</guid>
		<description><![CDATA[E.g.: /usr/sbin/kctune -h -B vps_ceiling=64 see also]]></description>
			<content:encoded><![CDATA[<p>E.g.:</p>
<p><code>/usr/sbin/kctune -h -B vps_ceiling=64</code></p>
</p>
<p><a href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1268208361995+28353475&#038;threadId=1345968">see also</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/03/10/how-to-set-the-kernel-parameters-in-hpux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nf_conntrack: CT 0: table full, dropping packet</title>
		<link>http://linux.wxs.ro/2009/10/14/nf_conntrack-ct-0-table-full-dropping-packet/</link>
		<comments>http://linux.wxs.ro/2009/10/14/nf_conntrack-ct-0-table-full-dropping-packet/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 06:46:16 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/10/14/nf_conntrack-ct-0-table-full-dropping-packet/</guid>
		<description><![CDATA[echo 200000 &#62; /proc/sys/net/netfilter/nf_conntrack_max or net.netfilter.nf_conntrack_max = 200000 in /etc/sysctl.conf http://forum.openvz.org/index.php?t=msg&#38;goto=36218&#38;]]></description>
			<content:encoded><![CDATA[<p>echo 200000 &gt; /proc/sys/net/netfilter/nf_conntrack_max</p>
<p>or net.netfilter.nf_conntrack_max = 200000 in /etc/sysctl.conf</p>
<p><a href="http://forum.openvz.org/index.php?t=msg&#038;goto=36218&#038;" target="_self">http://forum.openvz.org/index.php?t=msg&amp;goto=36218&amp;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/10/14/nf_conntrack-ct-0-table-full-dropping-packet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove older ubuntu kernels</title>
		<link>http://linux.wxs.ro/2009/10/08/remove-older-ubuntu-kernels/</link>
		<comments>http://linux.wxs.ro/2009/10/08/remove-older-ubuntu-kernels/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 13:53:12 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/10/08/remove-older-ubuntu-kernels/</guid>
		<description><![CDATA[solution 1: aptitude search linux- &#124; grep ^i sudo apt-get purge '.*-2.6.24-16-*' solution 2: test: dpkg -l linux-* &#124; awk '/^ii/{ print $2}' &#124; grep -v -e `uname -r &#124; cut -f1,2 -d"-"` &#124; grep -e [0-9] &#124; xargs sudo apt-get --dry-run remove run: dpkg -l linux-* &#124; awk '/^ii/{ print $2}' &#124; grep -v [...]]]></description>
			<content:encoded><![CDATA[<p>solution 1:</p>
<p><code>aptitude search linux- | grep ^i<br />
sudo apt-get purge '.*-2.6.24-16-*'</code></p>
<p>solution 2:</p>
<div>test: <code>dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e  `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get  --dry-run remove</code></div>
<div>run:  <code>dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e  `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge</code></div>
<p><a href="http://it.dennyhalim.com/2008/06/remove-old-ubuntu-kernel.html">DoIT &#8211; Denny on IT: remove old ubuntu kernel</a> <a href="http://tuxtweaks.com/2010/10/remove-old-kernels-in-ubuntu-with-one-command/">solution2</a></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=a17324ee-a7e2-855d-b1d6-70c1974e84ee" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/10/08/remove-older-ubuntu-kernels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disk partitioning and power failures</title>
		<link>http://linux.wxs.ro/2008/12/09/disk-partitioning-and-power-failures/</link>
		<comments>http://linux.wxs.ro/2008/12/09/disk-partitioning-and-power-failures/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 11:54:27 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Kernel]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/12/09/disk-partitioning-and-power-failures/</guid>
		<description><![CDATA[http://www.cgsecurity.org/wiki/TestDisk GParted forum / [SOLVED]Power failure during partition resize also:http://www.hiren.info/pages/bootcd]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cgsecurity.org/wiki/TestDisk">http://www.cgsecurity.org/wiki/TestDisk</a></p>
<p><a href="http://gparted-forum.surf4.info/viewtopic.php?pid=4151#p4151">GParted forum / [SOLVED]Power failure during partition resize</a></p>
<p>also:<br /><a href="http://www.hiren.info/pages/bootcd"><br />http://www.hiren.info/pages/bootcd</a><br />
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/12/09/disk-partitioning-and-power-failures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel config</title>
		<link>http://linux.wxs.ro/2008/05/08/kernel-config/</link>
		<comments>http://linux.wxs.ro/2008/05/08/kernel-config/#comments</comments>
		<pubDate>Thu, 08 May 2008 18:14:02 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Kernel]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/05/08/kernel-config/</guid>
		<description><![CDATA[gentoo config (old)]]></description>
			<content:encoded><![CDATA[<p><a href="http://linux.wxs.ro/wp-content/uploads/2008/05/configwxs" title="configwxs">gentoo config (old)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/05/08/kernel-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

