<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Lynch Consulting Blog - Gadgets</title>
			<link>http://www.lynchconsulting.com.au/blog/index.cfm</link>
			<description>A blog about ColdFusion, PHP, Flash, Flex, Web Standards and a mish mash of other technologies</description>
			<language>en-us</language>
			<pubDate>Tue, 07 Sep 2010 12:45:20 --1000</pubDate>
			<lastBuildDate>Sat, 17 May 2008 01:21:00 --1000</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>mark@lynchconsulting.com.au</managingEditor>
			<webMaster>mark@lynchconsulting.com.au</webMaster>
			
			
			
			
			
			<item>
				<title>DVD to iPod conversion - Linux, Mac &amp; Windows</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2008/5/17/DVD-to-iPod-conversion--Linux-Mac--Windows</link>
				<description>
				
				I&apos;ve been looking for a while for a way to convert DVD&apos;s and other movies that I have into iPod format and have been failing miserably.  That is until today, when I came across the unusually named &lt;a href=&quot;http://handbrake.fr/&quot;&gt;HandBrake&lt;/a&gt;.

It does exactly what is says on the tin and makes it very easy to copy dvd&apos;s.  Initially I used it from my Mac and it worked flawlessly.  

I also tried the Linux version on Ubuntu Hardy (8.04) which has no GUI but it is pretty simple when you get the hang of it.

Here&apos;s a typical command line:

&lt;code&gt;
 HandBrakeCLI --preset=&quot;iPod Low-Rez&quot; -i /media/cdrom -o myvideo.mp4 -t 2
&lt;/code&gt;

This reads from /dev/cdrom  and uses the handy &quot;iPod Low-Rez&quot; preset which fixes it all up nicely for the iPod. 


And here&apos;s one that takes the second title:
&lt;code&gt;
 HandBrakeCLI --preset=&quot;iPod Low-Rez&quot; -i /media/cdrom -o myvideo.mp4 -t 2
&lt;/code&gt;

The wiki has &lt;a href=&quot;http://handbrake.fr/trac/wiki/CLIGuide&quot;&gt;more information on command line usage&lt;/a&gt;.

Happy iPodding.

Cheers,
Mark
				
				</description>
				
				<category>Gadgets</category>
				
				<category>HOWTO</category>
				
				<category>Linux</category>
				
				<category>Mac OSX</category>
				
				<category>Open Source</category>
				
				<category>Ubuntu</category>
				
				<category>Windows</category>
				
				<pubDate>Sat, 17 May 2008 01:21:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2008/5/17/DVD-to-iPod-conversion--Linux-Mac--Windows</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Power saving tips for Ubuntu on laptops</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2008/3/11/Power-saving-tips-for-Ubuntu-on-laptops</link>
				<description>
				
				One of the things that Ubuntu (gutsy 7.10) and probably most versions of linux) are currently lacking is out of the box support for power saving and hence suffers from poor battery life when unplugged.

My HP nc8430 also runs particularly hot by default - but I&apos;ve spent a bit of time hunting down tips for reducing the power usage and heat produced from the laptop to get a longer battery life.  I&apos;m sure there are a lot more ways that power can be saved and I suspect that future versions of Ubuntu will catch up and produce the same level of battery life or even longer than windows.

Here is what I am using so far:
&lt;h2&gt;Set powerplay mode on ATI fglrx driver&lt;/h2&gt;
&lt;code&gt;
aticonfig --lsp   # show current and available modes
aticonfig --set-powerstate=1  #set to low power mode
&lt;/code&gt;

&lt;p&gt;If anyone has equivalent code for other video cards please let me know and I&apos;ll add it here.&lt;/p&gt;

&lt;h2&gt;Disable &apos;hal&apos; from polling your cdrom&lt;/h2&gt;
&lt;p&gt;From &lt;a href=&quot;http://www.lesswatts.org/projects/powertop/&quot;&gt;powertop&lt;/a&gt;: &apos;hal&apos; is the component that auto-opens a
window if you plug in a CD but disables SATA power saving from kicking in.&lt;p&gt;
&lt;code&gt;
sudo hal-disable-polling --device /dev/scd0 
&lt;/code&gt;

&lt;h2&gt;Disable bluetooth if you are not using it&lt;/h2&gt;
&lt;code&gt;
sudo hciconfig hci0 down 
sudo rmmod hci_usb
&lt;/code&gt;

