<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>Geek Projects</title>
	<link>http://www.geekprojects.org</link>
	<description></description>
	<pubDate>Sat, 23 Aug 2008 23:16:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Enable the &#8220;Remember my password&#8221; checkbox for network shares in Windows XP Professional</title>
		<link>http://www.geekprojects.org/2008/08/23/enable-the-remember-my-password-checkbox-for-a-network-share-in-windows-xp-professional/</link>
		<comments>http://www.geekprojects.org/2008/08/23/enable-the-remember-my-password-checkbox-for-a-network-share-in-windows-xp-professional/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:12:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/08/23/enable-the-remember-my-password-checkbox-for-a-network-share-in-windows-xp-professional/</guid>
		<description><![CDATA[Windows XP Professional offers a Remember my password checkbox when mapping to a network drive, or other password protected network resource.
Unfortunately, once you&#8217;ve set a password, the Remember my password box disappears, so future username or password changes can result in repeated password prompts. Here&#8217;s how to clear your previously set username and password, and [...]]]></description>
			<content:encoded><![CDATA[<p>Windows XP Professional offers a <strong>Remember my password</strong> checkbox when mapping to a network drive, or other password protected network resource.<br />
Unfortunately, once you&#8217;ve set a password, the <strong>Remember my password</strong> box disappears, so future username or password changes can result in repeated password prompts. Here&#8217;s how to clear your previously set username and password, and get the <strong>Remember my password</strong> checkbox back:</p>
<ol>
<li>Click <strong>Start</strong> -&gt; <strong>Run</strong></li>
<li>Type in <strong>control userpasswords2</strong>, and press <strong>Enter</strong></li>
<li>Click on the <strong>Advanced</strong> tab</li>
<li>Click the <strong>Manage Passwords</strong> button</li>
<li>Select the server for which you wish to delete existing settings, then click the <strong>Remove</strong> button</li>
<li>Click <strong>Close</strong></li>
<li>Click <strong>OK</strong></li>
<li>Logout of Windows XP, then back in</li>
<li>Connect to the password protected server. You should now be prompted for your username and password, along with the previously missing <strong>Remember my password</strong> checkbox</li>
</ol>
<p>The above may work in other version of Windows, but I haven&#8217;t tested this out. Please post a comment if you&#8217;ve been able to use this procedure to get the <strong>Remember my password</strong> box back under your Windows version!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/08/23/enable-the-remember-my-password-checkbox-for-a-network-share-in-windows-xp-professional/feed/</wfw:commentRss>
		</item>
		<item>
		<title>sha1sum in Mac OS X</title>
		<link>http://www.geekprojects.org/2008/07/09/sha1sum-in-mac-os-x/</link>
		<comments>http://www.geekprojects.org/2008/07/09/sha1sum-in-mac-os-x/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 22:44:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/07/09/sha1sum-in-mac-os-x/</guid>
		<description><![CDATA[Mac OS X doesn&#8217;t come with a sha1sum utility. Neither does fink. So what&#8217;s the quickest way to check a sha1sum on a Mac? Use openssl:
openssl sha1 filename
If you&#8217;d like to roll this sha1sum check into a simple bash script, create the following sha1sum script:
#!/bin/bash
/usr/bin/openssl sha1 $1
Then make the sha1sum script executable, and run it:
chmod [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS X doesn&#8217;t come with a <a href="http://en.wikipedia.org/wiki/Sha1sum">sha1sum</a> utility. Neither does <a href="http://www.finkproject.org/">fink</a>. So what&#8217;s the quickest way to check a sha1sum on a Mac? Use <strong>openssl</strong>:</p>
<p><code>openssl sha1 filename</code></p>
<p>If you&#8217;d like to roll this sha1sum check into a simple bash script, create the following <strong>sha1sum</strong> script:</p>
<p><code>#!/bin/bash<br />
/usr/bin/openssl sha1 $1</code></p>
<p>Then make the <strong>sha1sum</strong> script executable, and run it:</p>
<p><code>chmod 755 sha1sum<br />
./sha1sum filename</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/07/09/sha1sum-in-mac-os-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SMTP relay with FreeBSD and sendmail</title>
		<link>http://www.geekprojects.org/2008/05/06/setting-up-an-smtp-relay-with-freebsd-and-sendmail/</link>
		<comments>http://www.geekprojects.org/2008/05/06/setting-up-an-smtp-relay-with-freebsd-and-sendmail/#comments</comments>
		<pubDate>Wed, 07 May 2008 03:42:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/05/06/setting-up-an-smtp-relay-with-freebsd-and-sendmail/</guid>
		<description><![CDATA[Here&#8217;s a guide to setting up a FreeBSD server to relay emails for a set of IP addresses and/or hostnames. Be very careful to only enable relaying for trusted machines. Ideally, you&#8217;d setup your FreeBSD sendmail server to require authentication.

Enable sendmail on your FreeBSD server by adding the following line to the /etc/rc.conf file:
sendmail_enable="YES"
Start sendmail [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a guide to setting up a FreeBSD server to relay emails for a set of IP addresses and/or hostnames. Be very careful to only enable relaying for trusted machines. Ideally, you&#8217;d setup your FreeBSD sendmail server to require authentication.</p>
<ol>
<li>Enable sendmail on your FreeBSD server by adding the following line to the <strong>/etc/rc.conf</strong> file:</li>
<p><code>sendmail_enable="YES"</code></p>
<li>Start sendmail using FreeBSD&#8217;s rc.d system.</li>
<p><code>/etc/rc.d/sendmail start</code></p>
<li>Add the IP address or IP addresses that you&#8217;d like sendmail to relay mail for to the <strong>/etc/mail/access</strong> file. For example, the following lines enable relaying for all emails coming from 10.0.2.1, and any IP address starting with 192.168.0.</li>
<p><code>10.0.2.1      RELAY</code><br />
<code>192.168.0     RELAY</code></p>
<li><strong>cd</strong> to your FreeBSD server&#8217;s <strong>/etc/mail</strong> directory, and run <strong>make</strong> to apply your changes to sendmail.</li>
<p><code>cd /etc/mail</code><br />
<code>make</code></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/05/06/setting-up-an-smtp-relay-with-freebsd-and-sendmail/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing djbdns dnscache on FreeBSD 6</title>
		<link>http://www.geekprojects.org/2008/04/29/installing-djbdns-dnscache-on-freebsd-6/</link>
		<comments>http://www.geekprojects.org/2008/04/29/installing-djbdns-dnscache-on-freebsd-6/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 20:52:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/04/29/installing-djbdns-dnscache-on-freebsd-6/</guid>
		<description><![CDATA[djbdns is a DNS server package that was created in response to BIND&#8217;s history of security holes. Whenever I setup a Linux or FreeBSD DNS server, I try to use djbdns rather than BIND. Here&#8217;s how to setup a DNS caching server using FreeBSD 6.x and djbdns&#8217;s dnscache mode. The following commands should be run [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cr.yp.to/djbdns.html">djbdns</a> is a DNS server package that was created in response to BIND&#8217;s history of security holes. Whenever I setup a Linux or FreeBSD DNS server, I try to use djbdns rather than BIND. Here&#8217;s how to setup a DNS caching server using FreeBSD 6.x and djbdns&#8217;s dnscache mode. The following commands should be run with root, su or sudo:</p>
<ol>
<li>Install the djbdns port, and its dependencies.</li>
<p><code>cd /usr/ports/dns/djbdns<br />
make install clean<br />
rehash</code></p>
<li>Enable the supervise service, which is used to start djbdns.</li>
<p><code>echo 'svscan_enable="YES"' &gt;&gt; /etc/rc.conf<br />
mkdir /var/service<br />
usr/local/etc/rc.d/svscan.sh start</code></p>
<li>Create djbdns&#8217;s cache and log accounts.</li>
<p><code>pw useradd Gdnscache -d /nonexistent -s /sbin/nologin<br />
pw useradd Gdnslog -d /nonexistent -s /sbin/nologin<br />
</code></p>
<li>Configure djbdns as a DNS caching server. In the examples below, 192.168.0.1 is the IP address of the interface that the djbdns DNS caching server will run on, and 192.168.0/24 is the network that I want to allow to access the server. Subsitute in the appropriate IPs and range(s) for your network.</li>
<p><code>dnscache-conf Gdnscache Gdnslog /usr/local/etc/dnscache 192.168.0.1<br />
ln -s /usr/local/etc/dnscache /var/service<br />
touch /var/service/dnscache/root/ip/192.168.0<br />
/usr/local/etc/rc.d/svscan.sh restart</code></ol>
<p>Sources:</p>
<ul>
<li><a href="http://cr.yp.to/djbdns/install.html">How to install djbdns</a></li>
<li><a href="http://cr.yp.to/djbdns/run-cache-x.html">How to run an external cache for your network</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/04/29/installing-djbdns-dnscache-on-freebsd-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to disable EVDO on a Motorola e815 with Verizon Wireless / Page Plus</title>
		<link>http://www.geekprojects.org/2008/04/28/how-to-disable-evdo-on-a-motorola-e815-with-verizon-wireless-page-plus/</link>
		<comments>http://www.geekprojects.org/2008/04/28/how-to-disable-evdo-on-a-motorola-e815-with-verizon-wireless-page-plus/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 16:56:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/04/28/how-to-disable-evdo-on-a-motorola-e815-with-verizon-wireless-page-plus/</guid>
		<description><![CDATA[EVDO can shorten your Motorola e815&#8217;s battery life. Since Page Plus, my cell provider doesn&#8217;t support EVDO, I disabled it on my unlocked e815 with the following procedure:
Enable Test Mode

Quickly press the Menu (top-center) key, then 073887*.
Enter your security code when prompted. By default, this will be 000000. If you aren&#8217;t prompted for your security [...]]]></description>
			<content:encoded><![CDATA[<p>EVDO can shorten your Motorola e815&#8217;s battery life. Since Page Plus, my cell provider doesn&#8217;t support EVDO, I disabled it on my unlocked e815 with the following procedure:</p>
<p><strong>Enable Test Mode</strong></p>
<ol>
<li>Quickly press the <strong>Menu</strong> (top-center) key, then <strong>073887*</strong>.</li>
<li>Enter your security code when prompted. By default, this will be <strong>000000</strong>. If you aren&#8217;t prompted for your security code, go back to step 1. You probably didn&#8217;t type the sequence in fast enough.</li>
<li>Scroll down to &#8220;Test Mode&#8221;, and press <strong>Select</strong>, then <strong>Enable</strong>.</li>
<li>Press <strong>Exit</strong> to go back to the main screen.</li>
</ol>
<p><strong>Disable EVDO</strong></p>
<ol>
<li>Press the <strong>Menu</strong> key followed quickly by the <strong>Left Soft Key</strong> (top left key).</li>
<li>Press the <strong>Left Soft Key</strong> until you see &#8220;HDR Pref&#8221; and &#8220;HDR Hybr&#8221; (around 5 times).</li>
<li>Scroll up to &#8220;HDR Hybr&#8221;, and change its value to <strong>CDMA</strong> by pressing the <strong>Right Soft Key</strong>.</li>
<li>Scroll up to &#8220;HDR Pref&#8221;, and change its value to <strong>Off</strong> by pressing the <strong>Right Soft Key</strong>.</li>
<li>Press the <strong>Left Soft Key</strong> to select <strong>Exit</strong>.</li>
<li>Press the <strong>End</strong> button to go back to the main screen.</li>
</ol>
<p><strong>Disable Test Mode</strong></p>
<ol>
<li>Quickly press the <strong>Menu</strong> (top-center) key, then <strong>073887</strong>*.</li>
<li>Enter your security code when prompted. By default, this will be <strong>000000</strong>. If you aren&#8217;t prompted for your security code, go back to step 1. You probably didn&#8217;t type the sequence in fast enough.</li>
<li>Scroll down to &#8220;Test Mode&#8221;, and press <strong>Select</strong>, then <strong>Disable</strong>.</li>
<li>Press <strong>Exit</strong> to go back to the main screen.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/04/28/how-to-disable-evdo-on-a-motorola-e815-with-verizon-wireless-page-plus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Printing to a Cannon ImageRunner 5075 from Microsoft Word 97</title>
		<link>http://www.geekprojects.org/2008/04/24/printing-to-a-cannon-imagerunner-5075-from-microsoft-word-97/</link>
		<comments>http://www.geekprojects.org/2008/04/24/printing-to-a-cannon-imagerunner-5075-from-microsoft-word-97/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 18:34:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Productivity Apps]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/04/24/printing-to-a-cannon-imagerunner-5075-from-microsoft-word-97/</guid>
		<description><![CDATA[One of my customers recently had a Canon ImageRunner 5075 coper/printer/fax unit installed in their office. Everything seemed to be working until someone tried to print a document in Microsoft Word 97. It seems that Microsoft Word 97 didn&#8217;t like the new printer. It would crash every time someone went to File -&#62; Print, and [...]]]></description>
			<content:encoded><![CDATA[<p>One of my customers recently had a Canon ImageRunner 5075 coper/printer/fax unit installed in their office. Everything seemed to be working until someone tried to print a document in Microsoft Word 97. It seems that Microsoft Word 97 didn&#8217;t like the new printer. It would crash every time someone went to <strong>File</strong> -&gt; <strong>Print</strong>, and selected the Canon printer, but strangely enough, it printed just fine if the Canon IR 5075 was set as the default, and they just clicked on the Print icon.</p>
<p>None of the other printers caused Microsoft Word 97, or any of the other Microsoft Office 97 apps to crash. As a workaround while I tracked down the problem, I asked them to print their word documents as PDFs, then print the PDFs to the Canon ImageRunner 5075.</p>
<p>Needless to say, that kludge wasn&#8217;t a good long term solution for the printing problems.What I found was that Microsoft Word 97, and the rest of Microsoft Office 97 for that matter didn&#8217;t like <a href="http://www.canon.com/technology/canon_tech/explanation/hspeed_processing.html">Canon&#8217;s UFR</a> (Ultra Fast Rendering) drivers. I found a <a href="http://www.usa.canon.com/html/download/im556575.html">PCL 6 driver for the ImageRunner 5075</a> on Canon&#8217;s website, switched to it, and the crashes ceased.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/04/24/printing-to-a-cannon-imagerunner-5075-from-microsoft-word-97/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using dd to write disk images to CompactFlash disks and floppies under Mac OS X</title>
		<link>http://www.geekprojects.org/2008/02/23/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/</link>
		<comments>http://www.geekprojects.org/2008/02/23/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 15:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/02/23/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/</guid>
		<description><![CDATA[Here&#8217;s how to use the dd utility to write a disk image to media under Mac OS X. I tested this with 10.5.2 with both a USB to CompactFlash adaptor, and a USB Imation USB SuperDisk.

Plug the media into your Mac.
If you get a message saying that the media cannot be read, click Ignore.
Open Disk [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to use the <span class="Apple-style-span" style="font-weight: bold">dd</span> utility to write a disk image to media under Mac OS X. I tested this with 10.5.2 with both a USB to CompactFlash adaptor, and a USB Imation USB SuperDisk.</p>
<ol>
<li>Plug the media into your Mac.</li>
<li>If you get a message saying that the media cannot be read, click <span class="Apple-style-span" style="font-weight: bold">Ignore</span>.</li>
<li>Open <span class="Apple-style-span" style="font-weight: bold">Disk Utility</span> (<span class="Apple-style-span" style="font-weight: bold">Applications</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Utilities</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Disk Utility</span>).</li>
<li>On the left-hand column, find that disk that you plan to write to. Select any partitions on that disk that are mounted, and click the <span class="Apple-style-span" style="font-weight: bold">Unmount</span> button (not the <span class="Apple-style-span" style="font-weight: bold">Eject</span> button). Once unmounted, the partitions should grey out.</li>
<li>On the left-hand column, find that disk that you plan to write to, click it, then click on the <span class="Apple-style-span" style="font-weight: bold">Info</span> button.</li>
<li>In the window that pops up, note the <span class="Apple-style-span" style="font-weight: bold">Disk Identifier</span>. It should be something like <span class="Apple-style-span" style="font-weight: bold">disk2</span> or <span class="Apple-style-span" style="font-weight: bold">disk3</span>.</li>
<li>Open up Terminal (<span class="Apple-style-span" style="font-weight: bold">Applications</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Utilities</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Terminal</span>).</li>
<li>Type in the following command, replacing <span class="Apple-style-span" style="font-weight: bold">diskx</span> with the <span class="Apple-style-span" style="font-weight: bold">Disk Identifier</span> found earlier, and <span class="Apple-style-span" style="font-weight: bold">image.img</span> with the name of the image file that you wish to read from.</li>
</ol>
<p><span class="Apple-style-span" style="font-weight: bold"><span class="Apple-tab-span" style="white-space: pre">		</span>sudo dd if=image.img of=/dev/diskx</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/02/23/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring the Cisco VPN Client in Ubuntu Linux 7.10 (Gutsy)</title>
		<link>http://www.geekprojects.org/2008/01/17/configuring-the-cisco-vpn-client-in-ubuntu-linux-710-gutsy/</link>
		<comments>http://www.geekprojects.org/2008/01/17/configuring-the-cisco-vpn-client-in-ubuntu-linux-710-gutsy/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 06:15:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/17/configuring-the-cisco-vpn-client-in-ubuntu-linux-710-gutsy/</guid>
		<description><![CDATA[I do some work for an organization which requires me to authenticate to a Cisco VPN. Getting the VPN client setup under Mac OS X is a simple matter, but doing the same under Linux required some research. Here&#8217;s what worked for me. I&#8217;m using the 64-bit x86 version of Ubuntu, which didn&#8217;t seem to [...]]]></description>
			<content:encoded><![CDATA[<p>I do some work for an organization which requires me to authenticate to a Cisco VPN. Getting the VPN client setup under Mac OS X is a simple matter, but doing the same under Linux required some research. Here&#8217;s what worked for me. I&#8217;m using the 64-bit x86 version of Ubuntu, which didn&#8217;t seem to cause any hiccups:</p>
<p>Step 1 - Install the Cisco VPN Client:</p>
<ol>
<li>Check what kernel you&#8217;re running by issuing the <strong>uname -a</strong> command. You should get something like:</li>
<p><code>Linux matt-media 2.6.22-14-generic #1 SMP Tue Dec 18 05:28:27 UTC 2007 x86_64 GNU/Linux</code></p>
<li>Download a copy of Cisco&#8217;s VPN client for Linux. If you&#8217;re using a 2.6.x kernel, it&#8217;s important to use a 4.8.x client.</li>
<li>Confirm that you have kernel sources installed for your kernel version. Check the <strong>/lib/modules/</strong> directory.</li>
<li>Download a patch matching your kernel version from <a href="http://tuxx-home.at/">http://tuxx-home.at/</a>. I&#8217;m running 2.6.22, so I ran:</li>
<p><code>wget http://tuxx-home.at/projects/cisco-vpnclient/vpnclient-linux-2.6.22.diff</code></p>
<li>Extract Cisco&#8217;s VPN client tarball:</li>
<p><code>tar -xzf vpnclient-linux-x86_64-4.8.00.0490-k9.tar.gz</code></p>
<li>Apply the patch:</li>
<p><code>cd vpnclient</code><br />
<code>patch -i ../vpnclient-linux-2.6.22.diff</code></p>
<li>Install the VPN client:</li>
<p><code>sudo ./vpn_install</code></ol>
<p>Step 2 - Configure the VPN Client:</p>
<ol>
<li>Take a backup of a working Cisco VPN client&#8217;s configuration. The location below is where these files were located on my Mac OS X system. They&#8217;re no doubt located somewhere other than the <strong>/private</strong> folder in other OSes.</li>
<p><code>tar -czf cisco-vpnclient.tgz /private/etc/opt/cisco-vpnclient</code></p>
<li>Copy the <strong>cisco-vpnclient.tgz</strong> tarball that you just created into the <strong>/etc/opt/</strong> directory of your Linux system, and unpack it.</li>
<p><code>sudo tar -xzf cisco-vpnclient.tgz</code></p>
<li>Start the  <strong>vpnclient</strong> service.</li>
<p><code>sudo /etc/init.d/vpnclient_init start</code></p>
<li>Check the name of your VPN&#8217;s profile by listing the contents of the <strong>Profiles</strong> directory. Your profile&#8217;s name will be the name of the the .pcf file, minus the .pcf extension.</li>
<p><code>ls /etc/opt/cisco-vpnclient/Profiles/</code></p>
<li>Connect to the VPN, using the profile name found above as the last argument.</li>
<p><code>sudo vpnclient connect "University of South Florida"</code></ol>
<p>That&#8217;s it! You should now be prompted to enter your password, and find yourself connected!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/17/configuring-the-cisco-vpn-client-in-ubuntu-linux-710-gutsy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VNC in Mac OS X 10.3.9</title>
		<link>http://www.geekprojects.org/2008/01/11/vnc-in-mac-os-x-1039/</link>
		<comments>http://www.geekprojects.org/2008/01/11/vnc-in-mac-os-x-1039/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 03:07:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/11/vnc-in-mac-os-x-1039/</guid>
		<description><![CDATA[The latest version of Vine Server (3.0) only officially works with Mac OS X 10.4 or later, but there&#8217;s a way to make it work with Mac OS X 10.3 (Panther). After installing Vine normally, just delete the following directory. It contains the offending OS X 10.5 (Leopard) specific files:
/Applications/Vine Server.app/Content/Resources/TigerBundle.bundle
That&#8217;s it! You should now [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of <a href="http://www.redstonesoftware.com/products/vine/server/vineosx/index.html">Vine Server</a> (3.0) only officially works with Mac OS X 10.4 or later, but there&#8217;s a way to make it work with Mac OS X 10.3 (Panther). After installing <a href="http://www.redstonesoftware.com/downloads/index.html">Vine</a> normally, just delete the following directory. It contains the offending OS X 10.5 (Leopard) specific files:</p>
<p>/Applications/Vine Server.app/Content/Resources/TigerBundle.bundle</p>
<p>That&#8217;s it! You should now be able to launch Vine&#8217;s VNC Server from the Applications Folder, configure it, and remotely control to your Mac OS X 10.3 system over the network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/11/vnc-in-mac-os-x-1039/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kismac r62 download for Mac OS X 10.3 (Panther)</title>
		<link>http://www.geekprojects.org/2008/01/10/kismac-r62-download-for-mac-os-x-103/</link>
		<comments>http://www.geekprojects.org/2008/01/10/kismac-r62-download-for-mac-os-x-103/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 04:58:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/10/kismac-r62-download-for-mac-os-x-103/</guid>
		<description><![CDATA[I was able to download a copy of the elusive Kismac r62 - the last version of Kismac to run on Mac OS X 10.3 (Panther). Kismac r62 is now running happily on my G4 iBook with OS X 10.3.9. I&#8217;ve mirrored Kismac r62 here in case anyone wants to download it:

KisMACR62.zip

]]></description>
			<content:encoded><![CDATA[<p>I was able to download a copy of the elusive Kismac r62 - the last version of Kismac to run on Mac OS X 10.3 (Panther). Kismac r62 is now running happily on my G4 iBook with OS X 10.3.9. I&#8217;ve mirrored Kismac r62 here in case anyone wants to download it:</p>
<ul>
<li><a href="/downloads/KisMACR62.zip">KisMACR62.zip</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/10/kismac-r62-download-for-mac-os-x-103/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
