<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://www.stress-free.co.nz"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>stressfree - wireless</title>
 <link>https://www.stress-free.co.nz/tech/wireless</link>
 <description></description>
 <language>en</language>
<item>
 <title>Remote for Airport Express &amp; iTunes</title>
 <link>https://www.stress-free.co.nz/remote_for_airport_express_itunes</link>
 <description>
  &lt;div class=&quot;field-body&quot;&gt;
    &lt;p&gt;I stream music and podcasts from the computers in the office into kitchen using an &lt;a href=&quot;http://www.apple.com/airportexpress/&quot;&gt;Airport Express&lt;/a&gt; unit. Whilst the Airport Express units are little pricey they are very versitile, the only problem being they do not come with any remote which results in a lot of trips backwards and forwards to adjust the volume and what is playing. I finally got sick of this and ordered an &lt;a href=&quot;http://www.keyspan.com/products/usb/urm17a/&quot;&gt;Keyspan Express Remote&lt;/a&gt; from &lt;a href=&quot;http://www.totallymac.com/nz/&quot;&gt;TotallyMac.com&lt;/a&gt;. It turns out that the New Zealand office of TotallyMac.com is in Wellington and within a couple of hours of placing the order I had the remote in my hands (which was fantastic service).&lt;/p&gt; &lt;div class=&quot;centeredimage&quot;&gt; &lt;a href=&quot;/sites/default/files/u63/keyspan_remote_lg.jpg&quot;&gt;&lt;img src=&quot;/sites/default/files/u63/keyspan_remote_sm.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;293&quot; /&gt;&lt;/a&gt;&lt;br /&gt;The Keyspan remote setup in my kitchen with speakers in the background (click to enlarge)&lt;/div&gt;&lt;p&gt;Setting up the remote was a piece of cake as it plugs into the Airport Express via USB and sets itself up to work with iTunes automatically. The remote looks okay although it would have been much better if it had a more stylish look and feel similar to the Apple remote. However this is only a minor drawback considering the price and functionality delivered. If you own an Airport Express (or are thinking of getting one) I definitely recommend picking up one of these remotes in order to complete the experience.&lt;br /&gt;&lt;!--break--&gt;&lt;br /&gt;&lt;/p&gt;  &lt;/div&gt;

&lt;ul class=&quot;field-taxonomy-vocabulary-1&quot;&gt;

      &lt;li&gt;
      &lt;a href=&quot;/tech/osx&quot;&gt;osx&lt;/a&gt;    &lt;/li&gt;
      &lt;li&gt;
      &lt;a href=&quot;/tech/wireless&quot;&gt;wireless&lt;/a&gt;    &lt;/li&gt;
  
&lt;/ul&gt;
</description>
 <pubDate>Wed, 13 Dec 2006 11:45:24 +0000</pubDate>
 <dc:creator>David</dc:creator>
 <guid isPermaLink="false">363 at https://www.stress-free.co.nz</guid>