&lt;h2&gt;Remove the usb 1.1 kernel driver if not using it&lt;/h2&gt;
&lt;p&gt;Apparently the usb 1.1 driver does frequent polling and prevents the processor from staying in low power states for any length of time.&lt;/p&gt;
&lt;code&gt;
sudo rmmod uhci_hcd
&lt;/code&gt;

&lt;h2&gt;Increase the VM dirty writeback time &lt;/h2&gt;
&lt;p&gt;From &lt;a href=&quot;http://www.lesswatts.org/projects/powertop/&quot;&gt;powertop&lt;/a&gt;: This wakes the disk up less frequenty for background VM activity.&lt;/p&gt;

&lt;code&gt;
echo 1500 |sudo tee /proc/sys/vm/dirty_writeback_centisecs
&lt;/code&gt;

&lt;h2&gt;Turn off second processor&lt;/h2&gt;
&lt;p&gt;This is a very extreme measure and I haven&apos;t measured how much extra battery life it gives - but it is a bit cool to be able to turn it on and off if you have a dual core or dual CPU machine.&lt;/p&gt;
&lt;code&gt;
echo 0 | sudo tee /sys/devices/system/cpu/cpu1/online
&lt;/code&gt;
and to turn it back on use the following:
&lt;code&gt;
echo 1 | sudo tee /sys/devices/system/cpu/cpu1/online
&lt;/code&gt;

How cool is that?

Let me know if you come across any more tips.
Cheers,
Mark

Updated 17/Mar/07: Fixed commands based on feedback from Neil.  Thanks Neil.
				
				</description>
				
				<category>Ubuntu</category>
				
				<category>Systems admin</category>
				
				<category>Open Source</category>
				
				<category>Linux</category>
				
				<category>HOWTO</category>
				
				<category>Gadgets</category>
				
				<pubDate>Tue, 11 Mar 2008 10:36:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2008/3/11/Power-saving-tips-for-Ubuntu-on-laptops</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Mobile Weather for Nokia N73 (Symbian S60 3rd Edition)</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2008/1/14/Mobile-Weather-for-Nokia-N73-Symbian-S60-3rd-Edition</link>
				<description>
				
				&lt;a href=&quot;http://www.ubahnstation.net/projects/mweather/mweather.html&quot;&gt;&lt;img src=&quot;http://www.lynchconsulting.com.au/blog/enclosures/mw3rd_main.jpg&quot; align=&quot;right&quot;&gt;&lt;/a&gt;

I just found this &lt;a href=&quot;http://www.ubahnstation.net/projects/mweather/mweather.html&quot;&gt;very handy free weather application&lt;/a&gt; for the Nokia N73 (and other Symbian S60 2nd &amp; 3rd edition devices)

Now I can see how lovely the weather is in all the places that I&apos;m not :-)

Cheers,
Mark
				
				</description>
				
				<category>Gadgets</category>
				
				<pubDate>Mon, 14 Jan 2008 13:09:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2008/1/14/Mobile-Weather-for-Nokia-N73-Symbian-S60-3rd-Edition</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Joining video files in Ubuntu</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2008/1/12/Joining-video-files-in-Ubuntu</link>
				<description>
				
				I&apos;ve been tidying up some video&apos;s that were taken on my camera and wanted to merge the short snippets of video so I could convert them to DVD for easy family viewing.

A quick google turned up the relevant details:

&lt;h3&gt;Ensure you have mplayer &amp; mencoder installed&lt;/h3&gt;
&lt;code&gt;
sudo apt-get install mencoder mplayer
&lt;/code&gt;


&lt;h3&gt;Merge the files together&lt;/h3&gt;
&lt;code&gt;
cat video1.avi video2.avi video3.avi &gt; merged.avi
&lt;/code&gt;


&lt;h3&gt;Reindex the audio and video&lt;/h3&gt;
&lt;code&gt;
mencoder -forceidx -oac copy -ovc copy merged.avi -o merged_final.avi
&lt;/code&gt;

All done - if you want to convert it to a DVD check out &lt;a href=&quot;http://www.lynchconsulting.com.au/blog/index.cfm/2007/12/24/HOWTO-Create-DVDs-on-Ubuntu&quot;&gt;HOWTO Create DVD&apos;s from AVI&apos;s on Ubuntu&lt;/a&gt;.

