<?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>crossedstreams.com &#187; wireless</title>
	<atom:link href="http://blog.crossedstreams.com/tag/wireless/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.crossedstreams.com</link>
	<description>Total protonic reversal!</description>
	<lastBuildDate>Sat, 21 Jan 2012 20:10:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Flickering Wireless LED in Ubuntu 8.10</title>
		<link>http://blog.crossedstreams.com/ubuntu/flickering-wireless-led-in-ubuntu-810-intrepid-ibex/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickering-wireless-led-in-ubuntu-810-intrepid-ibex</link>
		<comments>http://blog.crossedstreams.com/ubuntu/flickering-wireless-led-in-ubuntu-810-intrepid-ibex/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 11:47:13 +0000</pubDate>
		<dc:creator>Paul Brabban</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[flashing]]></category>
		<category><![CDATA[flickering]]></category>
		<category><![CDATA[led]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[suspend]]></category>
		<category><![CDATA[transmit]]></category>
		<category><![CDATA[wake]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://crossedstreams.com/wordpress/?p=12</guid>
		<description><![CDATA[A quick solution to that darned flashing wireless light in Ubuntu 8.10 &#8211; works on my Dell Vostro anyway. This solution didn&#8217;t work for me &#8211; I had to make a slight adjustment to the directories updated. It does give some background on how it works if you&#8217;re interested though. Save the following file as [...]]]></description>
			<content:encoded><![CDATA[<p>A quick solution to that darned flashing wireless light in Ubuntu 8.10 &#8211; works on my Dell Vostro anyway.</p>
<p><a href="http://blog.drinsama.de/erich/en/linux/2008052101-iwlwifi-blinking.html">This solution</a> didn&#8217;t work for me &#8211; I had to make a slight adjustment to the directories updated. It does give some background on how it works if you&#8217;re interested though.<br />
Save the following file as &#8220;/etc/network/if-up.d/iwl-no-blink&#8221; and make it executable for all.</p>
<pre class="prettyprint">
#!/bin/sh
if [ "$IFACE" = "wlan0" ]; then
  for dir in /sys/class/leds/iwl-phy*; do
    echo none &gt; $dir/trigger
  done
fi</pre>
<p>Now the wireless light is off when disconnected, blinks when I&#8217;m connecting, and is steady on when I&#8217;m connected.</p>
<p><strong>Updated, 23th March 09</strong><br />
&#8230;but it doesn&#8217;t work on resume from suspend. When my Vostro 1310 resumes from suspend, it&#8217;s back to the defaults. I fixed this behaviour by adding a script /etc/pm/sleep.d/00wireless, executable for all.</p>
<pre class="prettyprint">
#!/bin/sh
case "$1" in
        resume|thaw)
                /etc/network/if-up.d/iwl-no-blink
        ;;
        *)
        ;;
esac</pre>
<p><span id="more-12"></span><br />
<strong>Updated, thanks Richard</strong><br />
The easy way to make the script executable for all; you might be prompted for your password.</p>
<pre class="prettyprint">
sudo chmod u+x /etc/network/if-up.d/iwl-no-blink</pre>
<p>Meaning: Modify the file permissions on /etc/network/if-up.d/iwl-no-blink to add permission to execute for all users.<br />
Then you can check the permissions with:</p>
<pre class="prettyprint">
you@your-computer:~$ ls -lart /etc/network/if-up.d/iwl-no-blink
-rwxr-xr-x 1 root root 119 2008-11-02 11:36 /etc/network/if-up.d/iwl-no-blink</pre>
<p>The -rwxr-xr-<strong>x</strong> means that any user can execute the script.</p>
<div class="disclaimer">These are my thoughts and opinions and do not reflect
those of anyone else. Read the <a href="disclaimer">disclaimer</a> for more verbal
teflon.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.crossedstreams.com/ubuntu/flickering-wireless-led-in-ubuntu-810-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