</item>
<item>
 <title>Enabling T3G on Suse Linux Enterprise Desktop</title>
 <link>https://www.stress-free.co.nz/enabling_t3g_on_suse_linux_enterprise_desktop</link>
 <description>
  &lt;div class=&quot;field-body&quot;&gt;
    &lt;div class=&quot;image&quot;&gt;&lt;img src=&quot;/sites/default/files/u63/t3g.jpg&quot; alt=&quot;&quot; width=&quot;104&quot; height=&quot;105&quot; /&gt;&lt;/div&gt;&lt;p&gt;Mike Clements has been having some fun with &lt;a href=&quot;http://www.telecom.co.nz/mobilebroadband&quot;&gt;Telecom&#039;s T3G mobile broadband&lt;/a&gt; service and getting it to work with Linux (namely Suse Linux Enterprise Desktop). He was using the Sierra Aircard 580 and information on how to get it working on Linux can be found on &lt;a href=&quot;http://debiana.net/aircard580.html&quot;&gt;debiana.net&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;For those who do not want spend time reading about the basics or learn by trial and error here is a step by step guide from Mike...&lt;/p&gt;&lt;!--break--&gt;&lt;p&gt;The Sierra Aircard 580 (used by Telecom NZ for T3G) is a 				PCMCIA card that is made up of a USB hub with multiple devices 				internally. The important device we want on the cards USB chain 				is the 3G modem, device ID 1199:0112.&lt;/p&gt; 				&lt;p&gt;Times change and I&#039;ve been getting feed back of some people 				not having hotplug available so I&#039;ve written a udev option. The 				udev option is is preferable in many ways.&lt;/p&gt;&lt;h3&gt;To configure the card in udev do the following before 				plugging the card into the laptop  				&lt;/h3&gt; 				&lt;p&gt;1. Open a terminal as super user (root)&lt;/p&gt; 				&lt;p&gt;2. Create a file named 10-local.rules in 				/etc/udev/rules.d/containing the following (append to it if it 				already exists):&lt;/p&gt; 				&lt;p class=&quot;codesnippet&quot;&gt;SUBSYSTEM==&quot;usb&quot;, ACTION==&quot;add&quot;, 				ENV{PRODUCT}==&quot;1199/112/*&quot;, RUN+=&quot;/sbin/modprobe 				usbserial vendor=0x1199 product=0x0112&quot;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; All of the above should be on one line.&lt;br /&gt;&lt;/p&gt;&lt;h3&gt;Or for traditional hotplug do the following before plugging the card into the laptop &lt;/h3&gt;&lt;p&gt;1. Create a file named aircard580 in /etc/hotplug/usb containing the following:&lt;/p&gt;&lt;p class=&quot;codesnippet&quot;&gt;#!/bin/sh&lt;br /&gt;# Run everything in a subshell, so we can redirect the output&lt;br /&gt;# more easily.&lt;br /&gt;(&lt;br /&gt;  # Load the module the right way&lt;br /&gt;  /sbin/modprobe usbserial vendor=0x1199 product=0x0112&lt;br /&gt;&lt;br /&gt;  # Make the device node for the modem&lt;br /&gt;  mknod /dev/ttyUSB0 c 188 0&lt;br /&gt;&lt;br /&gt;) 2&amp;gt;&amp;amp;1 | logger -t aircard &lt;/p&gt;&lt;p&gt;2. Create a file named aircard.usermap in /etc/hotplug/usb containing the following:&lt;/p&gt;&lt;p class=&quot;codesnippet&quot;&gt;# Sierra Aircard 580&lt;br /&gt;aircard580  0x0003  0x1199  0x0112  0x0000  0x0000  0xff  0x00  0x00  0x00  0x00  0x00  0x00000000&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; All of the hex values should be on one line.&lt;/p&gt;&lt;p&gt;3. Change the aircard580 file so that it is executable:&lt;/p&gt;&lt;p class=&quot;codesnippet&quot;&gt;chmod a+x /etc/hotplug/usb/aircard580 &lt;em&gt;(Enter)&lt;/em&gt;&lt;br /&gt;&lt;/p&gt;&lt;h3&gt;Setup the dial up connection  				&lt;/h3&gt; 				&lt;p&gt;With this preparation complete plug the card into the laptop. 				Suse should auto detect the device and treat it like any normal 				USB modem.&lt;/p&gt; 				&lt;p&gt;1. Open Yast to configure the dial-up connection for the 				modem. You can do this in three different ways but you all end up 				in the same place:&lt;/p&gt; 				&lt;ol&gt;&lt;li&gt;&lt;p style=&quot;margin-bottom: 0in&quot;&gt;Yast -&amp;gt; Network Devices -&amp;gt; 					Modem&lt;/p&gt; 					&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin-bottom: 0in&quot;&gt;Control centre -&amp;gt; Modem&lt;/p&gt; 					&lt;/li&gt;&lt;li&gt;&lt;p&gt;Network manager -&amp;gt; Configure Modem&lt;/p&gt; 				&lt;/li&gt;&lt;/ol&gt;&lt;h4&gt;To help you out Mike has sent through a few screenshots along with some notes about each screen. Click on each of the images below to view larger screenshots and see the associated notes. &lt;/h4&gt;  &lt;table border=&quot;0&quot; class=&quot;imagetable&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;/sites/default/files/images/tutorials/t3g_sled/yast1_lg.png&quot;&gt;&lt;img src=&quot;/sites/default/files/images/tutorials/t3g_sled/yast1_sm.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href=&quot;/sites/default/files/images/tutorials/t3g_sled/yast2_lg.png&quot;&gt;&lt;img src=&quot;/sites/default/files/images/tutorials/t3g_sled/yast2_sm.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;/sites/default/files/images/tutorials/t3g_sled/yast3_lg.png&quot;&gt;&lt;img src=&quot;/sites/default/files/images/tutorials/t3g_sled/yast3_sm.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href=&quot;/sites/default/files/images/tutorials/t3g_sled/yast4_lg.png&quot;&gt;&lt;img src=&quot;/sites/default/files/images/tutorials/t3g_sled/yast4_sm.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;The above screenshots can be a little difficult to read, for reference the modem init strings 				are as follows,&lt;/p&gt; 				&lt;p style=&quot;margin-left: 0.67in&quot;&gt;&lt;strong&gt;Init 				1: &lt;/strong&gt;ATE0v1&amp;amp;F&amp;amp;D2&amp;amp;C1&amp;amp;C2S0=0&lt;/p&gt; 				&lt;p style=&quot;margin-left: 0.67in&quot;&gt;&lt;strong&gt;Init 2: &lt;/strong&gt;ATE0V1&lt;/p&gt; 				&lt;p style=&quot;margin-left: 0.67in&quot;&gt;&lt;strong&gt;Init 3: &lt;/strong&gt;ATS7=60&lt;/p&gt;&lt;p&gt;The most important thing to know is if you are in New Zealand and a Telecom customer use the following connection configuration:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Phone: &lt;/strong&gt;#777&lt;br /&gt;&lt;strong&gt;User:&lt;/strong&gt; mobile@jamamobile&lt;br /&gt;&lt;strong&gt;Password:&lt;/strong&gt; telecom &lt;/p&gt;&lt;p&gt;Don&#039;t worry these details are identical for all Telecom T3G users, actual usage is gauged by the device ID of your card. You are not going to be billed for other people using these same details or get free wireless connectivity.&lt;/p&gt;&lt;h3&gt;Things to note:&lt;/h3&gt; 				&lt;ol&gt;&lt;li&gt;&lt;p&gt;A flashing green light on the card means you have signal, 					a flashing orange means none or a hardware issue.&lt;/p&gt; 					&lt;/li&gt;&lt;li&gt;&lt;p&gt;On Windows Telecom provide software to use the card. From 					10.4.x of Mac OS X the card has been supported natively&lt;/p&gt; 					&lt;/li&gt;&lt;li&gt;&lt;p&gt;The card must be activated on a Windows machine prior to 					be used in Linux. If your card came from Telecom NZ then the 					card has been activated for you already&lt;/p&gt; 					&lt;/li&gt;&lt;li&gt;&lt;p&gt;Using a terminal connection to the modem (/dev/ttyUSB0) 					we can also see what the signal strength is.  To do so open a 					connection to the serial device and issue the following command:&lt;/p&gt; 					 					&lt;p class=&quot;codesnippet&quot;&gt;at+csq? &lt;em&gt;(Enter)&lt;/em&gt;&lt;br /&gt;+CSQ: &lt;strong&gt;19&lt;/strong&gt;, 99&lt;/p&gt; 					&lt;p&gt;It will respond with the CSQ line, the number in bold (19) 					indicates your signal strength above -109 dBm in 2dBm 					increments.  A value of 7 (-95dBm) is adequate.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;Most of this information is gleaned from the &lt;a href=&quot;http://mycusthelp.com/sierrawireless/supportkbitem.asp?sSessionID=&amp;amp;Inc=3928&amp;amp;sFilA=FAQ%20Category&amp;amp;sFilB=Products&amp;amp;sFilC=&amp;amp;FA=19&amp;amp;FB=22&amp;amp;FC=-1&quot;&gt;Sierra Wireless knowledge base&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Hopefully if all has gone well you should have a working T3G modem for your Linux laptop. I do not have a PC-based laptop or a T3G card so I cannot personally vouch for this, but given I haven&#039;t received any panic stricken phone calls from Mike in the last 12 hours I am guessing all is still working fine... &lt;br /&gt;&lt;p&gt; &lt;/p&gt;  &lt;/div&gt;

&lt;ul class=&quot;field-taxonomy-vocabulary-1&quot;&gt;

      &lt;li&gt;
      &lt;a href=&quot;/tech/linux&quot;&gt;linux&lt;/a&gt;    &lt;/li&gt;
      &lt;li&gt;
      &lt;a href=&quot;/tech/suse&quot;&gt;suse&lt;/a&gt;    &lt;/li&gt;
      &lt;li&gt;
      &lt;a href=&quot;/tutorials&quot;&gt;software tutorials&lt;/a&gt;    &lt;/li&gt;
      &lt;li&gt;
      &lt;a href=&quot;/tech/wireless&quot;&gt;wireless&lt;/a&gt;    &lt;/li&gt;
  
&lt;/ul&gt;
</description>
 <pubDate>Wed, 13 Sep 2006 23:01:14 +0000</pubDate>
 <dc:creator>David</dc:creator>
 <guid isPermaLink="false">311 at https://www.stress-free.co.nz</guid>
</item>
</channel>
</rss>
