<?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>Simple Help &#187; Home Networking</title>
	<atom:link href="http://www.simplehelp.net/category/home-networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simplehelp.net</link>
	<description>Common questions, simple answers</description>
	<lastBuildDate>Wed, 18 Nov 2009 15:12:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to find your public IP address with the Linux command line</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/</link>
		<comments>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 12:00:56 +0000</pubDate>
		<dc:creator>Sukrit Dhandhania</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359</guid>
		<description><![CDATA[
Sometimes I need to find out what the public IP address of a particular machine is. If I have access to a web browser on that machine I just hope over to a service such as http://www.whatismyip.com or myip.dk to find this information. However, on a remote Linux server it is not practical to use [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_linux.jpg" align="right" width="50" height="50" alt="Linux" />
<p>Sometimes I need to find out what the public IP address of a particular machine is. If I have access to a web browser on that machine I just hope over to a service such as <a href="http://www.whatismyip.com" target="_blank" title="what's my ip address web page" rel="nofollow">http://www.whatismyip.com</a> or <a href="http://myip.dk" target="_blank" rel="nofollow">myip.dk</a> to find this information. However, on a remote Linux server it is not practical to use the web browser method. So, instead, I use the following hack. <span id="more-2359"></span></p>
<p>I enter the following line into a Linux command line:</p>
<p><strong># curl -s myip.dk | grep &#39;&#34;Box&#34;&#39; | egrep -o &#39;[0-9.]+&#39;</strong><br />
122.172.9.222</p>
<p>Pretty useful stuff this. If you need to use this command often it might be a good idea to create a script with the command so that you need not have to remember it. Create a new file using your favorite text editor.  Enter the following lines:</p>
<p><strong>#!/bin/bash<br />
curl -s myip.dk | grep &#39;&#34;Box&#34;&#39; | egrep -o &#8216;[0-9.]+&#39;</strong></p>
<p>Now save the file as something like <strong>/usr/bin/myipaddress</strong>. Grant it executable privileges like this:</p>
<p><strong># chmod +x /usr/bin/myipaddress</strong></p>
<p>Now you have a script that you can access from anywhere on your computer by running <strong>myipaddress</strong> in the command line. It will output your current public IP address. This can be quite useful if you use things like IP-based authentication, or if you use a dynamic DNS service.</p>
<p>Although the above example should work most of the time, there might be times when the service that gives you your public IP address is down or has changed the format with which they display the data, thus breaking the script. Here&#8217;s a backup method in case the command shown earlier does not work for you. It used the service <a href="http://www.formyip.com/" target="_blank" rel="nofollow">http://www.formyip.com/</a>.</p>
<p><strong># links -dump http://www.formyip.com/ | awk &#34;/IP is/{print $NF}&#34;</strong></p>
<p>You could also use this with <strong>lynx</strong>:</p>
<p><strong># lynx -dump http://www.formyip.com/ | awk &#34;/IP is/{print $NF}&#34;</strong></p>
<p>Again, feel free to enter this command into a script like I showed you earlier. It will make using the command a breeze.</p>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2009/04/06/how-to-post-to-twitter-from-the-linux-command-line/" rel="bookmark" title="Permanent Link: How to post to Twitter from the Linux command line">How to post to Twitter from the Linux command line</a><br /><a href="http://www.simplehelp.net/2008/12/24/linux-command-line-magic-find-and-replace/" rel="bookmark" title="Permanent Link: Linux command line magic &#8211; find and replace">Linux command line magic &#8211; find and replace</a><br /><a href="http://www.simplehelp.net/2009/11/11/how-to-tweak-your-linux-machines-history-command/" rel="bookmark" title="Permanent Link: How to tweak your Linux machine&#8217;s history command">How to tweak your Linux machine&#8217;s history command</a><br /><a href="http://www.simplehelp.net/2008/12/01/how-to-send-email-from-the-linux-command-line/" rel="bookmark" title="Permanent Link: How to send email from the Linux command line">How to send email from the Linux command line</a><br /><a href="http://www.simplehelp.net/2009/05/28/how-to-enable-the-root-user-account-in-ubuntu-linux/" rel="bookmark" title="Permanent Link: How to enable the root user account in Ubuntu Linux">How to enable the root user account in Ubuntu Linux</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to connect to a VPN server from Windows XP</title>
		<link>http://www.simplehelp.net/2008/11/24/steps-on-how-to-create-a-virtual-private-network/</link>
		<comments>http://www.simplehelp.net/2008/11/24/steps-on-how-to-create-a-virtual-private-network/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 08:07:46 +0000</pubDate>
		<dc:creator>Joel</dc:creator>
				<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1691</guid>
		<description><![CDATA[

   

This tutorial will guide you through the steps required to set up everything in Windows XP to allow you to connect to an office (or other) VPN server. 
The very concept behind a Virtual Private Network is to allow a remote user network access just as if it were local to the [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Guest Blogger' --><!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_security.jpg" align="right" width="50" height="50" alt="Security" />
<img src="/wp-images/icons/topic_windows.jpg" align="right" width="50" height="50" alt="Windows" />
<p><!--[if !mso]&gt;--> <!--[endif]--><!--[if gte mso 9]&gt;  Normal 0       MicrosoftInternetExplorer4  &lt;![endif]--> <!--[if gte mso 10]&gt;--> <!--[endif]--></p>
<p class="MsoNormal">
This tutorial will guide you through the steps required to set up everything in Windows XP to allow you to connect to an office (or other) VPN server. <span id="more-1691"></span></p>
<p>The very concept behind a <strong>V</strong>irtual <strong>P</strong>rivate <strong>N</strong>etwork is to allow a remote user network access just as if it were local to the private network. This means a VPN does not only consist of being able to connect to the network, however being able to connect securely plays a vital role as well. A VPN is the current standard for providing access as well as security. In order to accomplish its purpose, a VPN must emulate a direct network connection. This means it must provide both the same level of access and the same level of security. Basically I like to think of a VPN as a way to &#8220;piggy back&#8221; over the Internet to create secure connections.</p>
<p class="MsoNormal">Currently Windows XP provides a certain level of security by using <strong>Point-to-Point Tunneling Protocol (PPTP)</strong> or <strong>Layer Two Tunneling Protocol (L2TP)</strong>. They are both considered tunneling protocols –because they create a &#8220;virtual tunnel&#8221; by applying much needed encryption.</p>
<p class="MsoNormal">If you wish to create a VPN with windows XP, then you&#8217;ve come to the right place.</p>
<p class="MsoNormal">Here are some steps to follow on how to set one up:</p>
<p class="MsoNormal"><strong>1)</strong> On the computer that is running Windows XP, confirm that the connection to the Internet is configured correctly and is active. You can simply do this by trying to browse the internet.</p>
<p class="MsoNormal"><strong>2)</strong> Click Start, then click Control Panel, locate and double click on the <strong>Network Connections</strong> Icon</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;                    &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img001.jpg"><img class="alignnone size-full wp-image-1704" src="http://www.simplehelp.net/wp-content/uploads/img001.jpg" alt="" width="450" height="338" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>3)</strong> Then Click on <strong>New Connection Wizard.</strong></p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img002.jpg"><img class="alignnone size-full wp-image-1705" src="http://www.simplehelp.net/wp-content/uploads/img002.jpg" alt="" width="450" height="338" /></a></p>
<p class="MsoNormal"><span style="7pt;"> </span></p>
<p class="MsoNormal"><strong>4)</strong> Once in the New Connection Wizard, Click Next.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img003.jpg"><img class="alignnone size-full wp-image-1706" src="http://www.simplehelp.net/wp-content/uploads/img003.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><strong>5)</strong> Click <strong>Connect to the network at my workplace</strong>.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img004.jpg"><img class="alignnone size-full wp-image-1707" src="http://www.simplehelp.net/wp-content/uploads/img004.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>6)</strong> Then Click Next, and choose the <strong>Virtual Private Network connection.</strong></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></strong></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img005.jpg"><img class="alignnone size-full wp-image-1708" src="http://www.simplehelp.net/wp-content/uploads/img005.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal"><span style="7pt;"> </span></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>7)</strong> Click Next, Type a host name, IP or any other description you would like to appear in the Network Connections area. You can change this later if you want.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img006.jpg"><img class="alignnone size-full wp-image-1709" src="http://www.simplehelp.net/wp-content/uploads/img006.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>8 )</strong> Click Next, and select <strong>Do Not Dial Initial Connection</strong>.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--><span> </span></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img007.jpg"><img class="alignnone size-full wp-image-1715" src="http://www.simplehelp.net/wp-content/uploads/img007.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>9)</strong> Click Next and type a host name, IP or any other description you would like to appear in the Network Connections area. You can change this later if you want.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img008.jpg"><img class="alignnone size-full wp-image-1716" src="http://www.simplehelp.net/wp-content/uploads/img008.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>10)</strong> Click Next and choose whether you want your VPN connection only available to you or to anyone who logs onto the computer.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img009.jpg"><img class="alignnone size-full wp-image-1718" src="http://www.simplehelp.net/wp-content/uploads/img009.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><strong>11)</strong> Click Next. You are just about done, if there are any, the rest of the screens just verify your connection. Click to select the Add a shortcut to this connection to my desktop check box if you want one, if not, then leave it unchecked and click finish.</p>
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img010.jpg"><img class="alignnone size-full wp-image-1719" src="http://www.simplehelp.net/wp-content/uploads/img010.jpg" alt="" width="450" height="351" /></a></p>
<p class="MsoNormal"><span style="7pt;"> </span></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>12)</strong> You are now done making your connection, but by default, it may try to connect. You can either try the connection now if you know its valid, if not, then just close it down for now.</p>
<p class="MsoNormal">
<p><strong>13)</strong> Now that you have your XP VPN client all set up and ready, the next step is to attempt a connection to the Remote Access or VPN server set up at the corporate office. To use the connection follow these simple steps. To open the client again, go back to the Network Connections dialog box.</p>
<p class="MsoNormal" style="0.25in;"><strong>I.</strong> Once you are in the Network Connection dialog box, double-click, or right click and select ‘Connect’ from the menu – this will initiate the connection to the corporate office.</p>
<p class="MsoNormal"><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--><span> </span></p>
<p class="MsoNormal"><a href="http://www.simplehelp.net/wp-content/uploads/img011.jpg"><img class="alignnone size-full wp-image-1721" src="http://www.simplehelp.net/wp-content/uploads/img011.jpg" alt="" width="348" height="372" /></a></p>
<p class="MsoNormal"><span style="7pt;"> </span></p>
<p class="MsoNormal" style="0.25in;"><strong>II.</strong> Type your user name and password, and then click Connect. Properties bring you back to what we just discussed in this article, all the global settings for the VPN client you are using.</p>
<p class="MsoNormal" style="0.25in;"><strong>III.</strong> To disconnect from a VPN connection, right-click the icon for the connection, and then click Disconnect&#8221;</p>
<p class="MsoNormal"><strong><span style="underline;">Summary:</span></strong></p>
<p class="MsoNormal" style="justify;">In this article we covered the basics and uses of building a <strong>V</strong>irtual <strong>P</strong>rivate <strong>N</strong>etwork connection using Windows XP. This is very handy when you have a VPN device but don’t have the ‘client’ that may come with it. If the VPN Server doesn’t use highly proprietary protocols, then you can use the XP client to connect with. In a future article I will get into the nuts and bolts of both IPSec and more detail on how to configure the advanced options in the Security tab of this client.</p>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2008/12/16/how-to-setup-virtual-hosts-in-apache/" rel="bookmark" title="Permanent Link: How to setup Virtual Hosts in Apache">How to setup Virtual Hosts in Apache</a><br /><a href="http://www.simplehelp.net/2008/07/17/how-access-the-files-on-your-mac-from-vista/" rel="bookmark" title="Permanent Link: How access the files on your Mac from Vista">How access the files on your Mac from Vista</a><br /><a href="http://www.simplehelp.net/2008/05/24/how-to-watch-hulu-videos-if-you-live-outside-the-us/" rel="bookmark" title="Permanent Link: How to watch Hulu videos if you live outside the US">How to watch Hulu videos if you live outside the US</a><br /><a href="http://www.simplehelp.net/2007/05/08/how-to-easily-install-wordpress-in-a-virtual-environment/" rel="bookmark" title="Permanent Link: How to easily install WordPress in a virtual environment">How to easily install WordPress in a virtual environment</a><br /><a href="http://www.simplehelp.net/2006/07/17/home-networking-101/" rel="bookmark" title="Permanent Link: Home Networking 101">Home Networking 101</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/11/24/steps-on-how-to-create-a-virtual-private-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install applications on your N95 from a local web server</title>
		<link>http://www.simplehelp.net/2008/10/21/how-to-install-applications-on-your-n95-from-a-local-web-server/</link>
		<comments>http://www.simplehelp.net/2008/10/21/how-to-install-applications-on-your-n95-from-a-local-web-server/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 12:30:11 +0000</pubDate>
		<dc:creator>Ken Murray</dc:creator>
				<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1456</guid>
		<description><![CDATA[
After writing more than a dozen of these tutorials and installing and removing so many different applications, I thought to myself, there has got to be a faster way.  WiFi is far faster than Bluetooth and far more convenient than digging for a USB data cable.  I have a computer running Linux, I [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Guest Blogger' --><!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_symbian.jpg" align="right" width="46" height="84" alt="Symbian" />
<p>After writing more than a dozen of these tutorials and installing and removing so many different applications, I thought to myself, there has got to be a faster way.  WiFi is far faster than Bluetooth and far more convenient than digging for a USB data cable.  I have a computer running Linux, I have a wireless network, and the N95 connects via WiFi so why not just run Apache on my computer and point the N95 at a directory on the computer?</p>
<p>I&#8217;m writing this tutorial using Fedora 9, but these instructions should be easily adaptable to just about any Linux distribution. Also, you can <a href="http://www.simplehelp.net/2008/08/25/how-to-install-and-setup-apache-mysql-and-php-in-windows/" target="_blank">install Apache in Windows</a> or <a href="http://www.simplehelp.net/2008/08/08/how-to-easily-install-apache-mysql-and-php-in-os-x/" target="_blank" title="how to install apache, mysql and php in os x">OS X</a>, and follow along with the steps in this tutorial. <span id="more-1456"></span></p>
<ol>
<li> These instructions are almost completely command line based.  First, check if you already have Apache installed. There&#8217;s a chance you might already have it. For RedHat, Fedora and other RPM based Linux distributions:
<p><font color="red">[user@radon ~]#</font> rpm -q httpd<br />
httpd-2.2.9-1.fc9.i386</p>
<p>If you don&#8217;t, it&#8217;s as simple as the following:</p>
<p><font color="red">[user@radon ~]#</font> sudo yum install httpd<br />
Loaded plugins: changelog, downloadonly, fastestmirror, list-data, merge-conf,<br />
              : presto, refresh-packagekit<br />
Setting up and reading Presto delta metadata<br />
No Presto metadata available for atrpms<br />
No Presto metadata available for google<br />
No Presto metadata available for fedora<br />
No Presto metadata available for adobe-linux-i386<br />
No Presto metadata available for updates-newkey<br />
No Presto metadata available for updates<br />
Loading mirror speeds from cached hostfile<br />
 * fedora: mirror.hmc.edu<br />
 * updates-newkey: mirror.hmc.edu<br />
 * updates: mirror.hmc.edu<br />
Finished<br />
Setting up Install Process<br />
Parsing package install arguments<br />
Resolving Dependencies<br />
&#8211;> Running transaction check<br />
&#8212;> Package httpd.i386 0:2.2.9-1.fc9 set to be updated<br />
&#8211;> Finished Dependency Resolution</p>
<p>Dependencies Resolved</p>
<p>==================================================<br />
 Package       Arch         Version             Repository                Size<br />
==================================================<br />
 httpd         i386         2.2.9-1.fc9         updates-newkey            975 k</p>
<p>Transaction Summary<br />
==================================================<br />
Install      1 Package(s)<br />
Update       0 Package(s)<br />
Remove       0 Package(s)</p>
<p>Total download size: 975 k<br />
Is this ok [y/N]: y<br />
Downloading Packages:<br />
Downloading DeltaRPMs:<br />
Rebuilding rpms from deltarpms<br />
httpd-2.2.9-1.fc9.i386.rpm                              | 975 kB     00:24<br />
Running rpm_check_debug<br />
Running Transaction Test<br />
Finished Transaction Test<br />
Transaction Test Succeeded<br />
Running Transaction<br />
  Installing     : httpd                                             [1/1]</p>
<p>Installed: httpd.i386 0:2.2.9-1.fc9<br />
Complete!</p>
<p>If your output looks slightly different that the above, don&#8217;t worry.  I have a few extra repositories enabled as well as a few extra yum plugins.  The important part is the line that says: <strong>Installed: httpd.i386 0:2.2.9-1.fc9</strong>. </li>
<li> Start Apache:
<p><font color="red">[user@radon ~]$</font> sudo /sbin/service httpd start<br />
Starting httpd:                                            [  OK  ]</li>
<li> Now test that it works.  Open a browser and visit http://127.0.0.1/  You should see something similar to the following:</li>
<p><a href="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_001.jpg"><img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_001a.jpg" alt="" border="1" /><br />
click to enlarge</a></p>
<li> Lets find out the IP Address of the computer.  We&#8217;ll need this when we connect from the phone.
<p><font color="red">[user@radon ~]$</font> /sbin/ifconfig wlan0<br />
wlan0     Link encap:Ethernet  HWaddr AA:BB:CC:DD:EE:FF<br />
          inet addr:192.168.20.2  Bcast:192.168.20.255  Mask:255.255.255.0<br />
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br />
          RX packets:206616 errors:0 dropped:0 overruns:0 frame:0<br />
          TX packets:161635 errors:0 dropped:0 overruns:0 carrier:0<br />
          collisions:0 txqueuelen:1000<br />
          RX bytes:251797632 (240.1 MiB)  TX bytes:24504623 (23.3 MiB)</p>
<p>Note the second line of the output where it says <strong>inet addr</strong>.  Our IP Address is 192.168.20.4.</p>
<p>On your phone, choose <strong>Menu</strong> -> <strong>Web</strong>.  Make sure you choose the correct Access Point, the name of your wireless network.  Now, choose <strong>Options</strong> -> <strong>Go To Web Address</strong> and enter the IP Address you discovered above.  You should see the Apache Test Page on your phone&#8217;s browser. </li>
<p><img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_002.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_003.jpg" alt="" /><br />
<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_004.jpg" alt="" border="1" />&nbsp;<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_005.jpg" border="1" alt="" /><br />
<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_006.jpg" alt="" border="1" /></p>
<li> The default installation of Apache on Fedora 9 expects you to put your web pages in <strong>/var/www/html</strong>.  I decided to create a separate directory at <strong>/home/shared</strong> and make that accessible via the web.  The following commands create the directory, then change its ownership to my user name, then create a symbolic link to the new directory below the default web root.
<p><font color="red">[user@radon ~]$</font> sudo mkdir /home/shared<br />
<font color="red">[user@radon ~]$</font> sudo chown user: /home/shared<br />
<font color="red">[user@radon ~]$</font> sudo ln -s /home/shared/ /var/www/html/shared</p>
<p>Now visit <strong>http://127.0.0.1/shared/</strong> in your browser and you should see an empty directory similar to the following: </li>
<p><a href="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_007.jpg"><img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_007a.jpg" alt="" border="1" /><br />
click to enlarge</a></p>
<li> Now visit <strong>http://192.168.20.4/shared</strong> on your phone, substituting the IP Address of your computer.</li>
<p><img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_008.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_009.jpg" alt="" /></p>
<li> Ok, now that the phone can see your shared directory, copy some installation files into it and choose <strong>Options</strong> -> <strong>Navigations Options</strong> -> <strong>Reload</strong>. </li>
<p><img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_010.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_011.jpg" alt="" /><br />
<img src="http://www.simplehelp.net/images/n95install_apps_wifi_http/install_apps_wifi_012.jpg" alt="" border="1" /></p>
<li> Simple click on one of the files and you are prompted to install it.  I find this way a whole lot faster than installing applications via USB or Bluetooth.</li>
<li> If you are paying attention to the above screenshots, you will notice that the installation files I am using in this example are actually the Apache installation files.  Yes, you can run Apache on your N95.  Watch for my upcoming tutorial on how to run Apache on the N95. </li>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2009/04/22/how-to-remotely-access-your-mysql-in-a-secure-manner/" rel="bookmark" title="Permanent Link: How to remotely access your MySQL in a secure manner">How to remotely access your MySQL in a secure manner</a><br /><a href="http://www.simplehelp.net/2008/07/15/how-to-upload-a-website-built-with-iweb-to-a-non-macmobileme-account/" rel="bookmark" title="Permanent Link: How to upload a website built with iWeb to a non .mac/MobileMe account">How to upload a website built with iWeb to a non .mac/MobileMe account</a><br /><a href="http://www.simplehelp.net/2009/07/20/how-to-recursively-copy-files-from-an-ftp-server-with-linux/" rel="bookmark" title="Permanent Link: How to recursively copy files from an FTP server with Linux">How to recursively copy files from an FTP server with Linux</a><br /><a href="http://www.simplehelp.net/2008/12/17/how-to-ssh-to-your-remote-server-without-entering-a-password-every-time/" rel="bookmark" title="Permanent Link: How to SSH to your remote server without entering a password every time">How to SSH to your remote server without entering a password every time</a><br /><a href="http://www.simplehelp.net/2008/12/23/setting-the-date-on-your-linux-machine/" rel="bookmark" title="Permanent Link: How to set the date on your Linux machine">How to set the date on your Linux machine</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/10/21/how-to-install-applications-on-your-n95-from-a-local-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to turn your N95 into a wireless access point</title>
		<link>http://www.simplehelp.net/2008/10/21/how-to-turn-your-n95-into-a-wireless-access-point/</link>
		<comments>http://www.simplehelp.net/2008/10/21/how-to-turn-your-n95-into-a-wireless-access-point/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 11:30:02 +0000</pubDate>
		<dc:creator>Ken Murray</dc:creator>
				<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1444</guid>
		<description><![CDATA[
This tutorial will guide you through turning your Nokia N95 into a WiFi (wireless) access point.  No more tethering via USB or Bluetooth. Using JoikuSpot Light, a totally free utility that works well as long as you only need to use HTTP and HTTPS protocols, you&#8217;ll be up and surfing in no time. You&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Guest Blogger' --><!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_symbian.jpg" align="right" width="46" height="84" alt="Symbian" />
<!-- no icon for 'Wireless' --><p>This tutorial will guide you through turning your Nokia N95 into a WiFi (wireless) access point.  No more tethering via USB or Bluetooth. Using JoikuSpot Light, a totally free utility that works well as long as you only need to use HTTP and HTTPS protocols, you&#8217;ll be up and surfing in no time. You&#8217;ll have to go with JoikuSpot Premium if you need POP3, SMTP, etc. <span id="more-1444"></span></p>
<p><strong>Warning:</strong> You probably only want to do this if you have a decent data plan. Using 3G data can result in a very large bill, particularly if you live in Canada.</p>
<ol>
<li> You&#8217;ll have to use your computer to visit the <a href="http://www.joiku.com/?action=products&#038;mode=productDetails&#038;product_id=310" target="_blank">JoikuSpot Light product page</a>, where you will select your phone model, then click <strong>Download</strong>. Save the JoikuSpot Light installation file to a directory on your hard drive, then install it on your phone.  See my recent tutorials on <a href="http://www.simplehelp.net/2008/10/08/how-to-install-applications-on-your-nokia-n95-via-usb/" title="how to install software on your Nokia N95 via USB">installing software on your N95 via USB</a> or <a href="http://www.simplehelp.net/2008/10/08/how-to-install-applications-on-your-nokia-n95-via-bluetooth/" title="how to install software on your Nokia N95 via bluetooth">installing software on your N95 via Bluetooth</a>. </li>
<li> For your convenience I have included a <a href="http://www.simplehelp.net/2008/10/10/how-to-read-and-create-barcodes-mobile-codes-on-the-nokia-n95/">Mobile Code</a> below.  You may find you have limited success in using your mobile browser to download JoikuSpot Light due to the web site layout.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/joiku_lite_dm_code.png" alt="" /></p>
<li> Now that you have JoikuSpot Light installed, you can find it by selecting <strong>Menu</strong> -> <strong>Applications</strong> > <strong>JoikuSpot</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_001.jpg" alt="" /></p>
<li> Next you are prompted to allow sharing your internet connection with other devices.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_002.jpg" alt="" /></p>
<li> Select <strong>No</strong>.  We want to change some settings first.  You will end up at the JoikuSpot main screen.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_003.jpg" alt="" /></p>
<li> In the default configuration, JoikuSpot does not use any sort of encryption.  You will want to change this.  Select <strong>Options</strong> -> <strong>Settings</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_004.jpg" alt="" /></p>
<li> This is where we can make changes to things like the <strong>Network Name</strong>, the default <strong>Access Point</strong> to use, and the <strong>Encryption</strong> options.  Scroll down to <strong>Encryption</strong> and select <strong>Options</strong> -> <strong>Change</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_005.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_006.jpg" alt="" /></p>
<li> Unfortunately WPA is not an option.  You can only choose <strong>WEP Open</strong> or <strong>WEP Shared</strong>.  At least WEP is marginally better than no encryption at all and will stop others from connecting to your network accidentally.</li>
<li> Lets try <strong>WEP Open</strong>.
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_007.jpg" alt="" /></p>
<li> Now scroll down and set the encryption key type, the length, and the key itself.  In this example I chose to use a 128 bit ASCII key.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_008.jpg" alt="" /></p>
<li> Notice that a random key was generated automatically.  Lets change this to something easier to remember.  Scroll down to <strong>Encryption Key</strong> and select <strong>Options</strong> -> <strong>Change</strong>.  In this example I changed the key to <strong>NokiaN95Rocks</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_009.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_010.jpg" alt="" /></p>
<li> Now select <strong>Back</strong> to go back to the main JoikuSpot screen, then choose <strong>Options</strong> -> <strong>Start</strong> to start sharing.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_011.jpg" alt="" /></p>
<li> You will be prompted to allow sharing your internet connection.  Select <strong>Yes</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_012.jpg" alt="" /></p>
<li> Now select your 3G access point.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_013.jpg" alt="" /></p>
<li> JoikuSpot starts and your N95 is now acting as a WiFi Access Point.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_014.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_015.jpg" alt="" /></p>
<li> Press the <strong>Right</strong> toggle to see the status of the connection.  Scroll down one page to see the <strong>Encryption Key</strong> being used.  This is the key that you will enter on your computer when you connect to your phones shared connection.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_016.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_017.jpg" alt="" /></p>
<li> Now set the phone down and go over to the computer.  On the computer, select <strong>Connect To A Network</strong> and you should see your JoikuSpot access point listed.  You may have to click the refresh button.</li>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_018.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_018a.jpg" alt="" /><br />
click to enlarge</a></p>
<li> Select your JoikuSpot access point and click <strong>Connect</strong>.  You will be prompted to enter the same encryption key as you entered on your phone.</li>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_019.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_019a.jpg" alt="" /><br />
click to enlarge</a></p>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_020.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_020a.jpg" alt="" /><br />
click to enlarge</a></p>
<li> Assuming you entered the key correctly, you should successfully connect.  In this example I chose to save this network connection for future use.</li>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_021.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_021a.jpg" alt="" /><br />
click to enlarge</a></p>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_022.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_022a.jpg" alt="" /><br />
click to enlarge</a></p>
<li> You should now notice that the <strong>Network Connection</strong> icon in your system tray indicates <strong>Local Access Only</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_023.jpg" alt="" /></p>
<li> Not to worry.  Open up a browser, preferably Firefox, and you will see an advertisement for JoikuSpot Premium.</li>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_024.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_024a.jpg" alt="" /><br />
click to enlarge</a></p>
<li> You can safely ignore this advertisement and just click the Home icon in Firefox.  You are now on the Internet.</li>
<p><a href="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_025.jpg"><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_025a.jpg" alt="" /><br />
click to enlarge</a></p>
<li> It may take a little while for Windows to notice that your wireless connection has changed from <strong>Local Only</strong> to <strong>Local and Internet</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_026.jpg" alt="" /></p>
<li> If you look at the screen on your N95, you should see your computer listed on the <strong>Clients</strong> tab in JoikuSpot.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_027.jpg" alt="" /></p>
<li> Enjoy surfing, but don&#8217;t forget to shut down JoikuSpot when you&#8217;re finished.  Select <strong>Options</strong> -> <strong>Stop</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_028.jpg" alt="" />&nbsp;<img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_029.jpg" alt="" /></p>
<li> JoikuSpot is no longer sharing your 3G internet. </li>
<p><img src="http://www.simplehelp.net/images/n95wifi_ap/wifi_ap_030.jpg" alt="" />
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2006/07/06/how-to-secure-your-wireless-home-network/" rel="bookmark" title="Permanent Link: How to secure your wireless home network">How to secure your wireless home network</a><br /><a href="http://www.simplehelp.net/2008/09/16/how-to-enable-wifi-in-eeedora/" rel="bookmark" title="Permanent Link: How to enable WiFi in EeeDora">How to enable WiFi in EeeDora</a><br /><a href="http://www.simplehelp.net/2007/09/29/apple-menu-bar/" rel="bookmark" title="Permanent Link: My Apple Menu Bar">My Apple Menu Bar</a><br /><a href="http://www.simplehelp.net/2006/07/11/cable-modem-troubleshooting-ambit-60740euw/" rel="bookmark" title="Permanent Link: Cable Modem Troubleshooting: Ambit 60740EUW">Cable Modem Troubleshooting: Ambit 60740EUW</a><br /><a href="http://www.simplehelp.net/2009/04/24/review-t11s-stereo-wireless-bluetooth-headset-with-in-ear-earbuds/" rel="bookmark" title="Permanent Link: Review: T11S Stereo Wireless Bluetooth Headset With In-Ear Earbuds">Review: T11S Stereo Wireless Bluetooth Headset With In-Ear Earbuds</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/10/21/how-to-turn-your-n95-into-a-wireless-access-point/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to install and use PuTTY on your Nokia N95</title>
		<link>http://www.simplehelp.net/2008/10/09/how-to-install-and-use-putty-on-your-nokia-n95/</link>
		<comments>http://www.simplehelp.net/2008/10/09/how-to-install-and-use-putty-on-your-nokia-n95/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 11:30:00 +0000</pubDate>
		<dc:creator>Ken Murray</dc:creator>
				<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1333</guid>
		<description><![CDATA[
PuTTY is a free Telnet and SSH client for Win32 and Unix platforms available at the PuTTY home page.  Luckily PuTTY has also been ported to Symbian OS and can be obtained at http://s2putty.sourceforge.net. This tutorial will guide you through the steps to install and use PuTTY on your N95. 
Here are the steps [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Guest Blogger' --><!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_symbian.jpg" align="right" width="46" height="84" alt="Symbian" />
<p>PuTTY is a free Telnet and SSH client for Win32 and Unix platforms available at <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank" title="putty">the PuTTY home page</a>.  Luckily PuTTY has also been ported to Symbian OS and can be obtained at <a href="http://s2putty.sourceforge.net/" target="_blank" title="putty for symbian">http://s2putty.sourceforge.net</a>. This tutorial will guide you through the steps to install and use PuTTY on your N95. <span id="more-1333"></span></p>
<p>Here are the steps I took to install the latest version at the time of writing on my N95 8GB:</p>
<ol>
<li> Download the zip file from <a href="http://prdownloads.sourceforge.net/s2putty/putty_s60v3_1.5beta1.zip?download" target="_blank" title="download putty for symbian">here</a> and extract it somewhere on your hard drive.  Remember this location.</li>
<li> Since I have a Bluetooth adapter for my laptop, I decided to send the PuTTY installation file to the phone <a href="http://www.simplehelp.net/2008/10/08/how-to-install-applications-on-your-nokia-n95-via-bluetooth/" title="how to install apps on your n95 using bluetooth">via Bluetooth</a> rather than dig up a USB cable and <a href="http://www.simplehelp.net/2008/10/08/how-to-install-applications-on-your-nokia-n95-via-usb/" title="how to install apps on your n95 using USB">copy the file over that way</a>.  If you can&#8217;t transfer the installation file via Bluetooth, copy the file to your phones mass storage via USB and run the file using <strong>Menu</strong> -> <strong>Tools</strong> -> <strong>File Manager</strong>.  Press the <strong>Right</strong> toggle to navigate to the mass storage, then locate the folder you copied the installation file to.</li>
<li> I now had a message in my Inbox containing <strong>putty_s60v3_1.5beta1.sisx</strong>.  If you transferred the installation file to your phone via USB, skip this step.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_001.jpg" alt="" /></p>
<li> Opening the message produced the following screen: </li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_002.jpg" alt="" /></p>
<li> Choose <strong>Yes</strong>, then choose <strong>Continue</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_003.jpg" alt="" /></p>
<li> I chose to install PuTTY in the <strong>Phone Memory</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_004.jpg" alt="" /></p>
<li> Next I got the standard warning about this application accessing the network.  Just choose <strong>Continue</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_005.jpg" alt="" /></p>
<li> At the copyright and disclaimer screen, also choose <strong>Continue</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_006.jpg" alt="" /></p>
<li> Now PuTTY is installed.  You can find it by choosing <strong>Menu</strong> -> <strong>Applications</strong> -> <strong>putty</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_007.jpg" alt="" /></p>
<li> Now that it&#8217;s installed, you want to actually do something useful like logging in to a remote system.  Select <strong>Options</strong> -> <strong>Connect</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_008.jpg" alt="" /></p>
<li> Enter the remote host name or IP address.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_009.jpg" alt="" border="1" /></p>
<li> Next you should be presented with a list of access points.  I selected the ESSIS of the nearest WiFi access point.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_010.jpg" border="1" alt="" /></p>
<li> It might take a little while to connect to the remote server.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_011.jpg" border="1" alt="" /></p>
<li> Since you are using PuTTY on your N95 for the first time, you need to accept the hosts key by selecting <strong>Yes</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_012.jpg" border="1" alt="" /></p>
<li> Enter your user name and select <strong>OK</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_013.jpg" border="1" alt="" /></p>
<li> Enter your password and select <strong>OK</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_014.jpg" border="1" alt="" /></p>
<li> Now you should be at the familiar shell prompt.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_015.jpg" border="1" alt="" /></p>
<li> Try entering a command like <strong>ps</strong> </li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_016.jpg" border="1" alt="" /></p>
<li> In order to send special characters like <strong>Control</strong> or <strong>Carriage Return</strong>, select <strong>Options</strong> -> <strong>Send</strong>. </li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_017.jpg" border="1" alt="" /></p>
<li> You are now presented with a few choices.  Toggle over to <strong>Enter</strong> and press <strong>Select</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_018.jpg" border="1" alt="" /></p>
<li> I like to log out just by hitting Ctrl-D.  Press <strong>Options</strong> -> <strong>Send</strong>, then choose<strong> Control+&#8230;</strong> and press <strong>Select</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_019.jpg" border="1" alt="" /></p>
<li> From the menu, choose <strong>Ctrl-D</strong> and press <strong>Select</strong>.</li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_020.jpg" border="1" alt="" /></p>
<li> You are now logged out. </li>
<p><img src="http://www.simplehelp.net/images/n95putty/putty_021.jpg" border="1" alt="" /></p>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2008/10/15/how-to-install-additional-fonts-for-putty-on-the-n95/" rel="bookmark" title="Permanent Link: How to install additional fonts for PuTTY on the N95">How to install additional fonts for PuTTY on the N95</a><br /><a href="http://www.simplehelp.net/2008/10/15/generating-an-rsa-key-pair-for-use-with-putty-on-the-n95/" rel="bookmark" title="Permanent Link: Generating an RSA key pair for use with PuTTY on the N95">Generating an RSA key pair for use with PuTTY on the N95</a><br /><a href="http://www.simplehelp.net/2008/11/11/how-to-turn-your-nokia-n95-into-a-pedometer/" rel="bookmark" title="Permanent Link: How to turn your Nokia N95 into a pedometer">How to turn your Nokia N95 into a pedometer</a><br /><a href="http://www.simplehelp.net/2008/10/10/how-to-read-and-create-barcodes-mobile-codes-on-the-nokia-n95/" rel="bookmark" title="Permanent Link: How to read and create &quot;barcodes&quot; (Mobile Codes) on the Nokia N95">How to read and create &quot;barcodes&quot; (Mobile Codes) on the Nokia N95</a><br /><a href="http://www.simplehelp.net/2008/10/13/how-to-take-screenshots-with-the-nokia-n95/" rel="bookmark" title="Permanent Link: How to take Screenshots with the Nokia N95">How to take Screenshots with the Nokia N95</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/10/09/how-to-install-and-use-putty-on-your-nokia-n95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use the DD-WRT firmware to monitor your bandwidth</title>
		<link>http://www.simplehelp.net/2008/09/11/how-to-use-the-dd-wrt-firmware-to-monitor-your-bandwidth/</link>
		<comments>http://www.simplehelp.net/2008/09/11/how-to-use-the-dd-wrt-firmware-to-monitor-your-bandwidth/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 12:30:53 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1087</guid>
		<description><![CDATA[Previously I&#8217;ve shown you how to monitor your bandwidth using applications you install on your PC/Mac (Windows &#124; OS X). The method I outline in this very brief tutorial uses the DD-WRT firmware. Instead of capturing your uploads and downloads on each computer, which works very well if you live in a single-computer household, this [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><p>Previously I&#8217;ve shown you how to monitor your bandwidth using applications you install on your PC/Mac (<a href="http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/">Windows</a> | <a href="http://www.simplehelp.net/2007/09/27/how-to-monitor-your-internet-bandwidth-usage-in-os-x-redux/">OS X</a>). The method I outline in this very brief tutorial uses the DD-WRT firmware. Instead of capturing your uploads and downloads on each computer, which works very well if you live in a single-computer household, this method monitors your usage at the router level. So there&#8217;s no need to install software on each PC/Mac and then walk around with a calculator to add it all up. <span id="more-1087"></span></p>
<ol>
<li> First up, install the DD-WRT firmware. Make sure you have a <a href="http://www.dd-wrt.com/wiki/index.php/Supported_Devices" target="_blank" title="devices that support the dd-wrt firmware" rel="nofollow">supported device</a>. Then check to see if there&#8217;s a tutorial that explains <a href="http://www.dd-wrt.com/wiki/index.php/Installation" target="_blank" rel="nofollow" title="list of tutorials on how to install dd-wrt on various routers/devices">how to install DD-WRT on your device</a>. If you have a Linksys WRT54G v8, I&#8217;ve created a very <a href="http://www.simplehelp.net/2008/09/11/how-to-flash-the-linksys-wrt54g-v8-with-the-dd-wrt-firmware/" title="how to install the dd-wrt firmware on your linksys wrt54g version 8">detailed tutorial</a> with screenshots for every step. </li>
<li> Once you have the DD-WRT firmware installed, visit the control panel and select <strong>Status</strong> -> <strong>WAN</strong>.
<p><a href="http://www.simplehelp.net/images/ddwrt/ddbw00.png"><img src="http://www.simplehelp.net/images/ddwrt/ddbw00a.png" alt="" /><br />
click to enlarge</a></p>
<li> Scroll down to the <strong>Traffic by Month</strong> section. Here you&#8217;ll find the total incoming (download) and outgoing (upload) bandwidth, by month. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/ddbw01.png"><img src="http://www.simplehelp.net/images/ddwrt/ddbw01a.png" alt="" /><br />
click to enlarge</a></p>
<li> That&#8217;s it! </li>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/09/27/how-to-monitor-your-internet-bandwidth-usage-in-os-x-redux/" rel="bookmark" title="Permanent Link: How to monitor your Internet bandwidth usage in OS X, redux">How to monitor your Internet bandwidth usage in OS X, redux</a><br /><a href="http://www.simplehelp.net/2007/09/15/how-to-monitor-your-internet-bandwidth-usage-in-os-x/" rel="bookmark" title="Permanent Link: How to monitor your Internet bandwidth usage in OS X">How to monitor your Internet bandwidth usage in OS X</a><br /><a href="http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/" rel="bookmark" title="Permanent Link: How to monitor your Internet bandwidth usage in Windows">How to monitor your Internet bandwidth usage in Windows</a><br /><a href="http://www.simplehelp.net/2007/10/16/how-to-monitor-your-mac-laptops-battery-health/" rel="bookmark" title="Permanent Link: How to monitor your Mac laptop&#039;s battery health">How to monitor your Mac laptop&#039;s battery health</a><br /><a href="http://www.simplehelp.net/2006/07/06/how-to-secure-your-wireless-home-network/" rel="bookmark" title="Permanent Link: How to secure your wireless home network">How to secure your wireless home network</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/09/11/how-to-use-the-dd-wrt-firmware-to-monitor-your-bandwidth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to flash the Linksys WRT54G v8 with the DD-WRT Firmware</title>
		<link>http://www.simplehelp.net/2008/09/11/how-to-flash-the-linksys-wrt54g-v8-with-the-dd-wrt-firmware/</link>
		<comments>http://www.simplehelp.net/2008/09/11/how-to-flash-the-linksys-wrt54g-v8-with-the-dd-wrt-firmware/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 11:30:14 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1068</guid>
		<description><![CDATA[This tutorial will walk you every step of the way through flashing your Linksys WRT54G (version 8&#41; router to use the DD-WRT firmware.
According to Wikipedia, the Linksys WRT54G v8.0 is &#8220;currently one of the most commonly available (routers) at US retail establishments, such as Best Buy and Target&#8221;. Due to hardware limitations, the 8.x versions [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><!-- no icon for 'Wireless' --><p>This tutorial will walk you every step of the way through flashing your Linksys WRT54G (version 8&#41; router to use the DD-WRT firmware.</p>
<p>According to Wikipedia, the Linksys WRT54G v8.0 is &#8220;currently one of the most commonly available (routers) at US retail establishments, such as Best Buy and Target&#8221;. Due to hardware limitations, the 8.x versions (8.0, 8.1 and 8.2) are only able to run the &#8220;micro&#8221; version of the DD-WRT firmware (you can find a firmware version feature comparison chart <a href="http://www.dd-wrt.com/wiki/index.php/What_is_DD-WRT%3F#File_Versions" target="_blank" rel="nofollow">here</a>). Even so, the micro version of the DD-WRT firmware provides dozens of features, many of which are not available with the default Linksys firmware.</p>
<p>This walkthrough is based on the <a href="http://www.dd-wrt.com/wiki/index.php/How_To_Flash_the_WRT54Gv8" target="_blank" rel="nofollow">WRT54G v8.x tutorial on the DD-WRT wiki</a>. The biggest difference between this one and the one on the DD-WRT wiki is that I&#8217;ve elaborated a bit, and provided screenshots for each step. <span id="more-1068"></span></p>
<p>Please make sure you understand each step before you complete this tutorial. If you&#8217;re unsure of anything, please leave a comment and I&#8217;ll respond as soon as I can. It is possible to brick (render the router unusable) your device if done incorrectly.</p>
<ol>
<li> You&#8217;ll need to use a wired (<strong>not wireless</strong>) computer to flash your WRT54G with the DD-WRT firmware. Make sure that computer (doesn&#8217;t matter if it&#8217;s a Mac or PC running Windows or Linux) is plugged in to <strong>Port 1</strong> of your router. Unplug all other devices from the router &#8211; you can leave the WAN port plugged in to your cable/DSL modem. </li>
<li> Download the files <a href="http://www.dd-wrt.com/dd-wrtv2/downloads/others/tornado/Gv8/vxworkskillerGv8-v3.bin">vxworkskillerGv8-v3.bin</a> and <a href="http://www.dd-wrt.com/dd-wrtv2/downloads/v24/Broadcom/Broadcom%20Generic/micro/dd-wrt.v24_micro_generic.bin">dd-wrt.v24_micro_generic.bin</a> to the computer you&#8217;re going to use to flash your WRT54G (the one plugged in to Port 1 of your router). </li>
<li> You&#8217;ll need to set your computer to use the following static IP settings:
<p></p>
<p><strong>IP Address:</strong> 192.168.1.100<br />
<strong>Subnet Mask:</strong> 255.255.255.0<br />
<strong>Gateway:</strong> 192.168.1.1 </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img02.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img02a.png" alt="" /><br />
OS X Static IP Settings</a></p>
<p><a href="http://www.simplehelp.net/images/ddwrt/wintcp00.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/wintcp00a.png" alt="" /><br />
Windows Static IP Settings</a></p>
<li> Unplug the power cord from the WRT54G. Push the <strong>Reset</strong> button (see image below) while plugging the power cord back in, and hold down the button for about 20 seconds. Use a pencil or ball-point pen to push and hold the Reset button &#8211; it&#8217;s a bit recessed and very difficult to push and hold with your finger or fingernail. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/wrt54g.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/wrt54ga.png" alt="" /><br />
click to enlarge</a></p>
<li> Open your browser and enter the address <a href="http://192.168.1.1" rel="nofollow" target="_blank">http://192.168.1.1</a>. Use a browser <em>other</em> than Firefox, as issues have been reported with Firefox not being able to flash the device properly. I&#8217;ve used Safari and Internet Explorer and both had no problems.
<p></p>
<p>You&#8217;ll be presented with a <strong>Management Mode Firmware Upgrade</strong> page. Click the <strong>Choose File</strong> button. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img03.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img03a.png" alt="" /><br />
click to enlarge</a></p>
<li> Navigate to the <strong>vxworkskillerGv8-v3.bin</strong> file, select it, and close <strong>Choose</strong> (or <strong>Open</strong> if you&#8217;re using IE). </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img04.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img04a.png" alt="" /><br />
click to enlarge</a></p>
<li> Make sure that vxworkskillerGv8-v3.bin is listed on the  <strong>Management Mode Firmware Upgrade</strong> page, and click the <strong>Apply</strong> button. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img05.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img05a.png" alt="" /><br />
click to enlarge</a></p>
<li> <strong>Wait</strong> for at least <strong>two minutes</strong> before you go any further. After the 2 minutes is up, if you notice a dialog asking you to reboot the router, do so by unplugging the power cord and plugging it back in again. If you don&#8217;t get a message telling you to reboot the router, wait another 3-4 minutes and then reboot the router. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img06.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img06a.png" alt="" /><br />
click to enlarge</a></p>
<li> You should be able to ping 192.168.1.1 (in Linux or OS X open a Terminal and type <strong>ping 192.168.1.1</strong>. In Windows open a Command Prompt by clicking <strong>Start</strong>, selecting <strong>Run</strong> enter <strong>cmd</strong> and then type <strong>ping 192.168.1.1</strong>). If the router doesn&#8217;t reply you probably haven&#8217;t set your network settings correctly (step #3 above).  </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img07.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img07a.png" alt="" /><br />
click to enlarge</a></p>
<li> Now it&#8217;s time to flash the WRT54G with the DD-WRT firmware. To do so, enter the appropriate command for your Operating System:
<p></p>
<p><strong>Windows</strong>: (note: Vista users <a href="http://www.simplehelp.net/2008/09/10/how-to-install-a-tftp-client-in-windows-vista/" title="how to install a tftp client in Windows Vista">will need to install tftp first</a>) enter <strong>tftp -i 192.168.1.1 put dd-wrt.v24_micro_generic.bin</strong> from the Command Prompt. Make sure that the dd-wrt.v24_micro_generic.bin file is in the same folder that you&#8217;re using the Command Prompt from. For example, if you downloaded dd-wrt.v24_micro_generic.bin to your Desktop, make sure the Command Prompt reads <strong>C:&#92;Documents and Settings&#92;<em>your-user-name</em>&#92;Desktop&#62;</strong> &#8211; where <strong>your-user-name</strong> is your Windows user name.</p>
<p></p>
<p><strong>Linux</strong>: enter <strong>tftp -m octet 192.168.1.1 -c put dd-wrt.v24_micro_generic.bin</strong> at your shell/terminal. Note: if you get the the message <strong>error code 3</strong> while trying to flash it, try atftp. The aftp command is: <strong>atftp &#8211;option &#8220;mode octet&#8221; &#8211;verbose -p -l dd-wrt.v24_micro_generic.bin 192.168.1.1</strong></p>
<p></p>
<p><strong>OS X</strong>: enter <strong>tftp -e 192.168.1.1</strong> From the tftp&#62; prompt enter <strong>put dd-wrt.v24_micro_generic.bin</strong></p>
<p></p>
<p>Make sure that the dd-wrt.v24_micro_generic.bin file is in the same folder that you&#8217;re using the Terminal from. For example, if you downloaded dd-wrt.v24_micro_generic.bin to your Downloads folder, make sure you&#8217;re using the Terminal prompt from &#47;Users&#47;<em>your-user-name</em>&#47;Downloads &#8211; where <em>your-user-name</em> is your Mac user name. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img08.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img08a.png" alt="" /><br />
click to enlarge</a></p>
<li> The file will be transferred and automatically installed. Once this is done, DD-WRT will automatically boot. After about a minute, you can browse DD-WRT on your router at <a href="http://192.168.1.1" rel="nofollow" target="_blank">http://192.168.1.1</a>. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img09.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img09a.png" alt="" /><br />
click to enlarge</a></p>
<li> If you browse away from the main page, you&#8217;ll be prompted for a user name and password. The default user name is: <strong>root</strong> and the default password is: <strong>admin</strong>. To change the user name and/or password (a very good idea!!) &#8211; select the <strong>Administration</strong> tab and then the <strong>Management</strong> tab. Enter your new user name and/or password in the spaces provided, and click the <strong>Save</strong> button at the bottom of the screen. </li>
<p><a href="http://www.simplehelp.net/images/ddwrt/img10.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/ddwrt/img10a.png" alt="" /><br />
click to enlarge</a></p>
<li> When you navigate away from the <strong>Management</strong> tab, you&#8217;ll be prompted to enter your user name and password again. Enter your new user name and/or password to continue. </li>
<p><img src="http://www.simplehelp.net/images/ddwrt/img11.png" alt="" /></p>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2008/09/11/how-to-use-the-dd-wrt-firmware-to-monitor-your-bandwidth/" rel="bookmark" title="Permanent Link: How to use the DD-WRT firmware to monitor your bandwidth">How to use the DD-WRT firmware to monitor your bandwidth</a><br /><a href="http://www.simplehelp.net/2006/07/06/how-to-secure-your-wireless-home-network/" rel="bookmark" title="Permanent Link: How to secure your wireless home network">How to secure your wireless home network</a><br /><a href="http://www.simplehelp.net/2006/07/11/cable-modem-troubleshooting-linksys-befcmu10-version-3/" rel="bookmark" title="Permanent Link: Cable Modem Troubleshooting: Linksys BEFCMU10 version 3">Cable Modem Troubleshooting: Linksys BEFCMU10 version 3</a><br /><a href="http://www.simplehelp.net/2006/07/06/cable-modem-troubleshooting-linksys-model-befcmu10-version-2/" rel="bookmark" title="Permanent Link: Cable Modem Troubleshooting: Linksys BEFCMU10 version 2">Cable Modem Troubleshooting: Linksys BEFCMU10 version 2</a><br /><a href="http://www.simplehelp.net/2006/07/06/cable-modem-troubleshooting-linksys-befcmuh4/" rel="bookmark" title="Permanent Link: Cable Modem Troubleshooting: Linksys BEFCMUH4">Cable Modem Troubleshooting: Linksys BEFCMUH4</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/09/11/how-to-flash-the-linksys-wrt54g-v8-with-the-dd-wrt-firmware/feed/</wfw:commentRss>
		<slash:comments>86</slash:comments>
		</item>
		<item>
		<title>How to copy, reuse and even share multiple clipboard items in OS X</title>
		<link>http://www.simplehelp.net/2008/09/03/how-to-copy-reuse-and-even-share-multiple-clipboard-items-in-os-x/</link>
		<comments>http://www.simplehelp.net/2008/09/03/how-to-copy-reuse-and-even-share-multiple-clipboard-items-in-os-x/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 11:00:03 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=1040</guid>
		<description><![CDATA[
Using the free (and beta) app Shadow, you can keep multiple items in your clipboard and bring them back for reusing. More than that, you can even share your clipboard across your network. Keep reading for an overview.. 
From the Shadow web site -

Shadow is the brand new clipboard utility for Mac OS X. Clipboard [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_mac.png" align="right" width="46" height="46" alt="Mac" />
<p>Using the free (and beta) app <a href="http://www.theescapers.com/shadow/index.html" title="the shadow os x clipboard sharing tool" target="_blank">Shadow</a>, you can keep multiple items in your clipboard and bring them back for reusing. More than that, you can even share your clipboard across your network. Keep reading for an overview.. <span id="more-1040"></span></p>
<p>From the Shadow web site -</p>
<blockquote><p>
Shadow is the brand new clipboard utility for Mac OS X. Clipboard managers have come and gone on the Mac, but Shadow brings a new concept &#8211; Copy on one Mac, paste on another! Using Apple&#8217;s Bonjour technology, a super-fast multithreaded server, and a wickedly simple interface, Shadow will change how you use your Mac workgroup. Shadow also provides a multi-item clipboard for each Mac it&#8217;s installed on. If that was not enough, you can add more clipboards if you want, name them whatever you want and store all your clippings in your own categories. You can then decide if you want to share a particular clipboard. If you want to share it with some people, but not others, you can password protect them too! So, even if you only have one Mac on your network, you could still find Shadow invaluable.</p></blockquote>
<ol>
<li> Head over to the <a href="http://www.theescapers.com/shadow/index.html" title="the shadow os x clipboard sharing tool" target="_blank">Shadow</a> public beta page and download it. Unzip the file, and drag <strong>Shadow.app</strong> to your Applications folder. Launch it from there. </li>
<p><img src="http://www.simplehelp.net/images/shadow/shadow00a.png" alt=""  /></p>
<li> The main Shadow window will appear. The left pane keeps track of your clipboards (you have have more than one, so you can share one or more and keep one or more private). The right pane displays the contents of the selected clipboard. Before you go to far, click the &#8220;pencil&#8221; button to set your <strong>Sharing preferences</strong>. </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow01.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow01a.png" alt=""  /><br />
click to enlarge</a></p>
<li> The default clipboard (<strong>System Clipboard</strong>) can&#8217;t be renamed. But it can be shared. If you&#8217;d like to set a password (probably a good idea if you use public WiFi very often) &#8211; this is the place to do it. </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow02.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow02a.png" alt=""  /><br />
click to enlarge</a></p>
<li> Now when you copy things &#8211; text, files, etc, they&#8217;ll be available for reusing via Shadow. You&#8217;ll notice in the screenshot below that I have the <strong>a</strong> character copied to my clipboard. That&#8217;s because as soon as I launched Shadow, the a key stopped responding. Once I quit, I was able to use it again. After re-starting it, the a key worked and so did Shadow. Remember, it&#8217;s beta software.
<p></p>
<p>To re-use an item in your clipboard, select it and hit <strong>return</strong>. Shadow will disappear, and that item will be loaded into your clipboard  and ready to paste. </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow03.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow03a.png" alt=""  /><br />
click to enlarge</a></p>
<li> To set a hotkey and adjust other settings, select the Shadow icon in your menu, and <strong>Preferences&#8230;</strong> from the drop-down list. </li>
<p><img src="http://www.simplehelp.net/images/shadow/shadow04.png" alt=""  /></p>
<li> Click inside the <strong>HotKey</strong> pane and enter the keyboard combo you want to use to activate Shadow. </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow05.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow05a.png" alt=""  /><br />
click to enlarge</a></p>
<li> The <strong>UI</strong> tab allows you to disable hiding after selecting an item in your Shadow clipboard, and to change the highlight color. </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow06.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow06a.png" alt=""  /><br />
click to enlarge</a></p>
<li> The <strong>Advanced</strong> tab allows you to set a limit for the number of items in your clipboard history.  </li>
<p><a href="http://www.simplehelp.net/images/shadow/shadow07.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/shadow/shadow07a.png" alt=""  /><br />
click to enlarge</a></p>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/10/03/how-to-save-and-reuse-your-clipboard-history-in-os-x/" rel="bookmark" title="Permanent Link: How to save and reuse your clipboard history in OS X">How to save and reuse your clipboard history in OS X</a><br /><a href="http://www.simplehelp.net/2008/10/09/power-up-copy-and-paste-with-clipx/" rel="bookmark" title="Permanent Link: Power Up Copy and Paste With ClipX">Power Up Copy and Paste With ClipX</a><br /><a href="http://www.simplehelp.net/2006/07/17/home-networking-101/" rel="bookmark" title="Permanent Link: Home Networking 101">Home Networking 101</a><br /><a href="http://www.simplehelp.net/2007/02/14/how-to-share-files-and-folders-between-windows-and-os-x-using-parallels/" rel="bookmark" title="Permanent Link: How to share files and folders between Windows and OS X using Parallels">How to share files and folders between Windows and OS X using Parallels</a><br /><a href="http://www.simplehelp.net/2007/05/24/roundup-the-under-appreciated-posts/" rel="bookmark" title="Permanent Link: Roundup: The Under-appreciated Posts">Roundup: The Under-appreciated Posts</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/09/03/how-to-copy-reuse-and-even-share-multiple-clipboard-items-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install and setup Jinzora (streaming media server) in OS X</title>
		<link>http://www.simplehelp.net/2008/08/11/how-to-install-and-setup-jinzora-streaming-media-server-in-os-x/</link>
		<comments>http://www.simplehelp.net/2008/08/11/how-to-install-and-setup-jinzora-streaming-media-server-in-os-x/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 11:33:39 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=842</guid>
		<description><![CDATA[
This tutorial will guide you every step of the way through installing and setting up Jinzora, a very robust streaming media server &#8211; in OS X. 
From the Jinzora site -
Jinzora is the ultimate web based media streaming and management system. Streaming your media with Jinzora gives you quick and easy access to your online [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_mac.png" align="right" width="46" height="46" alt="Mac" />
<p>This tutorial will guide you every step of the way through installing and setting up Jinzora, a very robust streaming media server &#8211; in OS X. <span id="more-842"></span></p>
<p>From the <a href="http://en.jinzora.com/" target="_blank">Jinzora site</a> -</p>
<blockquote><p>Jinzora is the ultimate web based media streaming and management system. Streaming your media with Jinzora gives you quick and easy access to your online music and video collection from any device with a web browser. Enjoy your media from your PC, notebook, PDA, Smart Phone, Xbox, PS3 or Wii.</p></blockquote>
<p>Jinzora supports the following formats &#8211; <strong>Audio:</strong> AAC, M4A, Midi, MP3, MP4, Ogg Vorbis, RM and WMA. <strong>Audio (Transcoded): </strong> Flac, MPC, WAV, WMA Lossless, WV and SHN. <strong>Video:</strong> AVI, WMV, MPEG and MOV.</p>
<p>If you&#8217;d like to install Jinzora in Windows, <a href="http://lifehacker.com/software/home-server/geek-to-live-build-an-internet-jukebox-with-jinzora-254178.php" target="_blank" title="install jinzora in Windows">Lifehacker has you covered</a>.</p>
<ol>
<li> Before you install Jinzora, you&#8217;ll need to install and setup MAMP (Mac, Apache, MySQL and PHP). Fortunately we have you covered with a <a href="http://www.simplehelp.net/2008/08/08/how-to-easily-install-apache-mysql-and-php-in-os-x/" title="how to setup apache, mysql and php in os x" target="_blank">tutorial on doing just that in OS X</a>. </li>
<li> Head over to the <a href="http://en.jinzora.com/index.php/download" target="_blank" title="download jinzora" rel="nofollow">Jinzora download page</a> and download the <strong>Linux</strong> version (yes, the Linux version). Extract the files to your Document Root (if you&#8217;re using MAMP, the default will be &#47;Applications&#47;MAMP&#47;htdocs&#47;). </li>
<li> Open a Terminal, navigate to &#47;Applications&#47;MAMP&#47;htdocs&#47;jinzora2&#47; and enter the following 4 commands:<br />
<blockquote><p>
chmod 777 settings.php<br />
chmod 777 jukebox/settings.php<br />
chmod 777 -R temp<br />
chmod 777 -R data
</p></blockquote>
</li>
<p><img src="http://www.simplehelp.net/images/jinzora/term.png" alt="os x terminal" border="0" /></p>
<li> To start the browser based installation, navigate to index.php in the jinzora2 directory. Again, if you&#8217;re using MAMP with the default settings, this will be <a href="http://localhost:8888/jinzora2/index.php title="jinzora install URL" rel="nofollow" target="_blank">http://localhost:8888/jinzora2/index.php</a>. Review the info provided on this page, and select your <strong>Language:</strong> from the drop down list. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img01.png"><img src="http://www.simplehelp.net/images/jinzora/img01a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Jinzora will run a check to make sure that your server (Mac) meets the minimum requirements. It will also check for <strong>Optional Packages</strong>. Some of these won&#8217;t be found &#8211; don&#8217;t worry about it. If the <strong>Recommended Settings</strong> show up as &#8220;red&#8221;, you&#8217;ll need to edit your php.ini file (found in &#47;Applications&#47;MAMP&#47;conf&#47;php5&#47;php.ini &#8211; if you&#8217;re using MAMP in the default installation location).
<p>Open php.ini in a text editor, and scroll to the line:</p>
<p>memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)</p>
<p>change it to:</p>
<p>memory_limit = 64M      ; Maximum amount of memory a script may consume (64MB)</p>
<p>Now look for the line:</p>
<p>max_execution_time = 30     ; Maximum execution time of each script, in seconds</p>
<p>and change it to:</p>
<p>max_execution_time = 300     ; Maximum execution time of each script, in seconds</p>
<p>Save the file. Click <strong>Proceed to License</strong> to continue. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img02.png"><img src="http://www.simplehelp.net/images/jinzora/img02a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Review the license (yeah right), place a check in the box labeled <strong>I Agree to the license terms</strong> and click <strong>Proceed to Install Type</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img03.png"><img src="http://www.simplehelp.net/images/jinzora/img03a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> For the <strong>Installation Type:</strong> select <strong>Standalone</strong> (the default). For the <strong>Jukebox Mode:</strong> select <strong>Streaming Only</strong>. Click to <strong>Proceed to Main Settings</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img04.png"><img src="http://www.simplehelp.net/images/jinzora/img04a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Here you&#8217;ll need to specify a number of settings. The <strong>Main Settings</strong> are all straight forward. The <strong>Frontend:</strong> and <strong>Style:</strong> can be changed later, so don&#8217;t stress too much over your selections. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img05.png"><img src="http://www.simplehelp.net/images/jinzora/img05a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> The <strong>Import Settings</strong> are <em>very</em> important. Hover your cursor over the <strong>Data Structure:</strong> drop-down list and a detailed explanation of the options will be displayed.  </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img06.png"><img src="http://www.simplehelp.net/images/jinzora/img06a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> I opted for <strong>Tag Data</strong> as my <strong>Data Structure</strong>, because I have spent a lot of time tagging my music, but my folder organization is terrible. Again, hover your cursor over the <strong>Media Layout:</strong> drop-down list for a detailed explanation of the choices.  </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img07.png"><img src="http://www.simplehelp.net/images/jinzora/img07a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> I opted for <strong>Artist</strong> as my <strong>Media Layout</strong>, but you of course can select the method that works best for you. Click <strong>Proceed to Backend Setup</strong> when you&#8217;ve made all your selections. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img08.png"><img src="http://www.simplehelp.net/images/jinzora/img08a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now you&#8217;ll need to specify the info for your database. Your database username and password can be found in your <a href="http://www.simplehelp.net/2008/08/08/how-to-easily-install-apache-mysql-and-php-in-os-x/" title="how to setup apache, mysql and php in os x" target="_blank">MAMP setup</a> if you&#8217;re unsure what they are. Give your database a name (jinzora2, jinzora or something descriptive is a good idea), select <strong>MySQL</strong> as the <strong>Database Type</strong>, and unless you&#8217;ve already created the database manually, select <strong>True</strong> from the <strong>Create Database:</strong> drop-down. Click <strong>Continue with Backend Install</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img09.png"><img src="http://www.simplehelp.net/images/jinzora/img09a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Assuming everything was successful, click <strong>Proceed to Import Media</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img10.png"><img src="http://www.simplehelp.net/images/jinzora/img10a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now it&#8217;s time to add your media. Navigate to the top level folder you want to add, and click <strong>Analyze</strong>. As you&#8217;ll note from the screenshot below, I only added some of my music collection (I created a temp folder and moved some albums into it). This was for screenshot purposes only. It can take quite a while to add a large media collection, and you can always add additional folders later. </li>
<p><img src="http://www.simplehelp.net/images/jinzora/img11.png" alt="" border="0" /></p>
<li> Once completed, click <strong>Proceed</strong>.  </li>
<p><img src="http://www.simplehelp.net/images/jinzora/img12.png" alt="" border="0" /></p>
<li> You can add more media, or continue with the rest of the setup. When you&#8217;re done adding media, click <strong>Proceed to Save Config</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img13.png"><img src="http://www.simplehelp.net/images/jinzora/img13a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> If everything was successful, click <strong>Proceed to Launch Jinzora</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img14.png"><img src="http://www.simplehelp.net/images/jinzora/img14a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now you&#8217;ll be asked if you want to share anonymous stats. I&#8217;m a nice guy, so I opted to do just that. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img15.png"><img src="http://www.simplehelp.net/images/jinzora/img15a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Click <strong>Launch Jinzora</strong>. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img16.png"><img src="http://www.simplehelp.net/images/jinzora/img16a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now sign in to Jinzora with the user name and password you specified way back in step #8. </li>
<p><img src="http://www.simplehelp.net/images/jinzora/img17.png" alt="" border="0" /></p>
<li> At this point you may receive an error message about your installation not being secure. Move the &#47;Applications&#47;MAMP&#47;htdocs&#47;jinzora2&#47;install folder to somewhere else on your hard drive. Do <strong>not</strong> delete the <strong>install</strong> folder, as you&#8217;ll need it if you want to add more media folders in the future.
<p>Refresh the page after you&#8217;ve moved the <strong>install</strong> folder&#8230; </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img18.png"><img src="http://www.simplehelp.net/images/jinzora/img18a.png" alt="" border="1" /><br />
click to enlarge</a></p>
<li> and the admin interface to Jinzora will appear, with all of your media loaded. </li>
<p><a href="http://www.simplehelp.net/images/jinzora/img19.png"><img src="http://www.simplehelp.net/images/jinzora/img19a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> On another computer (or Smartphone etc) load the URL http://ip-of-your-mac:8888/jinzora2
<p>If your Mac and the &#8220;other computer&#8221; are on the same local network, the Jinzora login page will appear. If the other computer <em>isn&#8217;t</em> on the same network, you&#8217;ll need to make sure that port 8888 (the default MAMP web server port) is open/allowed through your firewall. If your Mac is behind a router, check <a href="http://portforward.com/" title="how to forward ports on your router" target="_blank" rel="nofollow">PortForward.com</a> for instructions on forwarding ports on your router.</p>
<p>After you&#8217;ve signed in to Jinzora, click the Play button next to one of your albums/artists/songs. That album/artist/song will start to stream.</li>
<p><a href="http://www.simplehelp.net/images/jinzora/ee.png"><img src="http://www.simplehelp.net/images/jinzora/eea.png" alt="" border="0" /><br />
click to enlarge</a></p>
<p><img src="http://www.simplehelp.net/images/jinzora/sshot008.jpg" alt="" border="0" /><br />
Windows Mobile interface</p>
<p><img src="http://www.simplehelp.net/images/jinzora/sshot009.jpg" alt="" border="0" /><br />
Streaming to Windows Media Player Mobile
</ol>
<h3>Advanced</h3>
<p>To stream certain file types (flac, shn etc), you&#8217;ll need to install some additional software. Open settings.php in a text editor (found in &#47;Applications&#47;MAMP&#47;htdocs&#47;jinzora2) and scroll to the <strong>&#47;&#47; Resampling</strong> section.</p>
<p>Change <strong>$allow_resample = &#34;false&#34;;</strong> to <strong>$allow_resample = &#34;true&#34;;</strong></p>
<p>Look for the lines:</p>
<p>$path_to_lame = &#34;&#47;usr&#47;local&#47;bin&#47;lame&#34;;<br />
$path_to_flac = &#34;&#47;usr&#47;local&#47;bin&#47;flac&#34;;</p>
<p>and install flac and lame to those locations. Repeat for each format you want to stream.</p>
<p>If you&#8217;re only streaming files across your local network, you can skip the above steps, as Jinzora will ignore resampling requests for local networks. But make sure your internal networks IP addresses are included in the line:</p>
<p>$no_resample_subnets = &#8220;(192&#92;.168&#92;..*&#92;..*)|(127&#92;..*&#92;..*&#92;..*)&#8221;;</p>
<p>eg. if you use 10. as your internal network IP range, add |(10&#92;..*&#92;..*&#92;..*)&#8221;</p>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/06/27/how-to-use-sockso-as-your-own-personal-streaming-music-server/" rel="bookmark" title="Permanent Link: How to use Sockso as your own personal streaming music server">How to use Sockso as your own personal streaming music server</a><br /><a href="http://www.simplehelp.net/2007/12/06/how-to-stream-audio-and-video-from-your-mac-to-your-iphone-or-ipod-touch/" rel="bookmark" title="Permanent Link: How to stream audio and video from your Mac to your iPhone or iPod Touch">How to stream audio and video from your Mac to your iPhone or iPod Touch</a><br /><a href="http://www.simplehelp.net/2009/04/24/how-to-format-and-mount-a-usb-hard-drive-in-linux/" rel="bookmark" title="Permanent Link: How to format and mount a USB hard drive in Linux">How to format and mount a USB hard drive in Linux</a><br /><a href="http://www.simplehelp.net/2007/09/22/how-to-stream-audio-and-video-from-your-computer-across-the-internet/" rel="bookmark" title="Permanent Link: How to stream audio and video from your computer across the Internet">How to stream audio and video from your computer across the Internet</a><br /><a href="http://www.simplehelp.net/2008/08/25/how-to-install-and-setup-apache-mysql-and-php-in-windows/" rel="bookmark" title="Permanent Link: How to install and setup Apache, MySQL and PHP in Windows">How to install and setup Apache, MySQL and PHP in Windows</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/08/11/how-to-install-and-setup-jinzora-streaming-media-server-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a remote file system as a local drive in OS X</title>
		<link>http://www.simplehelp.net/2008/07/25/how-to-mount-a-remote-file-system-as-a-local-drive-in-os-x/</link>
		<comments>http://www.simplehelp.net/2008/07/25/how-to-mount-a-remote-file-system-as-a-local-drive-in-os-x/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 11:30:27 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=745</guid>
		<description><![CDATA[
This tutorial will guide you through the process of setting up Macfusion. After installing Macfuse (easy) and then Macfusion (even easier), you&#8217;ll be able to mount a remote FTP or SSH host as a local drive. This allows you to access, read/view, write/edit and transfer files to and from your local hard drive to the [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_mac.png" align="right" width="46" height="46" alt="Mac" />
<p>This tutorial will guide you through the process of setting up Macfusion. After installing Macfuse (easy) and then Macfusion (even easier), you&#8217;ll be able to mount a remote FTP or SSH host as a local drive. This allows you to access, read/view, write/edit and transfer files to and from your local hard drive to the remote one &#8211; as if it was local as well. Keep reading for the complete walk-through. <span id="more-745"></span></p>
<ol>
<li> First up, download <a href="http://code.google.com/p/macfuse/" title="macfuse from google" target="_blank">MacFUSE</a> from Google. The installation is pretty straight forward &#8211; mostly you&#8217;ll just click next a bunch of times. Once it&#8217;s installed, download <a href="http://macfusionapp.org" title="macfusion home page" target="_blank">Macfusion</a>. To install it, just unzip the file and drag the app to your <strong>Applications</strong> folder.
<p>Launch it from there. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img00a.png" border="0" alt="" /></p>
<li> You&#8217;ll likely be notified that the <strong>macfusion agent process</strong> has not started. If you&#8217;d like it to start each time you sign in, place a check in the <strong>Start agent automatically on login</strong> box. Either way, click the <strong>Start</strong> button. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img01.png" border="0" alt="" /></p>
<li> You&#8217;ll be presented with a rather plain Macfusion window. Lets start by adding a FTP site to mount as a local drive. Click the small <strong>+</strong> (plus symbol) in the bottom left corner. Select <strong>FTPFS</strong> from the drop-down list. </li>
<p><a href="http://www.siimlehelp.net/images/macfusion/img02.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/macfusion/img02a.png" border="0" alt="" /><br />
click to enlarge</a></p>
<li> Give your &#8220;FTP drive&#8221; a descriptive name in the top field, and then enter the appropriate information in each of the additional fields. The <strong>Path:</strong> refers to the location you&#8217;d like to have mounted once you connect. For example, when you FTP to your host and successfully login, you&#8217;re &#8220;placed&#8221; into a specific folder (usually something like &#47;home&#47;your-user-name&#47;). If you&#8217;d like to specify a different location, do so in the <strong>Path:</strong> field.
<p>Click the <strong>Macfusion</strong> tab for a few more options. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img03.png" border="0" alt="" /></p>
<li> From here you can change the <strong>Mount Point:</strong> &#8211; if you&#8217;d rather have the drive show up in your Documents folder, you would enter something like<strong> &#47;Users&#47;your-user-name&#47;Documents&#47;</strong>. This tutorial assumes you&#8217;re using the default (which means leave it blank). If you&#8217;d like to give the volume a name other than the default (which is the host name), enter it in the <strong>Volume Name:</strong> field.
<p>When you&#8217;re done making any changes, click <strong>OK</strong></li>
<p><img src="http://www.simplehelp.net/images/macfusion/img04.png" border="0" alt="" /></p>
<li> You&#8217;ll be prompted to allow Macfusion to store your login details in the keychain. Click <strong>Always Allow</strong> (unless you have reason not to &#8211; in which case click <strong>Allow</strong>. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img05a.png" border="0" alt="" /></p>
<li> Now click <strong>Mount</strong> back in the main Macfusion Window. You may be prompted to allow the items in the keychain again. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img06a.png" border="0" alt="" /></p>
<li> The status will change from <strong>(Unmounted)</strong> to <strong>(Mounted)</strong></li>
<p><img src="http://www.simplehelp.net/images/macfusion/img07a.png" border="0" alt="" /></p>
<li> Open a Finder window, and you&#8217;ll see your FTP host mounted as a local drive in the <strong>DEVICES</strong> list. You can browse it as you would any other local drive. </li>
<p><a href="http://www.siimlehelp.net/images/macfusion/img08.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/macfusion/img08a.png" border="0" alt="" /><br />
click to enlarge</a></p>
<li> You can read/view, write and edit files as if they were on your Mac. </li>
<p><a href="http://www.siimlehelp.net/images/macfusion/img09.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/macfusion/img09a.png" border="0" alt="" /><br />
click to enlarge</a></p>
<li> To add a SSH drive the process is very similar. Select the <strong>+</strong> (plus sign) and then <strong>SSHFS</strong> from the drop-down list. </li>
<p><a href="http://www.siimlehelp.net/images/macfusion/img11.png" style="text-decoration:none"><img src="http://www.simplehelp.net/images/macfusion/img11a.png" border="0" alt="" /><br />
click to enlarge</a></p>
<li> Again, enter the appropriate info in the spaces provided. Click the <strong>SSH Advanced</strong> tab when you&#8217;re done. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img12.png" border="0" alt="" /></p>
<li> From here you can change the SSH port if your host uses one other than 22. You can also select to <strong>Enable Compression</strong> (I didn&#8217;t) or de-select <strong>Follow Symbolic Links</strong> (I didn&#8217;t &#8211; it&#8217;s useful). When you&#8217;re done, click the <strong>Macfusion</strong> tab.  </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img13.png" border="0" alt="" /></p>
<li> From here you can change the <strong>Mount Point:</strong> the same way you can with FTPFS, or give your volume a name other than the default (which again will be the host). Click <strong>OK</strong> when you&#8217;re done.</li>
<p><img src="http://www.simplehelp.net/images/macfusion/img14.png" border="0" alt="" /></p>
<li> You&#8217;ll go through the <strong>Always Allow</strong> keychain process again, and then after clicking <strong>Mount</strong>, your SSH host will be mounted as a local drive. </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img15a.png" border="0" alt="" /></p>
<li> Now each time you launch Macfusion your sites will be saved, and you can quickly connect to them by clicking the <strong>Mount</strong> button.  </li>
<p><img src="http://www.simplehelp.net/images/macfusion/img16a.png" border="0" alt="" />
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2009/04/24/how-to-format-and-mount-a-usb-hard-drive-in-linux/" rel="bookmark" title="Permanent Link: How to format and mount a USB hard drive in Linux">How to format and mount a USB hard drive in Linux</a><br /><a href="http://www.simplehelp.net/2007/09/24/how-to-extract-or-access-the-contents-of-an-iso-file-in-windows/" rel="bookmark" title="Permanent Link: How to extract (or access) the contents of an .iso file in Windows">How to extract (or access) the contents of an .iso file in Windows</a><br /><a href="http://www.simplehelp.net/2009/04/22/how-to-remotely-access-your-mysql-in-a-secure-manner/" rel="bookmark" title="Permanent Link: How to remotely access your MySQL in a secure manner">How to remotely access your MySQL in a secure manner</a><br /><a href="http://www.simplehelp.net/2006/07/16/how-to-disable-remote-assistance-and-remote-desktop-in-windows-xp/" rel="bookmark" title="Permanent Link: How to disable Remote Assistance and Remote Desktop in Windows XP">How to disable Remote Assistance and Remote Desktop in Windows XP</a><br /><a href="http://www.simplehelp.net/2008/11/03/how-to-mount-a-remote-filesystem-in-ubuntu/" rel="bookmark" title="Permanent Link: How to mount a remote filesystem in Ubuntu">How to mount a remote filesystem in Ubuntu</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/07/25/how-to-mount-a-remote-file-system-as-a-local-drive-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How access the files on your Mac from Vista</title>
		<link>http://www.simplehelp.net/2008/07/17/how-access-the-files-on-your-mac-from-vista/</link>
		<comments>http://www.simplehelp.net/2008/07/17/how-access-the-files-on-your-mac-from-vista/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 12:14:20 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/?p=663</guid>
		<description><![CDATA[

This tutorial will guide you through the steps required to access your OS X files and folders from Windows Vista. 

 First you&#8217;ll need to enable File Sharing in OS X. Click the &#8220;Apple button&#8221; from the main menu, and select System Preferences&#8230; from the drop-down list. In the Internet &#038; Network section, click the [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_mac.png" align="right" width="46" height="46" alt="Mac" />
<img src="/wp-images/icons/topic_windows.jpg" align="right" width="50" height="50" alt="Windows" />
<p>This tutorial will guide you through the steps required to access your OS X files and folders from Windows Vista. <span id="more-663"></span></p>
<ol>
<li> First you&#8217;ll need to enable File Sharing in OS X. Click the &#8220;Apple button&#8221; from the main menu, and select <strong>System Preferences&#8230;</strong> from the drop-down list. In the <strong>Internet &#038; Network</strong> section, click the <strong>Sharing</strong> icon. </li>
<p><img src="http://www.simplehelp.net/images/winosxshare/share1.jpg" alt="" border="0" /></p>
<li> Place a check in the <strong>File Sharing</strong> box, then click the <strong>Options&#8230;</strong> button. </li>
<p><a href="http://www.simplehelp.net/images/winosxshare/share2.jpg" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/share2a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now place a check in the box labeled <strong>Share files and folders using SMB</strong>. Finally, place a check in the box next to the user name (account) you want to connect to your Mac with. </li>
<p><a href="http://www.simplehelp.net/images/winosxshare/share3.jpg" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/share3a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> You&#8217;ll be prompted to enter the password for the user name you want to connect to your Mac with. Enter it now. </li>
<p><img src="http://www.simplehelp.net/images/winosxshare/share4.jpg" alt="" border="0" /></p>
<li> Now click <strong>Done</strong> and close the System Preferences window. </li>
<p><a href="http://www.simplehelp.net/images/winosxshare/share5.jpg" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/share5a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> In Vista, click the Start button and select <strong>Network</strong>. If your Mac is listed, skip down to step #9.
<p>If you get a yellow &#8220;bar&#8221; telling you that File Sharing is disabled, click that bar. </li>
<p><a href="http://www.simplehelp.net/images/winosxshare/img00.png" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/img00a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Select <strong>Turn on network discovery and file sharing</strong>. </li>
<p><img src="http://www.simplehelp.net/images/winosxshare/img01.png" alt="" border="0" /></p>
<li> Now you&#8217;ll be prompted with a window asking if you want to turn on Network discover and file sharing for all public networks, or just &#8220;private&#8221; network (like the computers in your home network). In all likelihood you&#8217;ll want to select <strong>No, make the network I am connected to a private network</strong>, but if you know for certain you want discovery and file sharing enabled for public network, select it. </li>
<p><a href="http://www.simplehelp.net/images/winosxshare/img04.png" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/img04a.png" alt="" border="0" /><br />
click to enlarge</a></p>
<li> And now all of the computers &#8211; including your Mac &#8211; will be listed. Double-click the icon that for your Mac. </li>
<p><img src="http://www.simplehelp.net/images/winosxshare/img02.png" alt="" border="0" /></p>
<li> In the <strong>User name:</strong> field enter your user name in the format:
<p><strong>Your-Mac-Name&#92;Your-User-Name</strong></p>
<p>&#8220;Your-Mac-Name&#8221; is the name of the icon you just double-clicked. And yes, it is case sensitive. Your user name is your OS X user name &#8211; which can be found in the <strong>Accounts</strong> section of your <strong>System Preferences</strong>. Then enter your password in the <strong>Password:</strong> field. </li>
<p><img src="http://www.simplehelp.net/images/winosxshare/img03.png" alt="" border="0" /></p>
<li> Now you can access all of your OS X files and folders from Vista!</li>
<p><a href="http://www.simplehelp.net/images/winosxshare/img05.png" title="screenshot of "><img src="http://www.simplehelp.net/images/winosxshare/img05a.png" alt="" border="0" /><br />
click to enlarge</a>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/06/13/how-to-allow-a-program-through-the-windows-vista-firewall/" rel="bookmark" title="Permanent Link: How to allow a program through the Windows Vista Firewall">How to allow a program through the Windows Vista Firewall</a><br /><a href="http://www.simplehelp.net/2008/06/10/how-to-create-a-custom-control-panel-for-windows-vista/" rel="bookmark" title="Permanent Link: How to create a custom Control Panel for Windows Vista">How to create a custom Control Panel for Windows Vista</a><br /><a href="http://www.simplehelp.net/2007/02/06/screenshot-simulation-windows-vista-tcpip-properties/" rel="bookmark" title="Permanent Link: Screenshot Simulation: Windows Vista TCP/IP Properties">Screenshot Simulation: Windows Vista TCP/IP Properties</a><br /><a href="http://www.simplehelp.net/2008/12/18/how-to-easily-tweak-windows-vista/" rel="bookmark" title="Permanent Link: How to easily tweak Windows Vista">How to easily tweak Windows Vista</a><br /><a href="http://www.simplehelp.net/2008/04/29/how-to-display-file-extensions-in-windows-vista/" rel="bookmark" title="Permanent Link: How to display file extensions in Windows Vista">How to display file extensions in Windows Vista</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/07/17/how-access-the-files-on-your-mac-from-vista/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to watch Hulu videos if you live outside the US</title>
		<link>http://www.simplehelp.net/2008/05/24/how-to-watch-hulu-videos-if-you-live-outside-the-us/</link>
		<comments>http://www.simplehelp.net/2008/05/24/how-to-watch-hulu-videos-if-you-live-outside-the-us/#comments</comments>
		<pubDate>Sat, 24 May 2008 23:43:29 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/2008/05/24/how-to-watch-hulu-videos-if-you-live-outside-the-us/</guid>
		<description><![CDATA[Using the free (but ad-sponsored) software Hotspot Shield you can create a connection via a virtual private network (VPN) to &#8220;trick&#8221; Hulu into thinking your PC/Mac is in the United States. Continue reading for a walkthrough on using Hotspot Shield. 

 Hotspot Shield runs on the following operating systems:
* Windows Vista
* Windows XP
* Windows 2000
* [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><p>Using the free (but ad-sponsored) software <a href="http://www.hotspotshield.com/" target="_blank" rel="nofollow" title="hotspot shield home page">Hotspot Shield</a> you can create a connection via a virtual private network (VPN) to &#8220;trick&#8221; Hulu into thinking your PC/Mac is in the United States. Continue reading for a walkthrough on using Hotspot Shield. <span id="more-574"></span></p>
<ol>
<li> Hotspot Shield runs on the following operating systems:
<p>* Windows Vista<br />
* Windows XP<br />
* Windows 2000<br />
* Mac OS X (10.5 Leopard)<br />
* Mac OS X (10.4 Tiger)</p>
<p>So assuming you have one of those, proceed to the <a href="http://www.hotspotshield.com/downloads/thank-you-CA/" title="download hotspot shield" rel="nofollow" target="_blank">Hotspot Shield download page</a>.</p>
<li> Save the file to your desktop, and when the download has completed, run the setup file (OS X users will just have to drag Hotspot Shield to their Applications folder). </li>
<li> Now run Hotspot Shield. Windows users will notice a small red icon in the system tray. OS X users will see a red icon in the menu bar. </li>
<p><img src="http://www.simplehelp.net/images/hulu/img02.jpg" alt="" border="1" /></p>
<li> Your browser will pop up a new window/tab and you&#8217;ll be prompted to click a <strong>Run Hotspot Shield</strong> button. Give it a click.  </li>
<p><img src="http://www.simplehelp.net/images/hulu/img01.jpg" alt="" border="0" /></p>
<li> The page will refresh and you should see a small square with the status being displayed. </li>
<p><img src="http://www.simplehelp.net/images/hulu/img03.jpg" alt="" border="1" /></p>
<li> Once connected, the red icon will turn green, and the web page will once again redirect. This time to a sponsor/advertiser. You can close that window/tab now. </li>
<p><img src="http://www.simplehelp.net/images/hulu/img04.jpg" alt="" border="1" /></p>
<li> Now visit hulu.com. You&#8217;ll notice a &#8220;tab&#8221; across the top of the web page &#8211; this is how Hotspot Shield makes money &#8211; an ad will be displayed at the top of each site you visit, unless it&#8217;s a secure site (https). You can close the ad banner by clicking the red <strong>Close</strong> X. </li>
<p><img src="http://www.simplehelp.net/images/hulu/img05.jpg" alt="" border="1" /></p>
<li> And now enjoy watching Hulu videos! As long as you remain connected to the Hotspot Shield service, Hulu (and all other web pages) will think that your PC/Mac is connected to the Internet in the US.
<p><a href="http://www.simplehelp.net/images/hulu/img06.jpg" title="screenshot of a video playing on hulu"><img src="http://www.simplehelp.net/images/hulu/img06a.jpg" alt="HD video in hulu" border="0" /><br />
click to enlarge</a></p>
<li> To quit Hotspot Shield, right-click the system tray icon and select Quit. OS X users click the red Hotspot Icon in the menu bar and select Quit.<br />
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/07/18/an-introduction-to-miro/" rel="bookmark" title="Permanent Link: An introduction to Miro">An introduction to Miro</a><br /><a href="http://www.simplehelp.net/2009/06/30/how-to-view-live-updates-in-a-file-under-linux/" rel="bookmark" title="Permanent Link: How to view live updates in a file under Linux">How to view live updates in a file under Linux</a><br /><a href="http://www.simplehelp.net/2009/07/06/how-to-backup-your-windows-live-contacts/" rel="bookmark" title="Permanent Link: How to backup your Windows Live Contacts">How to backup your Windows Live Contacts</a><br /><a href="http://www.simplehelp.net/2008/05/23/how-to-watch-youtube-videos-in-the-ubuntu-media-player/" rel="bookmark" title="Permanent Link: How to watch YouTube videos in the Ubuntu Media Player">How to watch YouTube videos in the Ubuntu Media Player</a><br /><a href="http://www.simplehelp.net/2007/07/25/dashboard-widget-facebook-watch/" rel="bookmark" title="Permanent Link: Dashboard Widget: Facebook Watch">Dashboard Widget: Facebook Watch</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/05/24/how-to-watch-hulu-videos-if-you-live-outside-the-us/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>How to connect to a Windows XP computer from Windows Vista</title>
		<link>http://www.simplehelp.net/2008/05/20/how-to-connect-to-a-windows-xp-computer-from-windows-vista/</link>
		<comments>http://www.simplehelp.net/2008/05/20/how-to-connect-to-a-windows-xp-computer-from-windows-vista/#comments</comments>
		<pubDate>Tue, 20 May 2008 12:00:21 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/2008/05/20/how-to-connect-to-a-windows-xp-computer-from-windows-vista/</guid>
		<description><![CDATA[
This tutorial will guide you through the steps required to access any shared files, folders or printers you may have set up on Windows XP, from Windows Vista.
A bit of background, from this Vista TechCenter article -

Network Map uses a discovery protocol called Link-Layer Topology Discovery (LLTD) in order to query the other devices on [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_windows.jpg" align="right" width="50" height="50" alt="Windows" />
<p>This tutorial will guide you through the steps required to access any shared files, folders or printers you may have set up on Windows XP, from Windows Vista.</p>
<p>A bit of background, from <a href="http://technet2.microsoft.com/WindowsVista/en/library/409fb2fa-8eb8-45af-b063-4f50f5a77b291033.mspx?mfr=true" target="_blank" rel="nofollow" title="thanks MS for making it difficult to connect to an XP PC from Vista good ob">this Vista TechCenter article</a> -</p>
<blockquote><p>
Network Map uses a discovery protocol called Link-Layer Topology Discovery (LLTD) in order to query the other devices on the network to determine how the network is organized. Computers that are running Windows Vista include the software components that implement the LLTD protocol. For network computers that are running Windows XP to appear on the map, they must have a discovery protocol enabled that can respond to the mapping computer&#8217;s requests.
</p></blockquote>
<p><span id="more-566"></span></p>
<ol>
<li> First up &#8211; on your computer running XP, download and install the <a href="http://download.microsoft.com/download/0/5/f/05fc30db-e7af-4488-a3a8-23999328e4bd/WindowsXP-KB922120-v5-x86-ENU.exe" rel="nofollow" title="Link Layer Topology Discovery (LLTD) Responder">Link Layer Topology Discovery (LLTD) Responder</a>. If that link doesn&#8217;t work (it might not for very long, as it&#8217;s a direct link to the exe and Microsoft wants you to go through &#8220;Genuine Validation&#8221; &#8211; use <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4F01A31D-EE46-481E-BA11-37F485FA34EA&#038;displaylang=en" title="link layer topology discovery responder">this one</a>.
<p>Click <strong>Run</strong> when prompted.
</li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/lltd00.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/lltd00a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> You&#8217;ll have to click <strong>Next</strong> a couple of times, but that&#8217;s about it. What you&#8217;re not told, is that you <strong>have to reboot</strong> before it will work. So restart your XP PC after the installation is done.  </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/lltd01.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/lltd01a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now on your computer running Vista, open the <strong>Network</strong> item from the Start menu. If your XP computer doesn&#8217;t show up, have no fear. Enter <strong>&#92;&#92;your-xp-ip-address</strong> in the address bar and hit enter. If you need help figuring out the IP address your XP computer is using, see <a href="http://www.simplehelp.net/2006/07/06/how-to-determine-your-ip-or-mac-address-in-windows/#xp" title="how to find your ip address in windows xp" target="_blank">this tutorial on determining your IP address in XP</a>. </li>
<p><img src="http://www.simplehelp.net/images/connectxptovista/ll001.jpg" alt="" border="1" /></p>
<li> And now any of the shared folders or printers on your XP computer will be displayed. </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/ll002.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/ll002a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Double-click a shared folder to access its contents. </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/ll003.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/ll003a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> You can create a shortcut to the shared XP folder by dragging it to your sidebar. </li>
<p><img src="http://www.simplehelp.net/images/connectxptovista/ll004.jpg" alt="" border="1" /></p>
<li> Right-click the new entry in your sidebar and select <strong>Properties</strong>. From the <strong>General</strong> tab you can rename the folder. Alternately you can just select <strong>Rename</strong> from the right-click menu. </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/ll005.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/ll005a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> Now the sidebar shortcut will display a more suitable name. </li>
<p><img src="http://www.simplehelp.net/images/connectxptovista/ll011.jpg" alt="" border="1" /></p>
<li> If you&#8217;d prefer to have the shared folder show up as a drive, right-click that folder and select <strong>Map Network Drive&#8230;</strong></li>
<p><img src="http://www.simplehelp.net/images/connectxptovista/ll006.jpg" alt="" border="1" /></p>
<li> Choose the letter you&#8217;d like this drive to appear as (in the screenshot below I opted for <strong>F&#58;</strong>). If you&#8217;d like the shared folder to be set as a drive each time your Vista PC starts, make sure <strong>Reconnect at login</strong> is selected. Click <strong>Finish</strong> when you&#8217;re done. </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/ll007.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/ll007a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> And now your shared folder will appear as its own drive.  </li>
<p><a href="http://www.simplehelp.net/images/connectxptovista/ll008.jpg" title=""><img src="http://www.simplehelp.net/images/connectxptovista/ll008a.jpg" alt="" border="0" /><br />
click to enlarge</a></p>
<li> To rename the drive, right-click it and select <strong>Rename</strong>. </li>
<p><img src="http://www.simplehelp.net/images/connectxptovista/ll009.jpg" alt="" border="1" /></p>
<li> That&#8217;s it &#8211; you&#8217;re done!</li>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2008/12/08/windows-vista-service-pack-2-beta-now-available/" rel="bookmark" title="Permanent Link: Windows Vista Service Pack 2 (Beta) Now Available">Windows Vista Service Pack 2 (Beta) Now Available</a><br /><a href="http://www.simplehelp.net/2007/06/13/how-to-allow-a-program-through-the-windows-vista-firewall/" rel="bookmark" title="Permanent Link: How to allow a program through the Windows Vista Firewall">How to allow a program through the Windows Vista Firewall</a><br /><a href="http://www.simplehelp.net/2009/04/27/how-to-install-fonts-in-windows-xp-and-vista/" rel="bookmark" title="Permanent Link: How to install fonts in Windows XP and Vista">How to install fonts in Windows XP and Vista</a><br /><a href="http://www.simplehelp.net/2007/02/06/screenshot-simulation-windows-vista-tcpip-properties/" rel="bookmark" title="Permanent Link: Screenshot Simulation: Windows Vista TCP/IP Properties">Screenshot Simulation: Windows Vista TCP/IP Properties</a><br /><a href="http://www.simplehelp.net/2008/04/28/how-to-install-the-os-x-leopard-skin-on-your-windows-mobile-smartphones/" rel="bookmark" title="Permanent Link: How to install the OS X Leopard skin on your Windows Mobile Smartphones">How to install the OS X Leopard skin on your Windows Mobile Smartphones</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/05/20/how-to-connect-to-a-windows-xp-computer-from-windows-vista/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to control Winamp from your iPhone, iPod Touch or web browser</title>
		<link>http://www.simplehelp.net/2008/05/05/how-to-control-winamp-from-your-iphone-ipod-touch-or-web-browser/</link>
		<comments>http://www.simplehelp.net/2008/05/05/how-to-control-winamp-from-your-iphone-ipod-touch-or-web-browser/#comments</comments>
		<pubDate>Mon, 05 May 2008 12:00:18 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/2008/05/05/how-to-control-winamp-from-your-iphone-ipod-touch-or-web-browser/</guid>
		<description><![CDATA[


This tutorial will guide you through setting up and using WWWinamp, a Windows web server-like application that allows remote control of Winamp via any web browser. If you run a media server in your house and want to be able to control what&#8217;s playing in Winamp without having to go to that server, this is [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_windows-mobile.jpg" align="right" width="46" height="70" alt="Windows Mobile" />
<img src="/wp-images/icons/topic_iphone.jpg" align="right" width="50" height="94" alt="iPhone" />
<img src="/wp-images/icons/topic_ipod.jpg" align="right" width="50" height="82" alt="iPod" />
<p>This tutorial will guide you through setting up and using <a href="http://www.nullsoft.com/free/wwwinamp/" target="_blank" title="wwwinamp" rel="nofollow">WWWinamp</a>, a Windows web server-like application that allows remote control of Winamp via any web browser. If you run a media server in your house and want to be able to control what&#8217;s playing in Winamp without having to go to that server, this is the program for you. <span id="more-554"></span></p>
<ol>
<li> To get started, download and install <a href="http://www.nullsoft.com/free/wwwinamp/" target="_blank" title="wwwinamp" rel="nofollow">WWWinamp</a>. It might go without saying, but I&#8217;ll do it anyway, you will of course need to have <a href="http://www.winamp.com/player" target="_blank" rel="nofolow" title="download winamp">Winamp</a> installed as well. The installation of WWWinamp is very straight forward &#8211; you&#8217;ll mostly click &#8220;next&#8221; a bunch of times. </li>
<li> Once the install has finished, you&#8217;ll need to edit the config file. To do so, click <strong>Start</strong> -> <strong>All Programs</strong> -> <strong>WWWinamp</strong> -> <strong>WWWinamp Configuration</strong>. </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp00.jpg" title="screenshot of the windows start menu"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp00a.jpg" alt="windows start menu" border="1"><br />
click to enlarge</a></p>
<li>Scroll down to the <strong>port:</strong> section of the file. Select a port to use to run WWWinamp on. The default is 80, but I prefer to use 8090. Whatever you choose, make sure it isn&#8217;t one that conflicts with another program running on your PC.  </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp01.jpg" title="screenshot of the wwwinamp config file"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp01a.jpg" alt="wwwinamp config file" border="0"><br />
click to enlarge</a></p>
<li> In the <strong>AccessLoginPassword:</strong> section you can specify a user name and password so that only you can access WWWinamp. If you&#8217;re only going to control Winamp from a device in your house (and your PC is connected to a router), you can skip using a user/pass entirely. This tutorial assumes that your PC is behind a router. If you do want to password protect access to WWWinamp, use the format:
<p><strong>AccessLoginPassword:username:password</strong>
</li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp02.jpg" title="screenshot of the wwwinamp config file"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp02a.jpg" alt="wwwinamp config file" border="0"><br />
click to enlarge</a></p>
<li> Similar to the previous step, you can set a user name and password to the <strong>admin</strong> section of WWWinamp. And again, if you&#8217;re behind a router and don&#8217;t plan on accessing Winamp from outside of your own network, you can skip adding a user/pass. If you do want to password protect the admin section, use the format:
<p><strong>AdminLoginPassword:username:password</strong> </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp03.jpg" title="screenshot of the wwwinamp config file"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp03a.jpg" alt="wwwinamp config file" border="0"><br />
click to enlarge</a></p>
<li> Now scroll down to the <strong>DBPath</strong> section. It&#8217;s here that you&#8217;ll tell WWWinamp where your audio files are stored. Use a semicolon to separate different folders. For example, I keep my music two folders &#8211; C:&#92;mp3 and the &#8220;My Music&#8221; folder, which is C:&#92;Documents and Settings&#92;my-user-name-&#92;My Documents&#92;My Music&#92;.  So my DPPath looks like this:
<p><strong>DBPath:C:&#92;mp3;C:&#92;Documents and Settings&#92;my-user-name-&#92;My Documents&#92;My Music&#92;</strong></li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp04.jpg" title="screenshot of the wwwinamp config file"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp04a.jpg" alt="wwwinamp config file" border="0"><br />
click to enlarge</a></p>
<li> Now save the config file by selecting <strong>File</strong> -> <strong>Save</strong>. </li>
<p><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp05.jpg" alt="save as in notepad" border="0"></p>
<li> Launch WWWinamp by clicking <strong>Start</strong> -> <strong>All Programs</strong> -> <strong>WWWinamp</strong> -> <strong>WWWinamp Server Start</strong>.</li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp06.jpg" title="screenshot of the wwwinamp start menu entry"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp06a.jpg" alt="wwwinamp start menu entry" border="1"><br />
click to enlarge</a></p>
<li> If a firewall window pops up, make sure to click <strong>Unblock</strong>. </li>
<p><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp07.jpg" alt="windows firewall window" border="0"></p>
<li> The WWWinamp server window will appear. Assuming all went well, it will end with &#8220;entering server loop&#8221;. If there&#8217;s an error, read it carefully and go back to the config file to correct any mistakes. </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp08.jpg" title="screenshot of wwwinamp running"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp08a.jpg" alt="wwwinamp running" border="0"><br />
click to enlarge</a></p>
<li> Test out WWWinamp by entering http://localhost:port in a web browser on the same PC that WWWinamp is running on. Remember, the port you&#8217;ll enter is the one you specified back in step 3. If you opted to specify a user name and password, you&#8217;ll need to enter them here. </li>
<p><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp09.jpg" alt="browser address bar" border="0"></p>
<li> You should be presented with a window similar to the one below. Click on <strong>Show all</strong> to display your MP3s.  </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp10.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp10a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> Click on a song to have it start playing in Winamp. </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp11.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp11a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> If Winamp isn&#8217;t running, WWWinamp will tell you. </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp13.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp13a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> To start Winamp, add <strong>&#47;admin</strong> to the end of the URL to enter the admin section of WWWinamp. So your URL will look something like: http:&#47;&#47;localhost:port&#47;admin. Now click the <strong>Try starting Winamp</strong> link.  </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp14.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp14a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> That should launch Winamp and the song you previously selected will start playing.  </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp16.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp16a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> From the &#47;admin section you can also jump to songs in the queue, remove songs from the queue, etc. </li>
<p><a href="http://www.simplehelp.net/images/wwwinamp/wwwinamp19.jpg" title="screenshot of wwwinamp running in a browser"><img src="http://www.simplehelp.net/images/wwwinamp/wwwinamp19a.jpg" alt="wwwinamp running in a browser" border="0"><br />
click to enlarge</a></p>
<li> To access WWWinamp from your iPhone, iPod Touch or other Internet connected device, enter the IP address of the PC running WWWinamp (don&#8217;t forget :port) in its web browser. Now you can control Winamp remotely. </li>
<p><strong>Accessing WWWinamp thorough an iPod Touch. </strong></p>
<p><a href="http://www.simplehelp.net/images/wwwinamp/IMG_0016.jpg" title="screenshot of wwwinamp running in the ipod touch iphone browser"><img src="http://www.simplehelp.net/images/wwwinamp/IMG_0016a.jpg" alt="wwwinamp running in the ipod touch iphone browser" border="0"><br />
click to enlarge</a></p>
<p><a href="http://www.simplehelp.net/images/wwwinamp/IMG_0017.jpg" title="screenshot of wwwinamp running in the ipod touch iphone browser"><img src="http://www.simplehelp.net/images/wwwinamp/IMG_0017a.jpg" alt="wwwinamp running in the ipod touch iphone browser" border="0"><br />
click to enlarge</a></p>
<p><strong>Accessing WWWinamp through Opera mobile. </strong></p>
<p><img src="http://www.simplehelp.net/images/wwwinamp/sshot016.jpg" alt="wwwinamp in opera mobile" border="1" />
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2008/04/12/how-to-accurately-relocate-the-cursor-in-notes-for-your-iphone-or-ipod-touch/" rel="bookmark" title="Permanent Link: How to accurately relocate the cursor in Notes for your iPhone or iPod Touch">How to accurately relocate the cursor in Notes for your iPhone or iPod Touch</a><br /><a href="http://www.simplehelp.net/2008/07/11/how-to-control-itunes-with-your-iphone-or-ipod-touch/" rel="bookmark" title="Permanent Link: How to control iTunes with your iPhone or iPod Touch">How to control iTunes with your iPhone or iPod Touch</a><br /><a href="http://www.simplehelp.net/2008/07/14/how-to-reorder-the-icons-on-your-iphone-or-ipod-touch-springboard/" rel="bookmark" title="Permanent Link: How to reorder the icons on your iPhone or iPod Touch springboard">How to reorder the icons on your iPhone or iPod Touch springboard</a><br /><a href="http://www.simplehelp.net/2008/07/12/screenshot-tour-crash-bandicoot-nitro-kart-3d-for-iphoneipod-touch/" rel="bookmark" title="Permanent Link: Screenshot Tour: Crash Bandicoot Nitro Kart 3D for iPhone/iPod Touch">Screenshot Tour: Crash Bandicoot Nitro Kart 3D for iPhone/iPod Touch</a><br /><a href="http://www.simplehelp.net/2008/07/14/how-to-take-screenshots-of-your-iphone-or-ipod-touch-screen/" rel="bookmark" title="Permanent Link: How to take screenshots of your iPhone or iPod Touch screen">How to take screenshots of your iPhone or iPod Touch screen</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2008/05/05/how-to-control-winamp-from-your-iphone-ipod-touch-or-web-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to monitor your Internet bandwidth usage in Windows</title>
		<link>http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/</link>
		<comments>http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 00:48:45 +0000</pubDate>
		<dc:creator>Ross McKillop</dc:creator>
				<category><![CDATA[Home Networking]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/</guid>
		<description><![CDATA[
This tutorial will guide you in installing, setting up and using AnalogX Netstat Live (which is free) to monitor your Internet usage (uploads and downloads). As a number of ISP&#8217;s are now disconnecting customers for using &#8220;too much&#8221; bandwidth (this one in particular), knowing exactly how much you&#8217;ve downloaded (or uploaded) in a given month [...]]]></description>
			<content:encoded><![CDATA[<!-- no icon for 'Home Networking' --><img src="/wp-images/icons/topic_windows.jpg" align="right" width="50" height="50" alt="Windows" />
<p>This tutorial will guide you in installing, setting up and using AnalogX Netstat Live (which is free) to monitor your Internet usage (uploads and downloads). As a number of ISP&#8217;s are now disconnecting customers for using &#8220;too much&#8221; bandwidth (<a href="http://consumeraffairs.com/news04/2007/08/comcast_ban.html?imw=Y" title="the unknow comcast bandwidth limit is around 200GB per month" target="_blank">this</a> <a href="http://blog.wired.com/monkeybites/2007/08/does-comcast-br.html" title="wired news on comcast bandwidth limits" target="_blank">one</a> <a href="http://www.dslreports.com/faq/8865" title="dslreports faq on comcast bandwidth limits" target="_blank">in</a> <a href="http://www.alleyinsider.com/2007/09/comcast-cmcsa-v.html" title="comcast download limitations" target="_blank">particular</a>), knowing exactly how much you&#8217;ve downloaded (or uploaded) in a given month can be very helpful. <em>Note:</em> the OS X version of this tutorial can be found <a href="http://www.simplehelp.net/2007/09/15/how-to-monitor-your-internet-bandwidth-usage-in-os-x/" title="how to monitor your internet bandwidth usage in OS X">here</a>. <span id="more-363"></span></p>
<ol>
<li> <a href="http://www.analogx.com/contents/download/network/nsl.htm" title="download AnalogX Netstat Live" target="_blank">Download</a> and install AnalogX Netstat Live. The installation is very straight forward &#8211; you&#8217;ll mostly just click &#8216;next&#8217; and &#8216;ok&#8217; a few times. Launch it by clicking <strong>Start</strong> -> <strong>All Programs</strong> -> <strong>AnalogX</strong> -> <strong>Netstat Live</strong> -> <strong>Netstat Live</strong>. </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw00a.jpg" alt="open analogx netstat live" border="0" /></p>
<li> Right-click anywhere in the Analog X Netstat Live window. Select <strong>Configure</strong> from the pop-up window </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw01.jpg" alt="configure analogx netstat live" border="0" /></p>
<li> By default a number of the features are disabled. Click the <strong>Disabled</strong> button for the following items: <strong>Auto Minimize</strong>, <strong>Auto Start</strong> and <strong>Close Minimizes</strong>. Each one should now be set to <strong>Enabled</strong>. </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw02.jpg" alt="configure analog x netstat live" border="0" /></p>
<li>  By enabling these features, Analog X Netstat Live will launch each time Windows starts up, but automatically minimize to your System Tray. Also, if you open it from the tray (to check and see what your usage currently is) you can click the X button and it won&#8217;t actually close Netstat Live, rather it will be minimized back to your System Tray. This is important as Netstat Live must <strong>always</strong> be running, otherwise your uploads/downloads won&#8217;t be accurately tracked. </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw04.jpg" alt="analog x netstat live system tray icon" border="0" /></p>
<li> You can also disable some of the &#8216;other&#8217; things that NetStat Live monitors. Right-click in the main window, select <strong>Statistics</strong> and review the items that are monitored. You will very likely want to keep <strong>Local Machine, Incoming Data, Incoming Totals, Outgoing Data</strong> and <strong>Outgoing Totals</strong> enabled. The <strong>Remote Machine</strong>, <strong>System Threads</strong> and <strong>CPU Usage</strong> can all be disabled. </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw05.jpg" alt="analog x netstat live statistics" border="0" /></p>
<li> Now you can track your Internet bandwidth (upload and downloads) usage. The current monthly total is displayed, along with the previous monthly total and &#8220;total since your last reboot&#8221;. </li>
<p><img src="http://www.simplehelp.net/images/windowsbandwidth/bw07.jpg" alt="netstat live summary window" border="0" /></p>
<li> If you live in a multiple-computer household, all sharing the same Internet connection, make sure to install AnalogX Netstat Live on each PC (running Windows) so that you can total them up to get your &#8216;true&#8217; upload and download stats. </li>
</ol>
<p>---<br />Related Articles at Simple Help:<ul><a href="http://www.simplehelp.net/2007/09/27/how-to-monitor-your-internet-bandwidth-usage-in-os-x-redux/" rel="bookmark" title="Permanent Link: How to monitor your Internet bandwidth usage in OS X, redux">How to monitor your Internet bandwidth usage in OS X, redux</a><br /><a href="http://www.simplehelp.net/2008/09/11/how-to-use-the-dd-wrt-firmware-to-monitor-your-bandwidth/" rel="bookmark" title="Permanent Link: How to use the DD-WRT firmware to monitor your bandwidth">How to use the DD-WRT firmware to monitor your bandwidth</a><br /><a href="http://www.simplehelp.net/2007/09/15/how-to-monitor-your-internet-bandwidth-usage-in-os-x/" rel="bookmark" title="Permanent Link: How to monitor your Internet bandwidth usage in OS X">How to monitor your Internet bandwidth usage in OS X</a><br /><a href="http://www.simplehelp.net/2006/07/12/how-to-use-the-task-manager-to-monitor-andor-speed-up-your-pc/" rel="bookmark" title="Permanent Link: How to use the Task Manager to monitor and/or speed up your PC">How to use the Task Manager to monitor and/or speed up your PC</a><br /><a href="http://www.simplehelp.net/2009/11/04/how-to-test-your-internet-connection-speed/" rel="bookmark" title="Permanent Link: How to test your Internet connection speed">How to test your Internet connection speed</a><br /></ul></p><br />]]></content:encoded>
			<wfw:commentRss>http://www.simplehelp.net/2007/09/09/how-to-monitor-your-internet-bandwidth-usage-in-windows/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
	</channel>
</rss>
