<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>To a free world</title>
	
	<link>http://monespaceperso.org/blog-en</link>
	<description>Nearer every day!</description>
	<lastBuildDate>Wed, 13 Jan 2010 12:03:40 +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/ToAFreeWorld" /><feedburner:info uri="toafreeworld" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Upgrade Alsa (1.0.22.1) on Ubuntu Karmic Koala 9.10</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/viLvvYTZu08/</link>
		<comments>http://monespaceperso.org/blog-en/2009/12/17/upgrade-alsa-1-0-22-on-ubuntu-karmic-koala-9-10/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 22:29:23 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[alsa 1.0.22]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=255</guid>
		<description />
			<content:encoded><![CDATA[<table style="height: 140px;" border="0" width="501" align="center">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-186" title="alsa" src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/alsa.jpg" alt="alsa" width="131" height="130" /></td>
<td>Ubuntu Karmic Koala 9.10 is coming by default with the version 1.0.20 of Alsa so I decided to upgrade to the last version wich is 1.0.22.1.</td>
</tr>
</tbody>
</table>
<p><strong><span style="text-decoration: underline;">What is Alsa (Advanced Linux Sound Architecture) ?</span></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture" target="_blank">Wikipedia</a>, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound cards. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware, and graceful handling of multiple sound devices in a system, goals which it has largely met.</p>
<p><strong><span style="text-decoration: underline;">Installation :</span></strong></p>
<p>To do this, we must begin by determining our version of alsa as follows :<br />
<span id="more-255"></span><br />
<code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.20.</code></p>
<p>To avoid problems during the upgrade of Alsa-utils, we need to stop it with the following command :</p>
<p><code>sudo /etc/init.d/alsa-utils stop  </code></p>
<div id="result_box" style="text-align: left;" dir="ltr">We must then install the necessary tools to compile along with the kernel headers :</div>
<p><code>sudo apt-get -y install build-essential ncurses-dev gettext xmlto libasound2-dev<br />
sudo apt-get -y install linux-headers-`uname -r` libncursesw5-dev</code></p>
<p>Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :</p>
<p><code>cd ~<br />
rm -rf ~/alsa* ~/.pulse*<br />
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.22.1.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.22.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.22.tar.bz2</code></p>
<p>After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :</p>
<p><code>sudo rm -rf /usr/src/alsa<br />
sudo mkdir -p /usr/src/alsa<br />
cd /usr/src/alsa<br />
sudo cp ~/alsa* .</code></p>
<p>Unpack the 3 tar files :</p>
<p><code>sudo tar xjf alsa-driver*<br />
sudo tar xjf alsa-lib*<br />
sudo tar xjf alsa-utils*</code></p>
<p>We compile and install alsa-driver :</p>
<p><code>cd alsa-driver*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-lib :</p>
<p><code>cd ../alsa-lib*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-utils :</p>
<p><code>cd ../alsa-utils*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p><u>If like me, you got this error during the last &#8220;sudo ./configure&#8221; :</u></p>
<p><code>checking form.h presence... yes<br />
checking for form.h... yes<br />
checking for new_panel in -lpanelw... no<br />
configure: error: panelw library not found </code></p>
<p>You will need to add those symbolics links (<strong>only if you got the error</strong>) and restart the installation from the last &#8220;sudo ./configure&#8221; :<br />
<br /><code>sudo ln -s libpanelw.so.5 /usr/lib/libpanelw.so<br />
sudo ln -s libformw.so.5 /usr/lib/libformw.so<br />
sudo ln -s libmenuw.so.5 /usr/lib/libmenuw.so<br />
sudo ln -s libncursesw.so.5 /lib/libncursesw.so</code></p>
<p>Then, we remove the 3 tar files in our personal folder that are not anymore necessary :</p>
<p><code>rm -f ~/alsa-driver*<br />
rm -f ~/alsa-lib*<br />
rm -f ~/alsa-utils*</code></p>
<p>Then, just restart your computer and your alsa version should be 1.0.22.1!</p>
<p>You can verify that you have now indeed have this version of alsa :</p>
<p><code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.22.1.<br />
Compiled on Dec 29 2009 for kernel 2.6.31-16-generic (SMP).</code></p>
<p>Just to be sure everything is well configured, execute this command :</p>
<p><code>sudo alsaconf</code></p>
<p>and reboot again!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/viLvvYTZu08" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/12/17/upgrade-alsa-1-0-22-on-ubuntu-karmic-koala-9-10/feed/</wfw:commentRss>
		<slash:comments>67</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/12/17/upgrade-alsa-1-0-22-on-ubuntu-karmic-koala-9-10/</feedburner:origLink></item>
		<item>
		<title>Upgrade Alsa (1.0.21) on Ubuntu Karmic Koala 9.10</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/H8cwmz_ndc8/</link>
		<comments>http://monespaceperso.org/blog-en/2009/10/29/upgrade-alsa-1-0-21-on-ubuntu-karmic-koala-9-10/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 03:52:53 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[alsa 1.0.21]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=246</guid>
		<description><![CDATA[



Ubuntu Karmic Koala 9.10 is coming by default with the version 1.0.20 of Alsa so I decided to upgrade to the last version wich is 1.0.21.



What is Alsa (Advanced Linux Sound Architecture) ?
According to Wikipedia, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for [...]]]></description>
			<content:encoded><![CDATA[<table style="height: 140px;" border="0" width="501" align="center">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-186" title="alsa" src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/alsa.jpg" alt="alsa" width="131" height="130" /></td>
<td>Ubuntu Karmic Koala 9.10 is coming by default with the version 1.0.20 of Alsa so I decided to upgrade to the last version wich is 1.0.21.</td>
</tr>
</tbody>
</table>
<p><strong><span style="text-decoration: underline;">What is Alsa (Advanced Linux Sound Architecture) ?</span></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture" target="_blank">Wikipedia</a>, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound cards. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware, and graceful handling of multiple sound devices in a system, goals which it has largely met.</p>
<p><strong><span style="text-decoration: underline;">Installation :</span></strong></p>
<p>To do this, we must begin by determining our version of alsa as follows :<br />
<span id="more-246"></span><br />
<code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.20.</code></p>
<p>To avoid problems during the upgrade of Alsa-utils, we need to stop it with the following command :</p>
<p><code>sudo /etc/init.d/alsa-utils stop  </code></p>
<div id="result_box" style="text-align: left;" dir="ltr">We must then install the necessary tools to compile along with the kernel headers :</div>
<p><code>sudo apt-get -y install build-essential ncurses-dev gettext xmlto libasound2-dev<br />
sudo apt-get -y install linux-headers-`uname -r` libncursesw5-dev</code></p>
<p>Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :</p>
<p><code>cd ~<br />
rm -rf ~/alsa* ~/.pulse*<br />
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.21.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.21a.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.21.tar.bz2</code></p>
<p>After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :</p>
<p><code>sudo rm -rf /usr/src/alsa<br />
sudo mkdir -p /usr/src/alsa<br />
cd /usr/src/alsa<br />
sudo cp ~/alsa* .</code></p>
<p>Unpack the 3 tar files :</p>
<p><code>sudo tar xjf alsa-driver*<br />
sudo tar xjf alsa-lib*<br />
sudo tar xjf alsa-utils*</code></p>
<p>We compile and install alsa-driver :</p>
<p><code>cd alsa-driver*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-lib :</p>
<p><code>cd ../alsa-lib*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-utils :</p>
<p><code>cd ../alsa-utils*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p><u>If like me, you got this error during the last &#8220;sudo ./configure&#8221; :</u></p>
<p><code>checking form.h presence... yes<br />
checking for form.h... yes<br />
checking for new_panel in -lpanelw... no<br />
configure: error: panelw library not found </code></p>
<p>You will need to add those symbolics links (<strong>only if you got the error</strong>) and restart the installation from the last &#8220;sudo ./configure&#8221; :<br />
<br /><code>sudo ln -s libpanelw.so.5 /usr/lib/libpanelw.so<br />
sudo ln -s libformw.so.5 /usr/lib/libformw.so<br />
sudo ln -s libmenuw.so.5 /usr/lib/libmenuw.so<br />
sudo ln -s libncursesw.so.5 /lib/libncursesw.so</code></p>
<p>Then, we remove the 3 tar files in our personal folder that are not anymore necessary :</p>
<p><code>rm -f ~/alsa-driver*<br />
rm -f ~/alsa-lib*<br />
rm -f ~/alsa-utils*</code></p>
<p>Then, just restart your computer and your alsa version should be 1.0.21!</p>
<p>You can verify that you have now indeed have this version of alsa :</p>
<p><code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.21.<br />
Compiled on Oct 15 2009 for kernel 2.6.31-14-generic (SMP)</code></p>
<p>Just to be sure everything is well configured, execute this command :</p>
<p><code>sudo alsaconf</code></p>
<p>and reboot again!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/H8cwmz_ndc8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/10/29/upgrade-alsa-1-0-21-on-ubuntu-karmic-koala-9-10/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/10/29/upgrade-alsa-1-0-21-on-ubuntu-karmic-koala-9-10/</feedburner:origLink></item>
		<item>
		<title>Upgrade Alsa (1.0.21) on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/I-QwLWNyXnc/</link>
		<comments>http://monespaceperso.org/blog-en/2009/08/31/upgrade-alsa-1-0-21-on-ubuntu-jaunty-9-04/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 01:08:35 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alsa 1.0.21]]></category>
		<category><![CDATA[alsa]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=225</guid>
		<description><![CDATA[



Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last version wich is 1.0.21.



What is Alsa (Advanced Linux Sound Architecture) ?
According to Wikipedia, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound [...]]]></description>
			<content:encoded><![CDATA[<table style="height: 140px;" border="0" width="501" align="center">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-186" title="alsa" src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/alsa.jpg" alt="alsa" width="131" height="130" /></td>
<td>Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last version wich is 1.0.21.</td>
</tr>
</tbody>
</table>
<p><strong><span style="text-decoration: underline;">What is Alsa (Advanced Linux Sound Architecture) ?</span></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture" target="_blank">Wikipedia</a>, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound cards. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware, and graceful handling of multiple sound devices in a system, goals which it has largely met.</p>
<p><strong><span style="text-decoration: underline;">Installation :</span></strong></p>
<p>To do this, we must begin by determining our version of alsa as follows :<br />
<span id="more-225"></span><br />
<code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.</code></p>
<p>To avoid problems during the upgrade of Alsa-utils, we need to stop it with the following command :</p>
<p><code>sudo /etc/init.d/alsa-utils stop  </code></p>
<div id="result_box" style="text-align: left;" dir="ltr">We must then install the necessary tools to compile along with the kernel headers :</div>
<p><code>sudo apt-get -y install build-essential ncurses-dev gettext xmlto libasound2-dev<br />
sudo apt-get -y install linux-headers-`uname -r` libncursesw5-dev</code></p>
<p>Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :</p>
<p><code>cd ~<br />
rm -rf ~/alsa* ~/.pulse*<br />
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.21.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.21a.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.21.tar.bz2</code></p>
<p>After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :</p>
<p><code>sudo rm -rf /usr/src/alsa<br />
sudo mkdir -p /usr/src/alsa<br />
cd /usr/src/alsa<br />
sudo cp ~/alsa* .</code></p>
<p>Unpack the 3 tar files :</p>
<p><code>sudo tar xjf alsa-driver*<br />
sudo tar xjf alsa-lib*<br />
sudo tar xjf alsa-utils*</code></p>
<p>We compile and install alsa-driver :</p>
<p><code>cd alsa-driver*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-lib :</p>
<p><code>cd ../alsa-lib*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-utils :</p>
<p><code>cd ../alsa-utils*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p><u>If like me, you got this error during the last &#8220;sudo ./configure&#8221; :</u></p>
<p><code>checking form.h presence... yes<br />
checking for form.h... yes<br />
checking for new_panel in -lpanelw... no<br />
configure: error: panelw library not found </code></p>
<p>You will need to add those symbolics links (<strong>only if you got the error</strong>) and restart the installation from the last &#8220;sudo ./configure&#8221; :<br />
<br /><code>sudo ln -s libpanelw.so.5 /usr/lib/libpanelw.so<br />
sudo ln -s libformw.so.5 /usr/lib/libformw.so<br />
sudo ln -s libmenuw.so.5 /usr/lib/libmenuw.so<br />
sudo ln -s libncursesw.so.5 /lib/libncursesw.so</code></p>
<p>Then, we remove the 3 tar files in our personal folder that are not anymore necessary :</p>
<p><code>rm -f ~/alsa-driver*<br />
rm -f ~/alsa-lib*<br />
rm -f ~/alsa-utils*</code></p>
<p>Then, just restart your computer and your alsa version should be 1.0.21!</p>
<p>You can verify that you have now indeed have this version of alsa :</p>
<p><code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.21.<br />
Compiled on Aug 31 2009 for kernel 2.6.28-15-generic (SMP).</code></p>
<p>Just to be sure everything is well configured, execute this command :</p>
<p><code>sudo alsaconf</code></p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/I-QwLWNyXnc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/08/31/upgrade-alsa-1-0-21-on-ubuntu-jaunty-9-04/feed/</wfw:commentRss>
		<slash:comments>129</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/08/31/upgrade-alsa-1-0-21-on-ubuntu-jaunty-9-04/</feedburner:origLink></item>
		<item>
		<title>Upgrade Alsa (1.0.20) on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/Eh_d6-R6Umg/</link>
		<comments>http://monespaceperso.org/blog-en/2009/05/09/upgrade-alsa-1020-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Sat, 09 May 2009 15:30:56 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[alsa 1.0.20]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=219</guid>
		<description><![CDATA[



Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last verison wich is 1.0.20.



What is Alsa (Advanced Linux Sound Architecture) ?
According to Wikipedia, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound [...]]]></description>
			<content:encoded><![CDATA[<table style="height: 140px;" border="0" width="501" align="center">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-186" title="alsa" src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/alsa.jpg" alt="alsa" width="131" height="130" /></td>
<td>Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last verison wich is 1.0.20.</td>
</tr>
</tbody>
</table>
<p><strong><u>What is Alsa (Advanced Linux Sound Architecture) ?</u></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture" target="_blank">Wikipedia</a>, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound cards. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware, and graceful handling of multiple sound devices in a system, goals which it has largely met.</p>
<p><strong><u>Installation :</u></strong></p>
<p>To do this, we must begin by determining our version of alsa as follows :<br />
<span id="more-219"></span><br />
<code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.</code></p>
<p>To avoid problems during the upgrade of Alsa-utils, we need to stop it with the following command :</p>
<p><code>sudo /etc/init.d/alsa-utils stop  </code></p>
<div id="result_box" style="text-align: left;" dir="ltr">We must then install the necessary tools to compile along with the kernel headers :</div>
<p><code>sudo apt-get -y install build-essential ncurses-dev gettext xmlto libasound2-dev<br />
sudo apt-get -y install linux-headers-`uname -r` libncursesw5-dev</code></p>
<p>Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :</p>
<p><code>cd ~<br />
rm -rf ~/alsa* ~/.pulse*<br />
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.20.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.20.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.20.tar.bz2</code></p>
<p>After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :</p>
<p><code>sudo rm -rf /usr/src/alsa<br />
sudo mkdir -p /usr/src/alsa<br />
cd /usr/src/alsa<br />
sudo cp ~/alsa* .</code></p>
<p>Unpack the 3 tar files :</p>
<p><code>sudo tar xjf alsa-driver*<br />
sudo tar xjf alsa-lib*<br />
sudo tar xjf alsa-utils*</code></p>
<p>We compile and install alsa-driver :</p>
<p><code>cd alsa-driver*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-lib :</p>
<p><code>cd ../alsa-lib*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-utils :</p>
<p><code>cd ../alsa-utils*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>Then, we remove the 3 tar files in our personal folder that are not anymore necessary :</p>
<p><code>rm -f ~/alsa-driver*<br />
rm -f ~/alsa-lib*<br />
rm -f ~/alsa-utils*</code><br />
[ad#Adsense]</p>
<p>Then, just restart your computer and your alsa version should be 1.0.20!</p>
<p>You can verify that you have now indeed have this version of alsa :</p>
<p><code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.20.<br />
Compiled on May  9 2009 for kernel 2.6.28-11-generic (SMP).</code></p>
<p>Just to be sure everything is well configured, execute this command :</p>
<p><code>sudo alsaconf</code></p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/Eh_d6-R6Umg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/05/09/upgrade-alsa-1020-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>87</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/05/09/upgrade-alsa-1020-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>How to install Java on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/CPdoWBeij6g/</link>
		<comments>http://monespaceperso.org/blog-en/2009/05/05/how-to-install-java-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Tue, 05 May 2009 18:04:39 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[64bit]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=210</guid>
		<description><![CDATA[


Here&#8217;s how to install Java on Ubuntu Jaunty 9.04. This will allow Firefox to run Java applications. It also works for those who are under 64 bit Ubuntu.


[ad#Widgetbucks]
What is Java ?
According to Wikipedia, Java refers to a number of computer software products and specifications from Sun Microsystems that together provide a system for developing application [...]]]></description>
			<content:encoded><![CDATA[<table width="500" align="center">
<tr>
<td><img src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/java_logo1.jpg" alt="java_logo1" title="java_logo1" width="150" height="150" class="aligncenter size-full wp-image-212" /></td>
<td>Here&#8217;s how to install Java on Ubuntu Jaunty 9.04. This will allow Firefox to run Java applications. It also works for those who are under 64 bit Ubuntu.</td>
</tr>
</table>
<p>[ad#Widgetbucks]<br />
<strong><u>What is Java ?</u></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Sun_java" target="_blank">Wikipedia</a>, Java refers to a number of computer software products and specifications from Sun Microsystems that together provide a system for developing application software and deploying it in a cross-platform environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones on the low end, to enterprise servers and supercomputers on the high end.<br />
<span id="more-210"></span><br />
<strong><u>Installation</u></strong></p>
<p>Simply install the following packages :</p>
<p><code>sudo apt-get install sun-java6-jre sun-java6-plugin</code><br />
[ad#Adsense]<br />
Restart Firefox and Java should now work!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/CPdoWBeij6g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/05/05/how-to-install-java-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/05/05/how-to-install-java-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>How to install Flash 64-bit on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/NwnfrWi6YT8/</link>
		<comments>http://monespaceperso.org/blog-en/2009/05/01/how-to-install-flash-64-bit-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:36:36 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[64bit]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=200</guid>
		<description><![CDATA[


Flash is coming by default in Ubuntu Jaunty 9.04 repositories with the 32-bit version. Here is a small procedure to install the 64-bit version.


[ad#Widgetbucks]
What is Flash ?

According to Wikipedia : Adobe Flash (previously called Macromedia Flash) is a multimedia platform originally acquired by Macromedia and currently developed and distributed by Adobe Systems. Since its introduction [...]]]></description>
			<content:encoded><![CDATA[<table width="500" align="center">
<tr>
<td><img src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/flash_logo.jpg" alt="flash_logo" title="flash_logo" width="150" height="150" class="aligncenter size-full wp-image-201" /></td>
<td>Flash is coming by default in Ubuntu Jaunty 9.04 repositories with the 32-bit version. Here is a small procedure to install the 64-bit version.</td>
</tr>
</table>
<p>[ad#Widgetbucks]<br />
<strong><u>What is Flash ?</u></strong><br />
<br />
According to <a href="http://en.wikipedia.org/wiki/Adobe_flash" target="_blank">Wikipedia</a> : Adobe Flash (previously called Macromedia Flash) is a multimedia platform originally acquired by Macromedia and currently developed and distributed by Adobe Systems. Since its introduction in 1996, Flash has become a popular method for adding animation and interactivity to web pages; Flash is commonly used to create animation, advertisements, and various web page components, to integrate video into web pages, and more recently, to develop rich Internet applications. Web site like youtube or dailymotin use this technologie.<br />
<br />
<strong><u>Installation</u></strong></p>
<p>We must start by uninstalling the current version of Flash installed on your computer if necessary as follows :</p>
<p><code>sudo apt-get remove flashplugin-nonfree flashplugin-installer</code></p>
<p>Then, we download Flash directly from Adobe :</p>
<p><code>wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz</code></p>
<p>We then extract the archive and move the extracted file in the plugins directory of Firefox :<br />
<br />[ad#Adsense]<br />
<code>tar xvf libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz<br />
sudo mv libflashplayer.so /usr/lib/mozilla/plugins/</code></p>
<p>Now, just restart Firefox to take full advantage of Flash!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/NwnfrWi6YT8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/05/01/how-to-install-flash-64-bit-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/05/01/how-to-install-flash-64-bit-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>Upgrade Alsa (1.0.19) on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/hosU8HgjInI/</link>
		<comments>http://monespaceperso.org/blog-en/2009/05/01/upgrade-alsa-1019-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Fri, 01 May 2009 14:14:43 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[alsa 1.0.19]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=185</guid>
		<description><![CDATA[



Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last verison wich is 1.0.19. For the 1.0.20 version, go here!



[ad#Widgetbucks]
What is Alsa (Advanced Linux Sound Architecture) ?
According to Wikipedia, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) [...]]]></description>
			<content:encoded><![CDATA[<table style="height: 140px;" border="0" width="501" align="center">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-186" title="alsa" src="http://monespaceperso.org/blog-en/wp-content/uploads/2009/05/alsa.jpg" alt="alsa" width="131" height="130" /></td>
<td>Ubuntu Jaunty 9.04 is coming by default with the version 1.0.18rc3 of Alsa so I decided to upgrade to the last verison wich is 1.0.19. For the 1.0.20 version, go <a href="http://monespaceperso.org/blog-en/2009/05/09/upgrade-alsa-1020-on-ubuntu-jaunty-904/">here</a>!</td>
</tr>
</tbody>
</table>
<p>[ad#Widgetbucks]<br />
<br /><strong><u>What is Alsa (Advanced Linux Sound Architecture) ?</u></strong></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture" target="_blank">Wikipedia</a>, Alsa is a Linux kernel component intended to replace the original Open Sound System (OSS) for providing device drivers for sound cards. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware, and graceful handling of multiple sound devices in a system, goals which it has largely met.</p>
<p><strong><u>Installation :</u></strong></p>
<p>To do this, we must begin by determining our version of alsa as follows :<br />
<span id="more-185"></span><br />
<code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.</code></p>
<div id="result_box" style="text-align: left;" dir="ltr">We must then install the necessary tools to compile along with the kernel headers :</div>
<p><code>sudo apt-get -y install build-essential ncurses-dev gettext xmlto<br />
sudo apt-get -y install linux-headers-`uname -r`</code></p>
<p>Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :</p>
<p><code>cd ~<br />
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.19.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.19.tar.bz2<br />
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.19.tar.bz2</code></p>
<p>After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :</p>
<p><code>sudo mkdir -p /usr/src/alsa<br />
cd /usr/src/alsa<br />
sudo cp ~/alsa* .</code></p>
<p>Unpack the 3 tar files :</p>
<p><code>sudo tar xjf alsa-driver*<br />
sudo tar xjf alsa-lib*<br />
sudo tar xjf alsa-utils*</code></p>
<p>We compile and install alsa-driver :</p>
<p><code>cd alsa-driver*<br />
sudo ./configure --with-cards=hda-intel --with-kernel=/usr/src/linux-headers-$(uname -r)<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-lib :</p>
<p><code>cd ../alsa-lib*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>We compile and install alsa-utils :</p>
<p><code>cd ../alsa-utils*<br />
sudo ./configure<br />
sudo make<br />
sudo make install</code></p>
<p>Then, we remove the 3 tar files in our personal folder that are not anymore necessary :</p>
<p><code>rm -f ~/alsa-driver*<br />
rm -f ~/alsa-lib*<br />
rm -f ~/alsa-utils*</code><br />
[ad#Adsense]</p>
<p>Then, just restart your computer and your alsa version should be 1.0.19!</p>
<p>You can verify that you have now indeed have this version of alsa :</p>
<p><code>cat /proc/asound/version<br />
Advanced Linux Sound Architecture Driver Version 1.0.19.<br />
Compiled on May  1 2009 for kernel 2.6.28-11-generic (SMP).</code></p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/hosU8HgjInI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/05/01/upgrade-alsa-1019-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/05/01/upgrade-alsa-1019-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>Acer Aspire 6920 – Bass not working on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/WIpxTaK8M6w/</link>
		<comments>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-bass-not-working-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 14:44:30 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Acer Aspire 6920]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bass]]></category>
		<category><![CDATA[surround]]></category>
		<category><![CDATA[Acer6920Sound]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=177</guid>
		<description><![CDATA[Once your sound is working with  the method I described this morning, we must now correct the problem with the bass that isn&#8217;t working.
[ad#Widgetbucks]
First, we must download hda-verb:

wget ftp://ftp.suse.com/pub/people/tiwai/misc/hda-verb-0.3.tar.gz
Then, we have to extract the archive and compile hda-verb like this:
tar -xvmf hda-verb-0.3.tar.gz
cd hda-verb-0.3
make 
We copy the compiled file into the system directory:
 sudo cp [...]]]></description>
			<content:encoded><![CDATA[<p>Once your sound is working with <a href="http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-no-sound-on-ubuntu-jaunty-904/" target="_blank"> the method I described this morning</a>, we must now correct the problem with the bass that isn&#8217;t working.<br />
[ad#Widgetbucks]<br />
First, we must download hda-verb:<br />
<span id="more-177"></span><br />
<code>wget ftp://ftp.suse.com/pub/people/tiwai/misc/hda-verb-0.3.tar.gz</code></p>
<p>Then, we have to extract the archive and compile hda-verb like this:</p>
<p><code>tar -xvmf hda-verb-0.3.tar.gz<br />
cd hda-verb-0.3<br />
make </code></p>
<p>We copy the compiled file into the system directory:</p>
<p><code> sudo cp hda-verb /usr/local/bin </code><br />
[ad#Adsense]</p>
<p>To finish, we must edit the file &#8220;<strong>/etc/rc.local</strong>&#8220;. We need to add this &#8220;<strong>/usr/local/bin/hda-verb /dev/snd/hwC0D0 0&#215;15 SET_EAPD_BTLENABLE 2</strong>&#8221; on a new line just before the line that contains the word &#8220;<strong>exit</strong>&#8221; without the quotes. You can use gedit, kate or your favorite text editor like this:</p>
<p><code> gksudo gedit /etc/rc.local </code></p>
<p>or</p>
<p><code> kdesudo kate /etc/rc.local <!-- ode--></code></p>
<p>Just reboot and your bass should now work!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/WIpxTaK8M6w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-bass-not-working-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-bass-not-working-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>Acer Aspire 6920 – No sound on Ubuntu Jaunty 9.04</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/rRRws_SHgoQ/</link>
		<comments>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-no-sound-on-ubuntu-jaunty-904/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 14:02:58 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Acer Aspire 6920]]></category>
		<category><![CDATA[HDA Intel ACL889]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Acer6920Sound]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=162</guid>
		<description><![CDATA[Here’s one of the first problems I had during the installation of Ubuntu Jaunty 9.04 distribution on my acer aspire 6920 laptop. This laptop has a HDA Intel ACL889 sound card.
[ad#Widgetbucks]
The problem was that I had no sound. Here&#8217;s how to solve the problem :
We must add “options snd-hda-intel model=auto” without quotes at the end [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s one of the first problems I had during the installation of Ubuntu Jaunty 9.04 distribution on my acer aspire 6920 laptop. This laptop has a HDA Intel ACL889 sound card.</p>
<p>[ad#Widgetbucks]</p>
<p>The problem was that I had no sound. Here&#8217;s how to solve the problem :</p>
<p>We must add “<strong>options snd-hda-intel model=auto</strong>” without quotes at the end of this file “<strong>/etc/modprobe.d/alsa-base</strong>”. You can use gedit, kate or your favorite text editor like this :</p>
<p><code>gksudo gedit /etc/modprobe.d/alsa-base</code></p>
<p>or</p>
<p><code>kdesudo kate /etc/modprobe.d/alsa-base</code><br />
[ad#Adsense]</p>
<p>Then, just restart your computer and your sound should work!</p>
<p>To continue with the installation of the bass, just follow the method in <a href="http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-bass-not-working-on-ubuntu-jaunty-904/">this article</a>!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/rRRws_SHgoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-no-sound-on-ubuntu-jaunty-904/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/04/29/acer-aspire-6920-no-sound-on-ubuntu-jaunty-904/</feedburner:origLink></item>
		<item>
		<title>How to install Amarok 2 on Ubuntu 8.10</title>
		<link>http://feedproxy.google.com/~r/ToAFreeWorld/~3/kTohPYQLkEg/</link>
		<comments>http://monespaceperso.org/blog-en/2009/03/15/how-to-install-amarok-2-on-ubuntu-810/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 23:15:08 +0000</pubDate>
		<dc:creator>alpho2k</dc:creator>
				<category><![CDATA[Amarok]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://monespaceperso.org/blog-en/?p=119</guid>
		<description><![CDATA[



Ubuntu 8.10 is coming by default with Amarok 1.4.1 in the repository. I decided to install version 2. To do this, we need to install it from &#8220;deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu intrepid main&#8221; repository. This small tutorial will show you how to do it using graphical tools and using commands lines.



[ad#Widgetbucks]
What is amarok?
According to wikipedia,Amarok is a [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-119" title="logo_amarok2" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/logo_amarok2.jpeg" alt="logo_amarok2" width="250" /></td>
<td>Ubuntu 8.10 is coming by default with Amarok 1.4.1 in the repository. I decided to install version 2. To do this, we need to install it from &#8220;deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu intrepid main&#8221; repository. This small tutorial will show you how to do it using graphical tools and using commands lines.</td>
</tr>
</tbody>
</table>
<p>[ad#Widgetbucks]<br />
<span style="text-decoration: underline;"><strong>What is amarok?</strong></span></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Amarok_(software)" target="_blank">wikipedia</a>,<strong>Amarok</strong> is a <a title="Free software" href="http://en.wikipedia.org/wiki/Free_software" target="_blank">free software</a> music player for <a title="Linux" href="http://en.wikipedia.org/wiki/Linux" target="_blank">Linux</a> or other <a title="Unix-like" href="http://en.wikipedia.org/wiki/Unix-like" target="_blank">varieties of Unix</a>. It makes use of core components from the <a title="KDE" href="http://en.wikipedia.org/wiki/KDE" target="_blank">K Desktop Environment</a>, but is released independently of the central KDE release cycle.</p>
<p><span style="text-decoration: underline;"><strong>Here is a short video of the version 2 on youtube<br />
</strong></span></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/fz077hSsc3Q" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/fz077hSsc3Q" /></object></p>
<p><span style="text-decoration: underline;"><strong>Installation with graphical tools<br />
</strong></span></p>
<p>We need to begin by adding the repository. To do this, we have to go in &#8220;Software Sources&#8221; which is located in &#8220;System/Administration&#8221;.<br />
<span id="more-119"></span><br />
<img class="aligncenter size-full wp-image-127" title="etape1" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape1.jpg" alt="etape1" height="300" /></p>
<p>The system will ask you to enter your administrator password.</p>
<p><img class="aligncenter size-full wp-image-128" title="etape2" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape2.jpg" alt="etape2" width="300" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">Now, we need to go to &#8220;Third-Party Software&#8221;. Click &#8220;Add&#8221;, enter the following repository without quotes &#8220;deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu intrepid main&#8221; and press &#8220;Add Source&#8221;.</div>
<p><img class="aligncenter size-full wp-image-130" title="etape3" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape3.jpg" alt="etape3" width="300" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">
<div id="result_box" style="text-align: left;" dir="ltr">The system will  ask to update the repository list. Just click on &#8220;Reload&#8221;.</div>
</div>
<p><img class="aligncenter size-full wp-image-132" title="etape4" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape4.jpg" alt="etape4" width="300" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">We then proceed to the installation of amarok 2. To do this, go to &#8220;Synaptic Package Manager&#8221; which is in &#8220;System/Administration&#8221;.</div>
<p><img class="aligncenter size-full wp-image-133" title="etape5" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape5.jpg" alt="etape5" width="300" /></p>
<p>Search for a package called &#8220;amarok-kde4&#8243;, do a right click on it and choose &#8220;Mark for installation&#8221;.</p>
<p><img class="aligncenter size-full wp-image-134" title="etape6" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape6.jpg" alt="etape6" width="400" /></p>
<p>The system will show you that some packages are not authenticated, click on &#8220;Mark&#8221;.</p>
<p><img class="aligncenter size-full wp-image-135" title="etape7" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape7.jpg" alt="etape7" width="300" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">Then, click on &#8220;Apply&#8221; in synaptic to indicate that we have finished selecting packages to install.</div>
<p><img class="aligncenter size-full wp-image-136" title="etape8" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape8.jpg" alt="etape8" width="250" /></p>
<p>The system will ask for confirmation, click on &#8220;Apply&#8221;.</p>
<p><img class="aligncenter size-full wp-image-138" title="etape9" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape9.jpg" alt="etape9" width="300" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">The download and installation should then begin.</div>
<p><img class="aligncenter size-full wp-image-139" title="etape10" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape10.jpg" alt="etape10" width="250" /></p>
<div id="result_box" style="text-align: left;" dir="ltr">Once completed, amarok 2 is installed! It is found in the&#8221;Applications/Sound &amp; Video&#8221; menu.</div>
<p><img class="aligncenter size-full wp-image-140" title="etape11" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape11.jpg" alt="etape11" width="300" /><br />
[ad#Adsense]</p>
<p><span style="text-decoration: underline;"><strong>Installation with commands lines<br />
</strong></span></p>
<p>We need to add the repository “deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu intrepid main” without the quotes to the file “/etc/apt/sources.list”. You can use gedit, kate or your favorite text editor like this:</p>
<p><code>gksudo gedit /etc/apt/sources.list</code></p>
<p>or</p>
<p><code>kdesudo kate /etc/apt/sources.list</code></p>
<p>We update our repository list and proceed to the installation :</p>
<p><code>sudo apt-get update &amp;&amp; sudo apt-get install amarok-kde4</code></p>
<p>Once completed, amarok 2 is installed! It is found in the&#8221;Applications/Sound &amp; Video&#8221; menu.</p>
<p><img class="aligncenter size-full wp-image-140" title="etape11" src="http://monespaceperso.org/blog/wp-content/uploads/2009/03/etape11.jpg" alt="etape11" width="300" /></p>
<p>Have a good use of amarok 2!</p>
<img src="http://feeds.feedburner.com/~r/ToAFreeWorld/~4/kTohPYQLkEg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://monespaceperso.org/blog-en/2009/03/15/how-to-install-amarok-2-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://monespaceperso.org/blog-en/2009/03/15/how-to-install-amarok-2-on-ubuntu-810/</feedburner:origLink></item>
	</channel>
</rss>
