<?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>Libre Things &#187; Karmic</title>
	<atom:link href="http://positon.org/tag/karmic/feed" rel="self" type="application/rss+xml" />
	<link>http://positon.org</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2016 20:01:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>[Ubuntu Karmic] Disable USplash</title>
		<link>http://positon.org/ubuntu-karmic-disable-usplash</link>
		<comments>http://positon.org/ubuntu-karmic-disable-usplash#comments</comments>
		<pubDate>Sun, 10 Jan 2010 22:39:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[USplash]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=83</guid>
		<description><![CDATA[When Ubuntu starts, the USplash screen hides you the Linux boot and commands. If you&#8217;re a geek spirit, you&#8217;ll prefer those &#8220;cabalistic writings&#8221;. Here is how to disable USplash without removing the usplash and usplash-theme-ubuntu packages (because package ubuntu-desktop depends on them). Disable USplash, then rebuild initramfs: sudo vi /usr/share/initramfs-tools/conf-hooks.d/usplash USPLASH=n sudo update-initramfs -u Links: [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>When Ubuntu starts, the <a href="https://launchpad.net/usplash">USplash</a> screen hides you the Linux boot and commands. If you&#8217;re a geek spirit, you&#8217;ll prefer those &#8220;cabalistic writings&#8221;. Here is how to disable <a href="https://launchpad.net/usplash">USplash</a> without removing the <em>usplash</em> and <em>usplash-theme-ubuntu</em> packages (because package <em>ubuntu-desktop</em> depends on them).</p>
<p><img src="/wp-content/uploads/dotclearold/usplash_karmic.png" alt="usplash_karmic.png" style="display:block; margin:0 auto;" title="usplash_karmic.png, janv. 2010" /></p>
<p>Disable <a href="https://launchpad.net/usplash">USplash</a>, then rebuild <a href="http://en.wikipedia.org/wiki/Initramfs">initramfs</a>:</p>
<pre>
sudo vi /usr/share/initramfs-tools/conf-hooks.d/usplash
USPLASH=n
sudo update-initramfs -u
</pre>
<p><ins>Links</ins>:</p>
<ul>
<li><a href="https://wiki.ubuntu.com/Initramfs" title="https://wiki.ubuntu.com/Initramfs">https://wiki.ubuntu.com/Initramfs</a></li>
<li><a href="http://en.wikipedia.org/wiki/Initramfs" title="http://en.wikipedia.org/wiki/Initramfs">http://en.wikipedia.org/wiki/Initramfs</a></li>
</ul>
<p><ins>See also</ins>:</p>
<ul>
<li><a href="/ubuntu-karmic-disable-xsplash">[Ubuntu Karmic] Disable XSplash</a></li>
<li><a href="/display-ubuntu-boot-commands">Display Ubuntu boot commands</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/ubuntu-karmic-disable-usplash/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>[Ubuntu Karmic] Disable XSplash</title>
		<link>http://positon.org/ubuntu-karmic-disable-xsplash</link>
		<comments>http://positon.org/ubuntu-karmic-disable-xsplash#comments</comments>
		<pubDate>Sun, 10 Jan 2010 21:45:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[XSplash]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=82</guid>
		<description><![CDATA[XSplash is new in Ubuntu Karmic. If you don&#8217;t like this ugly screen like me, here is how to disable it. The dpkg -l &#124; grep xsplash command tells you that two package are responsible for this horrible screen: xsplash and ubuntu-xsplash-artwork. To remove them, you also have to remove the ubuntu-desktop package. That is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="https://launchpad.net/xsplash">XSplash</a> is new in Ubuntu Karmic. If you don&#8217;t like this ugly screen like me, here is how to disable it.</p>
<p><img src="/wp-content/uploads/dotclearold/xsplash_karmic.png" alt="xsplash_karmic.png" style="display:block; margin:0 auto;" title="xsplash_karmic.png, janv. 2010" /></p>
<p>The <code>dpkg -l | grep xsplash</code> command tells you that two package are responsible for this horrible screen: <em>xsplash</em> and <em>ubuntu-xsplash-artwork</em>. To remove them, you also have to remove the <em>ubuntu-desktop</em> package. That is not recommended if you don&#8217;t want to miss something in the next Ubuntu upgrade.</p>
<p>Here it is:</p>
<pre>
sudo rm /etc/dbus-1/system.d/xsplash.conf
sudo touch /etc/dbus-1/system.d/xsplash.conf
</pre>
<p>We remove the file and create an empty one. Why ? Because if we just delete the file it will be created back again during the next update. If you create an empty file in place, the next update will ask you what to do with the file.</p>
<p><em>Et voila</em>, restart and enjoy the &#8220;visual peace&#8221;.</p>
<p><ins>Link</ins>:</p>
<ul>
<li><a href="https://wiki.ubuntu.com/Artwork/Incoming/Karmic/Boot/Demo">Thing origin&#8217;s</a></li>
</ul>
<p><ins>See also</ins>:</p>
<ul>
<li><a href="/ubuntu-karmic-disable-usplash">[Ubuntu Karmic] Disable USplash</a></li>
<li><a href="/display-ubuntu-boot-commands">Display Ubuntu boot commands</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/ubuntu-karmic-disable-xsplash/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Thinkpad fingerprint reader under Ubuntu Karmic</title>
		<link>http://positon.org/thinkpad-fingerprint-reader-under-ubuntu-karmic</link>
		<comments>http://positon.org/thinkpad-fingerprint-reader-under-ubuntu-karmic#comments</comments>
		<pubDate>Sun, 03 Jan 2010 20:28:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fingerprint]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[ThinkFinger]]></category>
		<category><![CDATA[Thinkpad]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=79</guid>
		<description><![CDATA[Here is how to configure easily your Thinkpad fingerprint reader under Ubuntu Karmic, using ThinkFinger. Install the thinkfinger-tools (for acquiring/verifying) and libpam-thinkfinger (for PAM integration): sudo aptitude install thinkfinger-tools libpam-thinkfinger Then you can test acquisition/verification. As a user, issue the commands: tf-tool --acquire # swipe 3 times your finger tf-tool --verify # swipe your finger, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Here is how to configure easily your Thinkpad fingerprint reader under Ubuntu Karmic, using <a href="http://thinkfinger.sourceforge.net/">ThinkFinger</a>.</p>
<p>Install the <strong>thinkfinger-tools</strong> (for acquiring/verifying) and <strong>libpam-thinkfinger</strong> (for <a href="http://fr.wikipedia.org/wiki/Pluggable_Authentication_Modules">PAM</a> integration):</p>
<pre>
sudo aptitude install thinkfinger-tools libpam-thinkfinger
</pre>
<p>Then you can test acquisition/verification. As a user, issue the commands:</p>
<pre>
tf-tool --acquire
# swipe 3 times your finger
tf-tool --verify
# swipe your finger, then another finger...
</pre>
<p>Note: tf-tools should work without being root if the user belongs to the <strong>plugdev</strong> group.</p>
<p>Then plug the reader to <a href="http://fr.wikipedia.org/wiki/Pluggable_Authentication_Modules">PAM</a> as explained in <code>/usr/share/doc/libpam-thinkfinger/README.Debian</code>:</p>
<pre>
sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable
</pre>
<p>Now restart your system and try swiping your finger in place of typing the password. A &#8220;Password or swipe finger:&#8221; prompt displays to authenticate you at <a href="http://fr.wikipedia.org/wiki/GNOME_Display_Manager">GDM</a> login and when you type &#8220;sudo&#8221;.</p>
<p><ins>Notes</ins>:</p>
<ul>
<li>Test several programs in the <strong>Administration</strong> menu. &#8220;swipe finger&#8221; is not always showed but should work though.</li>
<li>To my knowing, it doesn&#8217;t work when locking screen (gnome-screensaver).</li>
</ul>
<p><ins>References</ins> :</p>
<ul>
<li><a href="http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader_with_ThinkFinger" title="http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader_with_ThinkFinger">http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader_with_ThinkFinger</a></li>
<li><a href="http://thinkfinger.sourceforge.net/" title="http://thinkfinger.sourceforge.net/">http://thinkfinger.sourceforge.net/</a></li>
<li><a href="http://doc.ubuntu-fr.org/thinkfinger" title="http://doc.ubuntu-fr.org/thinkfinger">http://doc.ubuntu-fr.org/thinkfinger</a></li>
<li><a href="https://wiki.ubuntu.com/ThinkFinger" title="https://wiki.ubuntu.com/ThinkFinger">https://wiki.ubuntu.com/ThinkFinger</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/thinkpad-fingerprint-reader-under-ubuntu-karmic/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Display Ubuntu boot commands</title>
		<link>http://positon.org/display-ubuntu-boot-commands</link>
		<comments>http://positon.org/display-ubuntu-boot-commands#comments</comments>
		<pubDate>Mon, 14 Dec 2009 00:00:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=77</guid>
		<description><![CDATA[By default, Ubuntu starts with splash screen in quiet mode without displaying startup actions. Before Ubuntu Karmic (legacy Grub), you have to edit /boot/grub/menu.lst to remove the quiet words. Since Ubuntu Karmic (new Grub): sudo vi /etc/default/grub # remove &#34;quiet&#34; sudo update-grub Link: http://doc.ubuntu-fr.org/grub See also: [Ubuntu Karmic] Disable XSplash [Ubuntu Karmic] Disable USplash]]></description>
				<content:encoded><![CDATA[<p>By default, Ubuntu starts with splash screen in quiet mode without displaying startup actions.</p>
<p>Before Ubuntu Karmic (legacy <a href="http://fr.wikipedia.org/wiki/GRand_Unified_Bootloader">Grub</a>), you have to edit <code>/boot/grub/menu.lst</code> to remove the <code>quiet</code> words.</p>
<p>Since Ubuntu Karmic (new <a href="http://fr.wikipedia.org/wiki/GRand_Unified_Bootloader">Grub</a>):</p>
<pre>
sudo vi /etc/default/grub
# remove &quot;quiet&quot;
sudo update-grub
</pre>
<p><ins>Link</ins>:</p>
<ul>
<li><a href="http://doc.ubuntu-fr.org/grub" title="http://doc.ubuntu-fr.org/grub">http://doc.ubuntu-fr.org/grub</a></li>
</ul>
<p><ins>See also</ins>:</p>
<ul>
<li><a href="/ubuntu-karmic-disable-xsplash">[Ubuntu Karmic] Disable XSplash</a></li>
<li><a href="/ubuntu-karmic-disable-usplash">[Ubuntu Karmic] Disable USplash</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/display-ubuntu-boot-commands/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>[Ubuntu Karmic] Autostart Empathy</title>
		<link>http://positon.org/ubuntu-karmic-autostart-empathy</link>
		<comments>http://positon.org/ubuntu-karmic-autostart-empathy#comments</comments>
		<pubDate>Sun, 13 Dec 2009 23:53:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Empathy]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=76</guid>
		<description><![CDATA[To start Empathy automatically at Ubuntu Karmic startup : sudo cp /usr/share/applications/empathy.desktop /etc/xdg/autostart/ This automatically adds a new entry in Gnome startup applications. Sources : http://demmer.ipax.at/blog/ubuntu-autostart-for-empathy-im-client/ https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/322314]]></description>
				<content:encoded><![CDATA[<p>To start Empathy automatically at Ubuntu Karmic startup :</p>
<pre>
sudo cp /usr/share/applications/empathy.desktop /etc/xdg/autostart/
</pre>
<p>This automatically adds a new entry in Gnome startup applications.</p>
<p><ins>Sources</ins> :</p>
<ul>
<li><a href="http://demmer.ipax.at/blog/ubuntu-autostart-for-empathy-im-client/" title="http://demmer.ipax.at/blog/ubuntu-autostart-for-empathy-im-client/">http://demmer.ipax.at/blog/ubuntu-autostart-for-empathy-im-client/</a></li>
<li><a href="https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/322314" title="https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/322314">https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/322314</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/ubuntu-karmic-autostart-empathy/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>USwSusp under Ubuntu Karmic</title>
		<link>http://positon.org/uswsusp-under-ubuntu-karmic</link>
		<comments>http://positon.org/uswsusp-under-ubuntu-karmic#comments</comments>
		<pubDate>Wed, 02 Dec 2009 20:53:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hibernation]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[uswsusp]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=69</guid>
		<description><![CDATA[Userspace Software Suspend is an alternative to the default hibernation method in the Linux kernel. It adds several interesting features like compression, encryption&#8230; Compression allows for hibernation with a smaller Swap partition. It also decreases the wake up time of your system! Here is how to install USwSusp on Ubuntu Karmic. Should also work with [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Userspace Software Suspend</strong> is an alternative to the default hibernation method in the Linux kernel. It adds several interesting features like compression, encryption&#8230; Compression allows for hibernation with a smaller <a href="http://en.wikipedia.org/wiki/Swap_space#Linux">Swap</a> partition. It also decreases the wake up time of your system!</p>
<p>Here is how to install <strong>USwSusp</strong> on Ubuntu Karmic. Should also work with a recent Debian.</p>
<p>Install the <strong>uswsusp</strong> package:</p>
<pre>
aptitude install uswsusp
</pre>
<p>You can now hibernate with the <code>s2disk</code> command as root.</p>
<p>To hibernate from Ubuntu menu or by key shortcut, then change the following line in the <code>/etc/pm/config.d/00sleep_module</code> file:</p>
<pre>
SLEEP_MODULE=uswsusp
</pre>
<p>And test your hibernation!!</p>
<p><ins>Links</ins>:</p>
<ul>
<li><a href="https://lists.ubuntu.com/archives/karmic-changes/2009-April/000258.html" title="https://lists.ubuntu.com/archives/karmic-changes/2009-April/000258.html">https://lists.ubuntu.com/archives/karmic-changes/2009-April/000258.html</a></li>
<li><a href="http://suspend.sourceforge.net/" title="http://suspend.sourceforge.net/">http://suspend.sourceforge.net/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/uswsusp-under-ubuntu-karmic/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