Thanks to the good folk at &lt;a href=&quot;http://www.arsgeek.com/?p=435&quot;&gt;ArsGeek for the tip.&lt;/a&gt;
				
				</description>
				
				<category>Ubuntu</category>
				
				<category>Linux</category>
				
				<category>HOWTO</category>
				
				<category>Gadgets</category>
				
				<pubDate>Sat, 12 Jan 2008 21:11:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2008/1/12/Joining-video-files-in-Ubuntu</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Skype with Video on Ubuntu 7.10 Gutsy</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/12/31/Skype-with-Video-on-Ubuntu-710-Gutsy</link>
				<description>
				
				I was very excited to see that Skype recently released a beta version of &lt;a href=&quot;http://www.skype.com/intl/en/download/skype/linux/beta/choose/&quot;&gt;Skype for Linux which has video support&lt;/a&gt;.

I duly went and downloaded the version for Ubuntu (the Fiesty Fawn one works great on Gutsy).

Initial attempts to get it working met with frustration - it quickly flashed up on screen and gave the following output:

&lt;code&gt;
$ skype 
Aborted (core dumped)
&lt;/code&gt;

After thinking on it a while and hearing reports of other people using it happily I had some further attempts.  First plan of attack - make sure there are no settings from an old version that would conflict by (re)moving the settings directory.

&lt;code&gt;
$ mv .Skype .Skype.old
&lt;/code&gt;

Try again and everything came up sweet - even the webcam!  Thanks Skype.  I&apos;m very happy that this has removed the last reason I had to reboot to windows.

Check out the wiki page for the &lt;a href=&quot;http://wiki.ubuntu.com/SkypeWebCams&quot;&gt;list of supported webcams in Skype on Ubuntu.&lt;/a&gt;

Cheers,
Mark
				
				</description>
				
				<category>Ubuntu</category>
				
				<category>Linux</category>
				
				<category>General</category>
				
				<category>Gadgets</category>
				
				<pubDate>Mon, 31 Dec 2007 23:42:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/12/31/Skype-with-Video-on-Ubuntu-710-Gutsy</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>HOWTO Create DVD&apos;s from AVI&apos;s on Ubuntu</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/12/25/HOWTO-Create-DVDs-on-Ubuntu</link>
				<description>
				
				To create simple DVD&apos;s (i.e. with no title menu&apos;s) you need the following software:

&lt;ul&gt;
&lt;li&gt;mplayer&lt;/li&gt;
&lt;li&gt;videotrans&lt;/li&gt;
&lt;li&gt;libxvidcore4&lt;/li&gt;
&lt;li&gt;dvdauthor&lt;/li&gt;
&lt;li&gt;mkisofs&lt;/li&gt;
&lt;/ul&gt;

To install all this use:
&lt;code&gt;
$ sudo apt-get install mplayer videotrans dvdauthor mkisofs libxvidcore4
&lt;/code&gt;

Here are the simple steps to format a video for DVD:

First, make sure you can view the video using mplayer:
&lt;code&gt;
$ mplayer MyMovie.avi 
&lt;/code&gt;

Then we convert if to DVD mpeg format:
&lt;code&gt;
$ movie-to-dvd -m pal MyMovie.avi 
&lt;/code&gt;

This will create two files: MyMovie.m2v and MyMovie.ac3 which we need to merge back together:
&lt;code&gt;
$ mplex -f 8 -o MyMovie.mpg MyMovie.m2v MyMovie.ac3 
&lt;/code&gt;

Format the video for DVD:
&lt;code&gt;
$ dvdauthor -o dvd/ -t MyMovie.mpg
&lt;/code&gt;

Create a title page for it:
&lt;code&gt;
$ dvdauthor -o dvd/ -T
&lt;/code&gt;

Create an ISO image to burn to dvd:
&lt;code&gt;
$ mkisofs -dvd-video -v -o MyMovie.iso dvd
&lt;/code&gt;

Then right click on the ISO in the file browser (Nautilus) and select &quot;Write to Disc&quot; and you have a DVD that will play in you normal DVD player.

References:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://videotrans.sourceforge.net/movie-to-dvd.1.html&quot;&gt;http://videotrans.sourceforge.net/movie-to-dvd.1.html&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://gentoo-wiki.com/HOWTO_Create_a_DVD:Filesystem&quot;&gt;http://gentoo-wiki.com/HOWTO_Create_a_DVD:Filesystem&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://forums.gentoo.org/viewtopic.php?t=117709&quot;&gt;http://forums.gentoo.org/viewtopic.php?t=117709&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
				
				</description>
				
				<category>Ubuntu</category>
				
				<category>Open Source</category>
				
				<category>Linux</category>
				
				<category>HOWTO</category>
				
				<category>General</category>
				
				<category>Gadgets</category>
				
				<pubDate>Tue, 25 Dec 2007 02:05:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/12/25/HOWTO-Create-DVDs-on-Ubuntu</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Learnosity CEO nominated for Net Visionary Awards</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/10/8/Learnosity-CEO-nominated-for-Net-Visionary-Awards</link>
				<description>
				
				Lynch Consulting has been working with &lt;a href=&quot;http://www.learnosity.com&quot;&gt;Learnosity&lt;/a&gt; (formerly Websonic Learning) to deliver mobile phone and IM based learning solutions powered by ColdFusion.  

Gavin Cooney the CEO of Learnosity has recently been nominated for the &lt;a href=&quot;http://www.netvisionary.ie/vote2007.html&quot;&gt;Irish Internet Association&apos;s &quot;Net Visionary 2007&quot;&lt;/a&gt; in three categories:
&lt;ul&gt;
&lt;li&gt;Education Contribution&lt;/li&gt;
&lt;li&gt;Innovation Award&lt;/li&gt;
&lt;li&gt;Mobile Internet Contribution&lt;/li&gt;
&lt;/ul&gt;

Details of the project are available here:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.learnosity.com/go/client-ncca-ireland&quot;&gt;Learnosity Website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.independent.ie/national-news/pupils-lap-up-hitech-learning-of-irish-997015.html&quot;&gt;Writeup in the Irish Independent&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

So go on - you know you want to &lt;a href=&quot;http://www.netvisionary.ie/vote2007.html&quot;&gt;support ColdFusion and innovation by adding your vote for Gavin Cooney of Learnosity&lt;/a&gt;.
				
				</description>
				
				<category>ColdFusion</category>
				
				<category>Gadgets</category>
				
				<category>Learnosity</category>
				
				<pubDate>Mon, 08 Oct 2007 10:02:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/10/8/Learnosity-CEO-nominated-for-Net-Visionary-Awards</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>iPhoney - iPhone browser emulator</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/10/3/iPhoney--iPhone-browser-emulator</link>
				<description>
				
				A few minutes ago I somehow ended up on &lt;a href=&quot;http://madowney.com/blog/&quot;&gt;Mike Downey&apos;s&lt;/a&gt; blog and found this &lt;a href=&quot;http://madowney.com/blog/2007/07/12/want-to-build-web-pages-optimized-for-the-iphone/&quot;&gt;interesting post&lt;/a&gt; about iPhoney, a virtual iPhone browser.  Since iPhone is still not available in Australia, I often find myself wondering if my web apps (ajax apps in particular) would work in iPhone browser.  Well, thanks to iPhoney, I can now build web pages optimised for iPhone.  I&apos;ve just tested a couple of Ajax apps that I have built and they all work perfectly in iPhoney. It looks very cool indeed.

&lt;a href=&quot;http://www.marketcircle.com/iphoney/&quot;&gt;Download iPhoney&lt;/a&gt; (mac only).
				
				</description>
				
				<category>Gadgets</category>
				
				<pubDate>Wed, 03 Oct 2007 20:57:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/10/3/iPhoney--iPhone-browser-emulator</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>HowTo recover jpeg images from corrupt memory card</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/9/23/HowTo-recover-jpeg-images-from-corrupt-memory-card</link>
				<description>
				
				Today my digital camera decided that it had been too well behaved of late and the SD card decided to completely corrupt itself for no good reason, losing all the photos on it.

I&apos;ve spent a significant portion of my youth messing around with file system editing and partition table editing an was not going to give up on the series of photos I&apos;d taken over the last couple of days - luckily it didn&apos;t need anything more than a couple of simple commands to recover all the photos.  Go Open Source software.

This tutorial is written for Ubuntu, but should be similar for most Linux machines

Step 1 was to make an image of the card (to have a backup of it) using the venerable dd command.

