<?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>Tue, 15 Mar 2011 16:54:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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>ESX / VM Linux : libérer de l’espace disque (thin provisining)</title>
		<link>http://feedproxy.google.com/~r/6log/~3/jKQCK2D77-8/</link>
		<comments>http://www.microkwen.com/2011/03/15/esx-vm-linux-liberer-de-lespace-disque-thin-provisining/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 16:54:26 +0000</pubDate>
		<dc:creator>skanx</dc:creator>
				<category><![CDATA[French]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.microkwen.com/?p=263</guid>
		<description><![CDATA[Je viens de faire quelques tests, et il est possible de récupérer de l’espace disque quand on supprime des fichiers sur une VM Linux dont le disque est en thin provisioning. Bref, je vois deux solutions : - Si on peut utiliser storage vMotion, et qu’on a deux datastore, super, on va pouvoir le faire [...]]]></description>
			<content:encoded><![CDATA[<p>Je viens de faire quelques tests, et il est possible de récupérer de l’espace disque quand on supprime des fichiers sur une VM Linux dont le disque est en thin provisioning.</p>
<p>Bref, je vois deux solutions :<br />
-	Si on peut utiliser storage vMotion, et qu’on a deux datastore, super, on va pouvoir le faire online !<br />
-	Si on n’a pas la licence qui va bien pour vmotion, on doit le faire offline…</p>
<p>L’idée générale, c’est de créer un gros fichier rempli de zéros, de la taille que l’on veut gagner, que vmware va reconnaître lors de la migration : il va remplacer les zéros contigus par du vide. Ensuite, on migre le disque d’un datastore à un autre (important, sinon ça ne fait rien), on sélectionne thin provisioning pour le format du disque, et hop on gagne de la place. Reste ensuite à re-migrer le disque vers son datastore d’origine.<br />
Evidemment, lors de la création du gros fichier rempli de zéros, on va occuper encore plus de place sur le datastore, c’est donc à prévoir…</p>
<p>Un petit exemple :<br />
J’ai un vmdk thin, avec 20 Go réellement occupés par des fichiers sur 100 Go disponibles. Par le passé, j’ai rempli mon disque, donc le vmdk va occuper en réalité environ 100 Go sur le vmfs. Quand j’ai voulu supprimer ces fichiers, évidemment j’ai gagné de la place à l’intérieur de la VM, mais le vmdk occupe toujours ses 100 Go…<br />
Je regarde mon espace disque avec df -h ; je constate qu’il me reste 80 Go de libre sur mon système de fichiers. Attention, si il y a plusieurs partitions, il faudra peut-être créer des fichier « zero » un peu partout, mais en général c’est à faire là où se trouvent les datas…<br />
Je vais donc créer un gros fichier de 75 Go environ (histoire de pas saturer le serveur en prod…), rempli de zéros, et le supprimer.<br />
<code># dd if=/dev/zero of= bigZeroedFile bs=1M count=75000<br />
# sync<br />
# rm bigZeroedFile</code><br />
Ensuite, sous vcenter, je migre ma VM en la changeant de datastore (offline, ou online si on est riche !). Je constate que j’ai libéré plein de place \o/. Ensuite je la re-migre vers le datastore d’origine.<br />
Pfiou…</p>
<p>Autre possibilité, si on ne craint pas de saturer le disque (à ne pas faire sur un Zimbra !), on peut tout simplement créer un fichier qui va occuper tout l’espace libre, en remplaçant la commande dd par un cat, qui s’arrêtera lorsque le disque sera plein.<br />
<code># cat /dev/zero > bigZeroedFile<br />
# sync<br />
# rm bigZeroedFile</code><br />
Cette méthode a l’avantage de libérer tout l’espace disque lors de la migration, mais si le système tente d’écrire un fichier de travail pendant ce temps là, on risque l’explosion… La méthode dd permet de conserver une marge de manœuvre.<br />
J’ai aussi vu qu’il existait un outil appelé zerofree, qui a le même fonctionnement que sdelete sous Windows, mais il faut l’utiliser sur un système de fichiers en lecture seule, ce qui complique encore pas mal les choses…</p>
<p>Et si on n’a qu’un seul datastore ?!<br />
Et bien apparemment, on peut utiliser cette commande, guest arrêté, pour duplique le disque :<br />
<code>vmkfstools -i test_thin_linux.vmdk test_thin_linux_thinned.vmdk -d thin</code><br />
Mais chez moi, ça ne marche pas… le disque ne rétrécit pas… </p>
<p>Je suis d’ailleurs surpris : apparemment, c’est tout aussi galère à faire sous Windows : l’option « shrink » dans les vmtools n’apparaît pas quand le disque virtuel est en thin provisioning (c’est à se demander à quoi elle sert… J’ai vérifié de mon côté, je ne peux pas shrinker un disque virtuel sous Windows quand le disque est en fomat thin. Par contre, quand il est en format thick, j’ai l’option, mais je ne vois pas trop à quoi elle sert, du coup…).<br />
Peut-être que shrinker un disque thick, ça sert à faire des backups plus lights ?<br />
Sous windows, on me souffle qu’il faut faire la même manip, mais avec sdelete -c à la place de dd ?!</p>
<img src="http://feeds.feedburner.com/~r/6log/~4/jKQCK2D77-8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.microkwen.com/2011/03/15/esx-vm-linux-liberer-de-lespace-disque-thin-provisining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.microkwen.com/2011/03/15/esx-vm-linux-liberer-de-lespace-disque-thin-provisining/</feedburner:origLink></item>
		<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[# set the language to English, to avoid translation problems with ifconfig export LANG=C # 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><br />
# set the language to English, to avoid translation problems with ifconfig<br />
export LANG=C<br />
# get IP address of eth0 network interface<br />
ifconfig eth0 | awk '/inet addr/ {split ($2,A,":"); print A[2]}'<br />
</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 [...]]]></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 [...]]]></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>3</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 [...]]]></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 [...]]]></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 [...]]]></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>
	</channel>
</rss><!-- Dynamic page generated in 0.770 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-04-11 00:40:03 --><!-- Compression = gzip -->

