<?xml version="1.0" encoding="UTF-8"?>
<rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>6log</title>
	
	<link>http://www.microkwen.com</link>
	<description>~skanx</description>
	<lastBuildDate>Wed, 10 Mar 2010 14:09:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/6log" /><feedburner:info uri="6log" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><item>
		<title>Remove a deleted virtual disk LUN on a Linux system (MD3000i SAN array)</title>
		<link>http://feedproxy.google.com/~r/6log/~3/gEtZAgVKfEU/</link>
		<comments>http://www.microkwen.com/2009/10/22/remove-a-deleted-virtual-disk-lun-on-a-linux-system-md3000i-san-array/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 11:11:38 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=236</guid>
		<description><![CDATA[When you delete a Virtual Disk on a MD3000i array, that was previously used by a Linux system, the device is not removed from the system, and Linux will still try to access it (if you use LVM for example, you&#8217;ll see lots of errors while the system scans the disks to identify PVs). This [...]]]></description>
			<content:encoded><![CDATA[<p>When you <strong>delete a Virtual Disk</strong> on a <strong>MD3000i</strong> array, that was previously used by a <strong>Linux</strong> system, the device is not removed from the system, and Linux will still try to access it (if you use LVM for example, you&#8217;ll see lots of errors while the system scans the disks to identify PVs). This can be very inconvenient if you reassign a previously assigned <strong>LUN</strong>, as the system won&#8217;t detect the new parameters of the device.<br />
I did not find a command similar to <strong>hot_add</strong> (used to detect new devices) to automatically remove deleted disks.</p>
<p>By trial and error, though, I understood that you can delete a scsi device with this method:<br />
<code>echo "1" > /sys/class/scsi_device/<em>adapter</em>:<em>bus</em>:<em>target</em>:<em>lun</em>/device/delete</code></p>
<p>I also wrote a small script that will try and guess the paths to your devices, when you tell it the LUN number you just deleted on the SAN array :<br />
<a href='http://www.microkwen.com/wp-content/uploads/2009/10/md300i_delete_lun.txt'>md300i_delete_lun bash script</a><br />
<em>Warning</em>: this script comes with no guarantee and I won&#8217;t take any responsibility if you try to use it <img src='http://www.microkwen.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . I could just test it on two RHEL 5.3 systems, and I don&#8217;t know if it will work anywhere else. Since it can be a little bit dangerous, it won&#8217;t actually delete anything, just tell you what commands you could use to delete the devices. At your own risk. <img src='http://www.microkwen.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/6log/~4/gEtZAgVKfEU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2009/10/22/remove-a-deleted-virtual-disk-lun-on-a-linux-system-md3000i-san-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2009/10/22/remove-a-deleted-virtual-disk-lun-on-a-linux-system-md3000i-san-array/</feedburner:origLink></item>
		<item>
		<title>Get the ip address in a shell script</title>
		<link>http://feedproxy.google.com/~r/6log/~3/nRu8EuWxPsU/</link>
		<comments>http://www.microkwen.com/2009/10/16/get-the-ip-address-from-a-script/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 14:29:51 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=229</guid>
		<description><![CDATA[# get IP address of eth0 network interface
ifconfig eth0 &#124; awk '/inet addr/ {split ($2,A,":"); print A[2]}'
source
]]></description>
			<content:encoded><![CDATA[<p><code># get IP address of eth0 network interface<br />
ifconfig eth0 | awk '/inet addr/ {split ($2,A,":"); print A[2]}'</code></p>
<p><a href="http://snipplr.com/view/6154/get-just-the-ip-address-in-linux/">source</a></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/nRu8EuWxPsU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2009/10/16/get-the-ip-address-from-a-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2009/10/16/get-the-ip-address-from-a-script/</feedburner:origLink></item>
		<item>
		<title>dpkg-reconfigure locales on ubuntu</title>
		<link>http://feedproxy.google.com/~r/6log/~3/lD2GODsCr9k/</link>
		<comments>http://www.microkwen.com/2009/04/10/dpkg-reconfigures-locales-on-ubuntu/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 12:59:57 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=218</guid>
		<description><![CDATA[dpkg-reconfigure locales doesn&#8217;t seem ask what locales you want to enable anymore (ubuntu 8.10), whatever the priority of questions you set in debconf&#8230;
The locales to be generated are listed in this file : /var/lib/locales/supported.d/local
Just add your locales there, then do a dpkg-reconfigure locales, it should generate you new locales :
skanx@tipica:~$ cat /var/lib/locales/supported.d/local
en_US.UTF-8 UTF-8
fr_FR UTF-8
skanx@tipica:~$  [...]]]></description>
			<content:encoded><![CDATA[<p><code>dpkg-reconfigure locales</code> doesn&#8217;t seem ask what locales you want to enable anymore (ubuntu 8.10), whatever the priority of questions you set in debconf&#8230;</p>
<p>The locales to be generated are listed in this file : <code>/var/lib/locales/supported.d/local</code></p>
<p>Just add your locales there, then do a <code>dpkg-reconfigure locales</code>, it should generate you new locales :</p>
<blockquote><p>skanx@tipica:~$ cat /var/lib/locales/supported.d/local<br />
en_US.UTF-8 UTF-8<br />
fr_FR UTF-8</p></blockquote>
<blockquote><p>skanx@tipica:~$  sudo dpkg-reconfigure locales<br />
Generating locales&#8230;<br />
  en_US.UTF-8&#8230; up-to-date<br />
  fr_FR.UTF-8&#8230; done</p></blockquote>
<img src="http://feeds.feedburner.com/~r/6log/~4/lD2GODsCr9k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2009/04/10/dpkg-reconfigures-locales-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2009/04/10/dpkg-reconfigures-locales-on-ubuntu/</feedburner:origLink></item>
		<item>
		<title>atl2 bug on the eeepc: txs packet size do not coinsist with txd</title>
		<link>http://feedproxy.google.com/~r/6log/~3/RYrcv7kcJ3M/</link>
		<comments>http://www.microkwen.com/2009/02/18/atl2-bug-on-the-eeepc-txs-packet-size-do-not-coinsist-with-txd/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 15:57:54 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[eeepc]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=180</guid>
		<description><![CDATA[On my eeePC 700 running ubuntu 8.10 (kernel 2.6.27-11-server), I experienced constant network disconnections with the LAN card, and found these messages in the logs :
[ 1355.131236] eth0: txs packet size do not coinsist with txd txd_:0x000005ea, txs_:0x20000754!
[ 1355.131244] txd read ptr: 0x166c
[ 1355.131249] txs-behind:0x000105ea
[ 1355.131254] txs-before:0x000105ea
[ 1365.041754] atl2: eth0 NIC Link is Up&#60;100 Mbps [...]]]></description>
			<content:encoded><![CDATA[<p>On my eeePC 700 running ubuntu 8.10 (kernel 2.6.27-11-server), I experienced constant network disconnections with the LAN card, and found these messages in the logs :<br />
<code>[ 1355.131236] eth0: txs packet size do not coinsist with txd txd_:0x000005ea, txs_:0x20000754!<br />
[ 1355.131244] txd read ptr: 0x166c<br />
[ 1355.131249] txs-behind:0x000105ea<br />
[ 1355.131254] txs-before:0x000105ea<br />
[ 1365.041754] atl2: eth0 NIC Link is Up&lt;100 Mbps Full Duplex></code></p>
<p>I resolved the issue by installing a newer version of the atl2 module :</p>
<p>Get the lastest atl2 driver from: <a href="http://people.redhat.com/csnook/atl2/">http://people.redhat.com/csnook/atl2/</a><br />
Make sure you have the linux-header package corresponding to your kernel installed (package linux-headers-2.6.27-11-server in my case)</p>
<p>- Untar the driver source, compile with make<br />
- Backup the atl2 module that shipped with your kernel (/lib/modules/2.6.27-11-server/kernel/ubuntu/atl2/atl2.ko in my case)<br />
- Replace it with your new version<br />
- sudo depmod<br />
- reboot the computer or stop the network and reload the atl2 module</p>
<p>more info: <a href="https://bugs.launchpad.net/ubuntu/+source/linux-ubuntu-modules-2.6.24/+bug/147639">https://bugs.launchpad.net/ubuntu/+source/linux-ubuntu-modules-2.6.24/+bug/147639</a></p>
<p><strong>edit:</strong> http://people.redhat.com/csnook/atl2/ seems to be <strong>unavailable</strong>&#8230; I still have the driver source, but don&#8217;t know if I can post it here&#8230; If you need it, <strong>just ask and I&#8217;ll send it by e-mail</strong> <img src='http://www.microkwen.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/6log/~4/RYrcv7kcJ3M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2009/02/18/atl2-bug-on-the-eeepc-txs-packet-size-do-not-coinsist-with-txd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2009/02/18/atl2-bug-on-the-eeepc-txs-packet-size-do-not-coinsist-with-txd/</feedburner:origLink></item>
		<item>
		<title>Compile a debian kernel with make-kpkg</title>
		<link>http://feedproxy.google.com/~r/6log/~3/13JwmnD4uEY/</link>
		<comments>http://www.microkwen.com/2008/12/17/compile-a-debian-kernel-with-make-kpkg/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 21:09:44 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=29</guid>
		<description><![CDATA[The debian way (etch packages):
# apt-get install linux-source-2.6.18 kernel-package build-essential fakeroot libncurses5-dev
$ cd /usr/local/src
$ tar jxvf /usr/src/linux-source-2.6.18.tar.bz2
$ cp /boot/config-2.6.18-6-686 linux-source-2.6.18/.config
$ cd linux-source-2.6.18
$ make menuconfig
$ fakeroot make-kpkg --initrd clean
$ fakeroot make-kpkg --initrd kernel_image

Examples:
fakeroot make-kpkg --arch amd64 clean
fakeroot make-kpkg --arch amd64 --initrd --append-to-version=-skx.2008082001 kernel_image
]]></description>
			<content:encoded><![CDATA[<p>The debian way (etch packages):<br />
<code># apt-get install linux-source-2.6.18 kernel-package build-essential fakeroot libncurses5-dev<br />
$ cd /usr/local/src<br />
$ tar jxvf /usr/src/linux-source-2.6.18.tar.bz2<br />
$ cp /boot/config-2.6.18-6-686 linux-source-2.6.18/.config<br />
$ cd linux-source-2.6.18<br />
$ make menuconfig<br />
$ fakeroot make-kpkg --initrd clean<br />
$ fakeroot make-kpkg --initrd kernel_image<br />
</code></p>
<p>Examples:<br />
<code>fakeroot make-kpkg --arch amd64 clean</code><br />
<code>fakeroot make-kpkg --arch amd64 --initrd --append-to-version=-skx.2008082001 kernel_image</code></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/13JwmnD4uEY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/12/17/compile-a-debian-kernel-with-make-kpkg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/12/17/compile-a-debian-kernel-with-make-kpkg/</feedburner:origLink></item>
		<item>
		<title>Avez-vous pensé à adhérer à l’April ?</title>
		<link>http://feedproxy.google.com/~r/6log/~3/ebfRZpdwCho/</link>
		<comments>http://www.microkwen.com/2008/12/02/avez-vous-pense-a-adherer-a-lapril/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 19:50:48 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[april]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=183</guid>
		<description><![CDATA[
L&#8217;April a pour but la promotion et la défense des logiciels libres. Je connais l&#8217;existence de l&#8217;April depuis des années, mais pourtant je n&#8217;avais jamais pensé à y adhérer&#8230; voilà qui est fait, profitant de la piqûre de rappel administrée par la campagne d&#8217;adhésion qui a lieu actuellement : &#8220;Objectif 5000 adhérents&#8221;.
L&#8217;April défend nos idées, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.april.org/adherer"><img src='http://www.april.org/files/association/documents/bannieres/banniere_horizontale_soutien_fulltext_486x60.png' alt='Promouvoir et soutenir le logiciel libre'/></a></p>
<p>L&#8217;April a pour but la promotion et la défense des logiciels libres. Je connais l&#8217;existence de l&#8217;April depuis des années, mais pourtant je n&#8217;avais jamais pensé à y adhérer&#8230; voilà qui est fait, profitant de la piqûre de rappel administrée par la campagne d&#8217;adhésion qui a lieu actuellement : &#8220;Objectif 5000 adhérents&#8221;.</p>
<p>L&#8217;April défend nos idées, le montant de minimal de la cotisation est de 10 euros, et je pense qu&#8217;ils seront bien utilisés.</p>
<p><a href="http://www.april.org/adherer">J&#8217;adhère toutes affaires cessantes !</a></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/ebfRZpdwCho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/12/02/avez-vous-pense-a-adherer-a-lapril/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/12/02/avez-vous-pense-a-adherer-a-lapril/</feedburner:origLink></item>
		<item>
		<title>Jumpcut: MacOSX clipboard manager</title>
		<link>http://feedproxy.google.com/~r/6log/~3/PYOasFZYGQY/</link>
		<comments>http://www.microkwen.com/2008/11/14/jumpcut-macosx-clipboard-buffer/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 08:46:02 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=170</guid>
		<description><![CDATA[Jumpcut is another very useful menu bar application. This one keeps an history of the text you have copied or cut. You can access it later with a configurable hotkey, even if you&#8217;ve copied another text in between.
Jumpcut is open sourced under the MIT License.
http://jumpcut.sourceforge.net/
]]></description>
			<content:encoded><![CDATA[<p>Jumpcut is another very useful menu bar application. This one keeps an history of the text you have copied or cut. You can access it later with a configurable hotkey, even if you&#8217;ve copied another text in between.</p>
<p>Jumpcut is open sourced under the MIT License.</p>
<p><a href="http://jumpcut.sourceforge.net/">http://jumpcut.sourceforge.net/</a></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/PYOasFZYGQY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/11/14/jumpcut-macosx-clipboard-buffer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/11/14/jumpcut-macosx-clipboard-buffer/</feedburner:origLink></item>
		<item>
		<title>Caffeine: don’t let your Mac fall asleep</title>
		<link>http://feedproxy.google.com/~r/6log/~3/NrODH6sMyzs/</link>
		<comments>http://www.microkwen.com/2008/11/13/caffeine-dont-let-your-mac-fall-asleep/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 10:46:56 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=166</guid>
		<description><![CDATA[Caffeine is a cute little &#8220;menu bar&#8221; program that prevents your Mac from going to sleep when you don&#8217;t want it to, with just a click. No need to change all your screen saver and energy saver preferences any more!
Great when you&#8217;re using a media player or flash movie player that doen&#8217;t do it by [...]]]></description>
			<content:encoded><![CDATA[<p>Caffeine is a cute little &#8220;menu bar&#8221; program that prevents your Mac from going to sleep when you don&#8217;t want it to, with just a click. No need to change all your screen saver and energy saver preferences any more!</p>
<p>Great when you&#8217;re using a media player or flash movie player that doen&#8217;t do it by itself.</p>
<p><a href="http://lightheadsw.com/caffeine/">http://lightheadsw.com/caffeine/</a></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/NrODH6sMyzs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/11/13/caffeine-dont-let-your-mac-fall-asleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/11/13/caffeine-dont-let-your-mac-fall-asleep/</feedburner:origLink></item>
		<item>
		<title>Disable a Linux module</title>
		<link>http://feedproxy.google.com/~r/6log/~3/BscHUUPT9h8/</link>
		<comments>http://www.microkwen.com/2008/11/10/disable-a-linux-module/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 15:46:44 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=161</guid>
		<description><![CDATA[The RHEL / Centos way:
edit /etc/modprobe.conf, and add :
alias &#60;modulename&#62; off
The Debian way:
Create a file &#8216;/etc/modprobe.d/&#60;modulename&#62;&#8217; containing &#8216;blacklist &#60;modulename&#62;&#8217;.
Run &#8216;depmod -ae&#8217; as root
Recreate your initrd with &#8216;update-initramfs -u&#8217;
/!\ Read http://wiki.debian.org/KernelModuleBlacklisting, then do not use &#8216;/etc/modprobe.d/blacklist&#8217; and remove &#8216;/etc/modprobe.conf&#8217; as it supersedes anything in /etc/modprobe.d/*.
source : Debian wiki
The Tobi way:
edit /etc/modprobe.conf, and add :
install &#60;modulename&#62; /bin/true
inspiration: [...]]]></description>
			<content:encoded><![CDATA[<p>The RHEL / Centos way:<br />
edit /etc/modprobe.conf, and add :<br />
<code>alias &lt;modulename&gt; off</code></p>
<p>The Debian way:<br />
Create a file &#8216;/etc/modprobe.d/&lt;modulename&gt;&#8217; containing &#8216;blacklist &lt;modulename&gt;&#8217;.<br />
Run &#8216;depmod -ae&#8217; as root<br />
Recreate your initrd with &#8216;update-initramfs -u&#8217;<br />
/!\ Read <a href="http://wiki.debian.org/KernelModuleBlacklisting">http://wiki.debian.org/KernelModuleBlacklisting</a>, then do not use &#8216;/etc/modprobe.d/blacklist&#8217; and remove &#8216;/etc/modprobe.conf&#8217; as it supersedes anything in /etc/modprobe.d/*.<br />
source : <a href="http://wiki.debian.org/KernelModuleBlacklisting">Debian wiki</a></p>
<p>The Tobi way:<br />
edit /etc/modprobe.conf, and add :<br />
<code>install &lt;modulename&gt; /bin/true</code></p>
<p>inspiration: <a href="http://www.dotmana.com/index.php/?p=395">DotMana</a></p>
<img src="http://feeds.feedburner.com/~r/6log/~4/BscHUUPT9h8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/11/10/disable-a-linux-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/11/10/disable-a-linux-module/</feedburner:origLink></item>
		<item>
		<title>Dynamic MMap ran out of room</title>
		<link>http://feedproxy.google.com/~r/6log/~3/w11HuB5mutc/</link>
		<comments>http://www.microkwen.com/2008/10/13/dynamic-mmap-ran-out-of-room/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 16:06:50 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[Posteet]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=125</guid>
		<description><![CDATA[When running apt-get update with a lot of sources in your sources.list, you may encounter this error:
Reading package lists... Error!
E: Dynamic MMap ran out of room
Add this line APT::Cache-Limit "25165824"; to your /etc/apt/apt.conf, and run apt-get update again.
]]></description>
			<content:encoded><![CDATA[<p>When running <code>apt-get update</code> with a lot of sources in your sources.list, you may encounter this error:<br />
<code>Reading package lists... Error!<br />
E: Dynamic MMap ran out of room</code></p>
<p>Add this line <code>APT::Cache-Limit "25165824";</code> to your /etc/apt/apt.conf, and run apt-get update again.</p>
<img src="http://feeds.feedburner.com/~r/6log/~4/w11HuB5mutc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2008/10/13/dynamic-mmap-ran-out-of-room/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2008/10/13/dynamic-mmap-ran-out-of-room/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.284 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-24 20:27:27 --><!-- Compression = gzip -->