&lt;code&gt;
sudo dd if=/dev/sdb of=sdcard.img bs=1M
&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;sudo&lt;/strong&gt; - used to perform command as root user (i.e. have correct privileges)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;dd&lt;/strong&gt; - command to copy data a byte level&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;if=/dev/sdb&lt;/strong&gt; - read data from /dev/sdb - you may need to change this depending on where your memory card it located.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;of=sdcard.img&lt;/strong&gt; - save this to the sdcard.img file in the current directory&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;bs=1M&lt;/strong&gt; - Copy it in 1M chunks&lt;/li&gt;
&lt;/ul&gt;

Once this has completed you will need to run the marvellous program &lt;a href=&quot;http://www.rfc1149.net/devel/recoverjpeg&quot;&gt;recoverjpeg&lt;/a&gt; on it.  

First lets install it:
&lt;code&gt;
sudo apt-get install recoverjpeg
&lt;/code&gt;

Then run it:
&lt;code&gt;
recoverjpeg sdcard.img
&lt;/code&gt;

and you should get something like the following:
&lt;code&gt;
$ recoverjpeg sdcard.img
Restored 290 pictures      
&lt;/code&gt;
The images will be saved in the same folder.

Check the images out and hopefully it works as well for you as it did for me.

Cheers,
Mark
				
				</description>
				
				<category>Open Source</category>
				
				<category>Linux</category>
				
				<category>HOWTO</category>
				
				<category>General</category>
				
				<category>Gadgets</category>
				
				<category>Ubuntu</category>
				
				<pubDate>Sun, 23 Sep 2007 10:03:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/9/23/HowTo-recover-jpeg-images-from-corrupt-memory-card</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Version 0.13 - NW-E00x Mp3 File Manager for Sony Walkman</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/6/6/Version-013--NWE00x-Mp3-File-Manager-for-Sony-Walkman</link>
				<description>
				
				Patrick has just released version 0.13 of the NW-E00x Mp3 File Manager for the Sony NW-E00x series.

Release Notes:
&lt;ul&gt;
&lt;li&gt;V0.13 : Requires &lt;strong&gt;Java 1.6&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Better handling of mp3 header&lt;/li&gt;
&lt;li&gt;Better compatibility with Podcasts&lt;/li&gt;
&lt;li&gt;Removed the Shoutcast tab&lt;/li&gt;
&lt;li&gt;other minor fixes...&lt;/li&gt;
&lt;/ul&gt;

Go to sourceforge to &lt;a href=&quot;https://sourceforge.net/project/showfiles.php?group_id=174319&quot;&gt;download it&lt;/a&gt;. &lt;/p&gt;

Thanks for the great app Patrick.

Cheers,
Mark
				
				</description>
				
				<category>Open Source</category>
				
				<category>Gadgets</category>
				
				<pubDate>Wed, 06 Jun 2007 00:05:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/6/6/Version-013--NWE00x-Mp3-File-Manager-for-Sony-Walkman</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Update to NW-E00x Mp3 File Manager</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2007/1/9/Update-to-NWE00x-Mp3-File-Manager</link>
				<description>
				
				Patrick has just released version 0.12 of the NW-E00x Mp3 File Manager - just a few little fixes but always worth using the latest.

Release notes:
&lt;ul&gt;
&lt;li&gt;Corrected the loading of titles that was only loading the first 255 titles&lt;/li&gt;
&lt;li&gt;Optimization of the FFMPEG converter&lt;/li&gt;
&lt;li&gt;When importing mp3, now removing the header of the title as expected by the player.&lt;/li&gt;
&lt;/ul&gt;

Go to sourceforge to &lt;a href=&quot;https://sourceforge.net/project/showfiles.php?group_id=174319&quot;&gt;download it&lt;/a&gt;.
				
				</description>
				
				<category>Gadgets</category>
				
				<category>Linux</category>
				
				<category>Open Source</category>
				
				<category>Ubuntu</category>
				
				<pubDate>Tue, 09 Jan 2007 06:37:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2007/1/9/Update-to-NWE00x-Mp3-File-Manager</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Vodafone Nokia N73 Bluetooth modem with Ubuntu Linux Howto</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/11/Nokia-N73-Bluetooth-modem-with-Ubuntu-Linux-Howto</link>
				<description>
				
				Despite the fact that there is no &quot;Official Support&quot; (i.e. no linux logo on the box) it turns out that it is actually really quite simple to set up a Nokia N73 (and probably others - I based this off an N80 example referenced below) to work as a modem.

I&apos;ve cobbled together these instructions from a number of sources referenced below.

