<?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; rt73usb</title>
	<atom:link href="http://linuxbidouille.com/tag/rt73usb/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbidouille.com</link>
	<description>Ubuntu 12.04</description>
	<lastBuildDate>Tue, 08 May 2012 08:56:57 +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://s2.wp.com/i/buttonw-com.png</url>
		<title>Linux Bidouille &#187; rt73usb</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&#038;blog=3592449&#038;post=176&#038;subd=nicolasboucher&#038;ref=&#038;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&#038;blog=3592449&#038;post=176&#038;subd=nicolasboucher&#038;ref=&#038;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>Mandriva 2009 rc1 : déconnection wifi rt73usb</title>
		<link>http://linuxbidouille.com/2008/09/20/mandriva-2009-rc1-kde-41-deconnection-du-wifi-rt73usb/</link>
		<comments>http://linuxbidouille.com/2008/09/20/mandriva-2009-rc1-kde-41-deconnection-du-wifi-rt73usb/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 21:06:04 +0000</pubDate>
		<dc:creator>Linux Bidouille</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[déconnection]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Mandriva 2009]]></category>
		<category><![CDATA[ralink]]></category>
		<category><![CDATA[rt73usb]]></category>
		<category><![CDATA[Wifi]]></category>

		<guid isPermaLink="false">http://nicolasboucher.wordpress.com/?p=95</guid>
		<description><![CDATA[Après 15 jours sous Mandriva 2009 rc1, j&#8217;ai noté beaucoup de point positif, en terme de performance, stabilité et d&#8217;intégration graphique. C&#8217;est un cru qui promet. J&#8217;ai néanmoins deux problèmes que j&#8217;espère voir résolu dans la version finale : Le lancement de Compiz automatiquement avec les bonnes décoration de fenêtre (aujourd&#8217;hui je ne sais pas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&#038;blog=3592449&#038;post=95&#038;subd=nicolasboucher&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Après 15 jours sous Mandriva 2009 rc1, j&#8217;ai noté beaucoup de point positif, en terme de performance, stabilité et d&#8217;intégration graphique. C&#8217;est un cru qui promet.</p>
<p style="text-align:justify;">J&#8217;ai néanmoins deux problèmes que j&#8217;espère voir résolu dans la version finale :</p>
<ul style="text-align:justify;">
<li>Le lancement de Compiz automatiquement avec les bonnes décoration de fenêtre (aujourd&#8217;hui je ne sais pas me passer de $ kde4-window-decorator &#8211;replace).</li>
<li>Une déconnection intempestive de mon wifi après plusieurs heures de connection. La carte est une Ralink et le driver utilisé est le rt73usb.</li>
</ul>
<p style="text-align:justify;">Dans les logs sous /var/log/ j&#8217;ai :</p>
<pre style="text-align:justify;">*Sep 20 20:10:04 localhost kernel: phy0 -&gt; rt2x00queue_write_tx_frame: Error - Arrived at non-free entry in the non-full queue 2.</pre>
<pre style="text-align:justify;">*Sep 20 20:10:04 localhost kernel: Please file bug report to <a href="http://rt2x00.serialmonkey.com/">http://rt2x00.serialmonkey.com</a>.</pre>
<p style="text-align:justify;">J&#8217;ai ouvert un bug dans Mandriva bugzilla, en espérant que ce ne soit rien (kernel à priori ou driver de Ralink) qui empêche un correctif dans la version finale.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicolasboucher.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicolasboucher.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicolasboucher.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbidouille.com&#038;blog=3592449&#038;post=95&#038;subd=nicolasboucher&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxbidouille.com/2008/09/20/mandriva-2009-rc1-kde-41-deconnection-du-wifi-rt73usb/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>
	</item>
	</channel>
</rss>
