<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Linux Bidouille &#187; Intrepid</title>
	<atom:link href="http://linuxbidouille.com/tag/intrepid/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbidouille.com</link>
	<description>OpenSUSE 11.3</description>
	<lastBuildDate>Sun, 05 Sep 2010 09:32:48 +0000</lastBuildDate>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='linuxbidouille.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/61f59440ccfb4f0adb0f0a0574e8e2ee?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Linux Bidouille &#187; Intrepid</title>
		<link>http://linuxbidouille.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://linuxbidouille.com/osd.xml" title="Linux Bidouille" />
	<atom:link rel='hub' href='http://linuxbidouille.com/?pushpress=hub'/>
		<item>
		<title>Wifi RT73 / RT73usb</title>
		<link>http://linuxbidouille.com/2008/10/25/wifi-rt73-rt73usb/</link>
		<comments>http://linuxbidouille.com/2008/10/25/wifi-rt73-rt73usb/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 09:34:50 +0000</pubDate>
		<dc:creator>Linux Bidouille</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[ralink]]></category>
		<category><![CDATA[rt73]]></category>
		<category><![CDATA[rt73usb]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wifi]]></category>

		<guid isPermaLink="false">http://nicolasboucher.wordpress.com/?p=176</guid>
		<description><![CDATA[Le module RT73USB utilisé par défaut sur les distributions linux pour gérer les cartes Ralink fonctionne mal :  il génère une déconnection du wifi après quelques temps d&#8217;utilisation. Adieu les Skype, FTP, ou Emule, car la durée avant la déconnection est proportionnelle à la quantité de bytes échangés. Pour contourner ce problème pour ce bug [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&amp;blog=3592449&amp;post=176&amp;subd=nicolasboucher&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Le module RT73USB utilisé par défaut sur les distributions linux pour gérer les cartes Ralink fonctionne mal :  il génère une déconnection du wifi après quelques temps d&#8217;utilisation.</p>
<p style="text-align:justify;">Adieu les Skype, FTP, ou Emule, car la durée avant la déconnection est proportionnelle à la quantité de bytes échangés.</p>
<p style="text-align:justify;">Pour contourner ce problème pour ce bug (pour lequel j&#8217;ai ouvert un incident pour Mandriva, et participer à un autre sur <a href="https://bugs.launchpad.net/ubuntu/+bug/283759">Ubuntu</a>), le seul moyen identifié est de blacklister RT73USB et d&#8217;installer en lieu et place RT73 de serialmonkey.</p>
<p style="text-align:justify;">Le tuto est ci-dessous, et avec le RT73 la connexion est rapide et très stable.</p>
<p style="text-align:justify;">Seul bémol, le RT73 n&#8217;est pas géré par le network-manger de Gnome, et donc il faut définir le wifi en mode console.</p>
<p style="text-align:justify;">Avantage, la connection démarre automatiquement au début de chaque session.</p>
<p style="text-align:justify;">Effctivement avec la gestion sécurité d&#8217;Ubuntu via les trousseaux de clef, le network-manager exige pour le RT73usb une identification à chaque nouvelle session pour démarrer le wifi.</p>
<h4><strong>Code:</strong></h4>
<pre>sudo apt-get update
sudo apt-get install build-essential linux-headers-$(uname -r)
cd ~
mkdir ~/rt73
cd ~/rt73
wget <a href="http://rt2x00.serialmonkey.com/rt73-cvs-daily.tar.gz" rel="nofollow">http://rt2x00.serialmonkey.com/rt73-cvs-daily.tar.gz</a>
tar -zxvf rt73-cvs-daily.tar.gz
cd rt73-cvs*/Module
echo 'blacklist rt73usb' | sudo tee -a /etc/modprobe.d/blacklist
echo 'blacklist rt2500usb' | sudo tee -a /etc/modprobe.d/blacklist
echo 'rt73' | sudo tee -a /etc/modules
make
sudo ifconfig wlan0 down
sudo modprobe -r rt73usb
sudo modprobe -r rt2500usb
sudo make install
sudo mkdir /lib/modules/$(uname -r)/extra sudo
cp rt73.ko /lib/modules/$(uname -r)/extra/rt73.ko
sudo depmod -ae
sudo modprobe rt73
sudo ifconfig wlan0 up</pre>
<h4><strong>Code:</strong></h4>
<pre style="margin-bottom:.5cm;">sudo gedit /etc/network/interfaces   #remplacer gedit par kate si tu es sous kubuntu</pre>
<h4><strong>Code:</strong></h4>
<pre>auto lo
iface lo inet loopback</pre>
<pre>auto wlan0
iface wlan0 inet dhcp
wireless-essid le_essid_de_la_box    #à compléter
wireless-key La_clé_en_hexa    #à compléter</pre>
<p>Pour un cryptage WPAPSK TKIP</p>
<h4><strong>Code:</strong></h4>
<pre>auto wlan0
iface wlan0 inet dhcp
pre-up iwconfig wlan0 essid "mon ssid"
pre-up iwpriv wlan0 set AuthMode=WPAPSK
pre-up iwpriv wlan0 set EncrypType=TKIP
pre-up iwpriv wlan0 set WPAPSK="Ma_cle_WPA"</pre>
<p>Puis on redémarre ou on relance le réseau</p>
<h4><strong>Code:</strong></h4>
<pre>sudo ifdown wlan0
sudo ifup wlan0</pre><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicolasboucher.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicolasboucher.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicolasboucher.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&amp;blog=3592449&amp;post=176&amp;subd=nicolasboucher&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxbidouille.com/2008/10/25/wifi-rt73-rt73usb/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1d06668f7217d1799d18f3f9dd8be7f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nicolas Boucher</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 8.10 Intrepid bêta 1</title>
		<link>http://linuxbidouille.com/2008/10/17/ubuntu-810-intrepid-beta-1/</link>
		<comments>http://linuxbidouille.com/2008/10/17/ubuntu-810-intrepid-beta-1/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 18:38:19 +0000</pubDate>
		<dc:creator>Linux Bidouille</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicolasboucher.wordpress.com/?p=160</guid>
		<description><![CDATA[Après quelques semaines d&#8217;utilisation de Mandriva 2009, j&#8217;ai pu constater que le niveau des versions du cycle de release étaient de relativement bonne facture. Hélàs la maturité de KDE4 même en version 4.1.2 n&#8217;est pas encore à la hauteur et dans un environnement de production, encore trop de fonctionnalité basique sont KO. C&#8217;est pourquoi je [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&amp;blog=3592449&amp;post=160&amp;subd=nicolasboucher&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Après quelques semaines d&#8217;utilisation de Mandriva 2009, j&#8217;ai pu constater que le niveau des versions du cycle de release étaient de relativement bonne facture.</p>
<p style="text-align:justify;">Hélàs la maturité de KDE4 même en version 4.1.2 n&#8217;est pas encore à la hauteur et dans un environnement de production, encore trop de fonctionnalité basique sont KO.</p>
<p style="text-align:justify;">C&#8217;est pourquoi je reviens vers Ubuntu sur lequel j&#8217;étais pendant 2 ans, qui a un style Gnome certes plus basique, mais qui est très fiable, works out of the box, dont les mises à niveau sont éprouvées et qui met peut-être un  peu plus la gome sur la fiabilité des développements.</p>
<p style="text-align:justify;">Ci-dessous une capture d&#8217;écran. Au fait je suis fan de la Laguna 3 Coupé enfin une voiture qui a un style impeccable et qui fait rêver !</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://nicolasboucher.files.wordpress.com/2008/10/ubuntu.jpeg"><img class="alignnone size-medium wp-image-161" title="ubuntu" src="http://nicolasboucher.files.wordpress.com/2008/10/ubuntu.jpeg?w=300&#038;h=240" alt="" width="300" height="240" /></a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicolasboucher.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicolasboucher.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicolasboucher.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&amp;blog=3592449&amp;post=160&amp;subd=nicolasboucher&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxbidouille.com/2008/10/17/ubuntu-810-intrepid-beta-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1d06668f7217d1799d18f3f9dd8be7f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nicolas Boucher</media:title>
		</media:content>

		<media:content url="http://nicolasboucher.files.wordpress.com/2008/10/ubuntu.jpeg?w=300" medium="image">
			<media:title type="html">ubuntu</media:title>
		</media:content>
	</item>
	</channel>
</rss>