What you need:
&lt;ul&gt;
&lt;li&gt;A Nokia N73 (or similar)&lt;/li&gt;
&lt;li&gt;A computer with Ubuntu Linux&lt;/li&gt;
&lt;li&gt;A bluetooth device (built in or USB dongle)&lt;/li&gt;
&lt;li&gt;Internet access available on your N73&lt;/li&gt;
&lt;/ul&gt;

What you need to do:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;#pair&quot;&gt;Pair your mobile with your computer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#address&quot;&gt;Find your mobile&apos;s bluetooth address&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#confirm&quot;&gt;Confirm you can connect to your mobile&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#ppp&quot;&gt;Modify your PPP scripts as necessary&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;a name=&quot;pair&quot;&gt;&lt;/a&gt;
&lt;h3&gt;Pair your mobile with your computer&lt;/h3&gt;

Make sure bluez-passkey-gnome is installed - if not just do:
&lt;code&gt;
sudo apt-get install bluez-passkey-gnome
&lt;/code&gt;

On your phone do the following:
&lt;code&gt;
Menu-&gt;Tools-&gt;Bluetooth
Move pointer right to get the &quot;Paired devices&quot; screen. 
Under options  select &quot;New paired device&quot;
&lt;/code&gt;

It should find your bluetooth device on your computer.

It will prompt for a passcode on your phone:
Put in something - eg: 1234
You will then be prompted to put the same passcode in on your computer.

This is also a good point to copy and paste the bluetooth device address that is shown eg: Nokia 73 (xx:xx:xx:xx:xx:xx)

For simplicity you should also select &quot;Authorise device to make connections automatically&quot; on your phone which will mean you don&apos;t have to go through this each time.


&lt;a name=&quot;address&quot;&gt;&lt;/a&gt;
&lt;h3&gt;Find your mobile&apos;s bluetooth address&lt;/h3&gt;
If you cut and paste this during pairing then you are all set - no need to do anything further.

Otherwise you can run the following command:

Note: you need to make sure that your phones visibility is: &quot;Shown to all&quot;

You should see the following:
&lt;code&gt;
$ hcitool scan
Scanning ...
        xx:xx:xx:xx:xx:xx       Nokia 73 
&lt;/code&gt;

You can turn the phones visibility back to &quot;Hidden&quot; once this step is complete.

&lt;a name=&quot;confirm&quot;&gt;&lt;/a&gt;
&lt;h3&gt;Confirm you can connect to your mobile&lt;/h3&gt;

Modify the file: /etc/bluetooth/rfcomm.conf
&lt;code&gt;
rfcomm0 {
#       # Automatically bind the device at startup
        bind yes;
#
#       # Bluetooth address of the device
        device xx:xx:xx:xx:xx:xx;
#
#       # RFCOMM channel for the connection
        channel 2;
#
#       # Description of the connection
        comment &quot;Nokia N73&quot;;
}
&lt;/code&gt;

Then enter the following (ignoring the comments - i.e. after the #):
&lt;code&gt;
rfcomm release 0  # make sure is it not already connected
rfcomm connect 0  # create a connection to rfcomm device 0
&lt;/code&gt;
And you should see:
&lt;code&gt;
Press CTRL-C for hangup
&lt;/code&gt;

Note - the &quot;0 here relates to the rfcomm device number that was set in rfcomm.conf. If you&apos;re using /dev/rfcomm2, for instance, you should use &quot;2&quot; instead.

&lt;a name=&quot;ppp&quot;&gt;&lt;/a&gt;
&lt;h3&gt;Modify your PPP scripts as necessary&lt;/h3&gt;

You may need to modify these scripts - particularly the connect one if you are not on vodafone.  I try a bit of gueswork and see how you go - that&apos;s how I got it working.

See the example files here:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lynchconsulting.com.au/blog/enclosures/vodafone&quot;&gt;/etc/ppp/peers/vodafone&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lynchconsulting.com.au/blog/enclosures/vodafone-connect&quot;&gt;/etc/chatscripts/vodafone-connect&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lynchconsulting.com.au/blog/enclosures/vodafone-disconnect&quot;&gt;/etc/chatscripts/vodafone-disconnect&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

To connect you need to run the following:
&lt;code&gt;
$ pon vodafone
&lt;/code&gt;

To disconnect you need to run the following:
&lt;code&gt;
$ poff vodafone
&lt;/code&gt;

You should see something like the following in /var/log/messages
&lt;code&gt;
Dec  9 22:48:54 localhost pppd[17650]: Serial connection established.
Dec  9 22:48:54 localhost pppd[17650]: Using interface ppp0
Dec  9 22:48:54 localhost pppd[17650]: Connect: ppp0 &lt;--&gt; /dev/rfcomm0
Dec  9 22:48:56 localhost pppd[17650]: PAP authentication succeeded
Dec  9 22:48:57 localhost pppd[17650]: local  IP address 10.130.130.70
Dec  9 22:48:57 localhost pppd[17650]: remote IP address 10.6.6.6
Dec  9 22:48:57 localhost pppd[17650]: primary   DNS address 198.6.1.2
Dec  9 22:48:57 localhost pppd[17650]: secondary DNS address 192.189.54.17
&lt;/code&gt;

Hope this helps - and please feel free to ask if you get stuck - I can&apos;t guarantee anything but I&apos;ll try to help.

&lt;h3&gt;References&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.machine-envy.com/blog/2006/07/27/n80-as-bluetooth-modem/&quot;&gt;http://www.machine-envy.com/blog/2006/07/27/n80-as-bluetooth-modem/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.hingston.demon.co.uk/mike/nokia6680.html&quot;&gt;http://www.hingston.demon.co.uk/mike/nokia6680.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
				
				</description>
				
				<category>Open Source</category>
				
				<category>HOWTO</category>
				
				<category>Gadgets</category>
				
				<category>Ubuntu</category>
				
				<pubDate>Mon, 11 Dec 2006 22:57:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/11/Nokia-N73-Bluetooth-modem-with-Ubuntu-Linux-Howto</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Another Essential Application for Nokia N73</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/10/Another-Essential-Application-for-Nokia-N73</link>
				<description>
				
				After searching the menus of my new Nokia N73 I couldn&apos;t find any way to get the keypad to autolock.  I found this very strange, as this is by far the most advanced phone I&apos;ve ever had.  I could autolock my Nokia 3300, and my Nokia 2100 and also my Sony Ericsson T630. 

What was Nokia thinking not including a way to autolock the phone keypad?

However, free software to the rescue - this is another essential app:

The &lt;a href=&quot;http://fuse.stc.cx/autolock/index.html&quot;&gt;Autolock home page&lt;/a&gt; gives you the info and here is the &lt;a href=&quot;http://fuse.stc.cx/autolock/AutoLock_v1.1_for_S60_3rd_ed.SISX&quot;&gt;direct download for the N73
AutoLock v1.1 (.sisx)&lt;/a&gt;

Hope this saves someone some time.
				
				</description>
				
				<category>Gadgets</category>
				
				<category>Open Source</category>
				
				<pubDate>Sun, 10 Dec 2006 17:17:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/10/Another-Essential-Application-for-Nokia-N73</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Essential Mobile Phone Applications</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/2/Essential-Mobile-Phone-Applications</link>
				<description>
				
				Got myself a new phone (&lt;a href=&quot;http://www.nokia.com/N73&quot;&gt;Nokia N73&lt;/a&gt;) and can now play around with lots of the cool apps that I couldn&apos;t use previously.

So far I&apos;ve got the following:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.gmail.com/app&quot;&gt;Gmail&lt;/a&gt; - Get my gmail fast&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.gcalsync.com/&quot;&gt;GCalSync&lt;/a&gt; - Sync my google calendar to phone calendar&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.google.com/gmm&quot;&gt;Google Maps&lt;/a&gt; - View maps of everywhere&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.operamini.com&quot;&gt;Opera Mini&lt;/a&gt; - fast browsing&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://s2putty.sourceforge.net/download.html&quot;&gt;Putty SSH Client&lt;/a&gt; - in case I really need to do remote admin on an server&lt;/li&gt;
&lt;/ul&gt;

What else is cool or useful for a Symbian based phone?
				
				</description>
				
				<category>Gadgets</category>
				
				<category>General</category>
				
				<pubDate>Sat, 02 Dec 2006 16:39:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2006/12/2/Essential-Mobile-Phone-Applications</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Sony NW-E005F working in Linux - HOWTO</title>
				<link>http://www.lynchconsulting.com.au/blog/index.cfm/2006/9/27/Sony-NWE005F-working-in-Linux--HOWTO</link>
				<description>
				
				I recently received a present of a lovely Sony NW-E005F flash walkman and have been frustrated by the completely sub par software that came with it.

I have been using the horrible Sonic Stage 4.0 to transfer files to it (from within a windows XP virtual machine) but it would intermittently just die.  This made it all too much trouble to change the music I had on it as every second time I tried the sonic stage application would just die.

Today however, I came across &lt;a href=&quot;http://nwe00xmp3man.sourceforge.net/&quot;&gt;NW-E00x Mp3 File Manager&lt;/a&gt; which is a Java application to read and write/convert mp3 files to the correct format for the walkman (and it updates the song DB on it).  

It supports the following models at the moment: 
&lt;ul&gt;
&lt;li&gt;NW-E002 (512 MB)&lt;/li&gt;
&lt;li&gt;NW-E003 (1 GB)&lt;/li&gt;
&lt;li&gt;NW-E005 (2 GB)&lt;/li&gt;
&lt;li&gt;NW-S205 (2 GB)&lt;/li&gt;
&lt;li&gt;NW-S703F&lt;/li&gt;
&lt;li&gt;NW-S603&lt;/li&gt;
&lt;li&gt;NW-E015F&lt;/li&gt;
&lt;/ul&gt;

After a bit of messing about it is now working beautifully in all it&apos;s cross platform goodness.  For the benefit of anyone else in the same situation I thought I would document the steps I took.


Download nwe00xmp3man and the optionals package: &lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=174319&quot;&gt;Project Files&lt;/a&gt;

Copy to the application to the root of your usb drive
&lt;code&gt;
$ cp NW-E003_MP3_File_Manager-0.10.jar /media/usbdisk/
&lt;/code&gt;

Copy the OMGAUDIO directory from the optionals package to the root of your usb drive
&lt;code&gt;
$ cp OMGAUDIO /media/usbdisk/
&lt;/code&gt;

Check you have java 1.5 installed
&lt;code&gt;
$ java -version
java version &quot;1.5.0_06&quot;
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)
&lt;/code&gt;
It if it says 1.5 then you are good to go - if not you need to get java installed - on ubuntu you need to do the following:

&lt;code&gt;
#Ensure you have universe and multiverse included 
#in your /etc/apt/sources.list

deb http://us.archive.ubuntu.com/ubuntu dapper main restricted
deb http://us.archive.ubuntu.com/ubuntu dapper universe multiverse

#After this have apt updates its repository

$sudo apt-get update

#And finally, just tell it to install java :)

$sudo apt-get install sun-java5-jre

or:

$sudo apt-get install sun-java5-jdk
&lt;/code&gt;

Once you have confirmed that java is working it&apos;s time to run the File Manager:
&lt;code&gt;
java -jar NW-E003_MP3_File_Manager-0.10.jar
&lt;/code&gt;

This will create two files in the same directory as the application - i.e. the root of the usb drive (you did listen earlier didn&apos;t you?)

The file playersize.txt is read by the FileManager to determine how big your player is - it defaults to a 1GB drive and so you&apos;ll need to edit it if your walkman is bigger or smaller.

For bonus points you can create a small script to load the jar file which you can place in the directory beside the jar for simple double click access.

Now you should be able to copy music across to your walkman safe in the knowledge that you&apos;ll never have to use sonicstage again.

A big thanks to Patrick Balleux for creating and sharing this program.

&lt;h4&gt;Update 1:&lt;/h4&gt;
Added notes about compatibility with different versions of NW E00x series.
&lt;h4&gt;Update 2:&lt;/h4&gt; Just tested on my Mac (PowerPC ) in the office and it works a treat.  Tested and confirmed working on Ubuntu Linux 6.10 and OSX 10.4.7.
&lt;h4&gt;Update 3:&lt;/h4&gt; Added NW-S205 to list of supported models (6/Jan/07)
&lt;h4&gt;Update 4:&lt;/h4&gt; Added NW-E015F to list of supported models (13/Oct/07)
				
				</description>
				
				<category>Open Source</category>
				
				<category>Linux</category>
				
				<category>HOWTO</category>
				
				<category>Gadgets</category>
				
				<category>Ubuntu</category>
				
				<pubDate>Wed, 27 Sep 2006 05:48:00 --1000</pubDate>
				<guid>http://www.lynchconsulting.com.au/blog/index.cfm/2006/9/27/Sony-NWE005F-working-in-Linux--HOWTO</guid>
				
			</item>
			
		 	
			</channel></rss>