<?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>radio.McDougallsHome.net &#187; Ubuntu</title>
	<atom:link href="http://radio.mcdougallshome.net/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://radio.mcdougallshome.net</link>
	<description>Ham Radio Blog of Amateur Radio Station K7JM</description>
	<lastBuildDate>Sat, 07 Jan 2012 01:13:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
  <link>http://radio.mcdougallshome.net</link>
  <url>http://radio.mcdougallshome.net//wp-content/uploads/2008/09/ham_radio2.png</url>
  <title>radio.McDougallsHome.net</title>
</image>
		<item>
		<title>How I Back Up My Ubuntu Linux Laptop</title>
		<link>http://radio.mcdougallshome.net/software/how-i-back-up-my-ubuntu-linux-laptop/</link>
		<comments>http://radio.mcdougallshome.net/software/how-i-back-up-my-ubuntu-linux-laptop/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 01:05:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[back in time]]></category>
		<category><![CDATA[backup linux laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshfs]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=584</guid>
		<description><![CDATA[I am an ardent believer of backups. My desktop computer is backed up nightly to an external usb drive using a program called Back In Time. It uses the famous rsync program to do the backups. The neat thing about rsync, is that it uses hard links to link to previously backedup files that have [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I am an ardent believer of backups.</strong> My desktop computer is backed up nightly to an external usb drive using a program called <a href="http://backintime.le-web.org/" target="_blank">Back In Time</a>. It uses the famous <a href="http://en.wikipedia.org/wiki/Rsync" target="_blank">rsync</a> program to do the backups. The neat thing about rsync, is that it uses <a title="Explanation of a Hard Link" href="http://linuxgazette.net/105/pitcher.html" target="_blank">hard link</a>s to link to previously backedup files that have not changed. What this means, is that if a file does not change, it is not copied multiple times to the hard drive, but just once. This saves a very large amount of disk space, while preserving the original directory structure. Back In Time is started though a <a href="http://en.wikipedia.org/wiki/Cron" target="_blank">cron job</a>, and as long as the desktop computer is on, it will be backed up. By the way, my computers run with the <a href="http://www.ubuntu.com/" target="_blank">UBUNTU Linux operating system</a>. These instructions are for Linux and will not work on Windows systems. My laptop us running Ubuntu 11.10, and my server is running Ubuntu 10.04.3 LTS. <a href="http://www.ubuntu.com/" target="_blank">Check out Ubuntu Linux at ubuntu.com</a>.</p>
<p>The setup for my desktop will not work for my laptop. My laptop is not always on, and is not always available around the home network to be backed up. I needed a system that would automatically backup my laptop whenever it is on, but only once a day. I have been doing manual backups, but that is a hassle. I may eventually employ this backup method to my desktop so I don&#8217;t have to keep it on all the time either.</p>
<p>Here are a couple of problems I needed to overcome. If I mounted a server drive from my laptop, and backup remotely to the server, rsync would not preserver the hard links. This not only takes up a lot of disk space, but every file would need to be sent over to the server during every backup. Over wifi, a typical backup would take longer than a day. Not ideal for a daily backup. I therefore, had to initiate the backup from the server. This meant, sshing into the server, mounting the laptop as a drive in the server, and starting the backup from the server end.</p>
<p>I searched for solutions to these problems, and came up with a multitude of answers that were not particularly ideal for me to impliment. One solution was to use <a href="http://nfs.sourceforge.net/nfs-howto/" target="_blank">NFS</a> to mount the drives in <a href="http://www.tuxfiles.org/linuxhelp/fstab.html" target="_blank">fstab</a>. I did not want to put it in fstab because, I did not want it to mount automatically when the server booted (or the laptop for that matter). Another solution was to continuously poll for the existance of the laptop, from the server, and when it &#8216;appeared on the network&#8217;, start a backup. I then would have to keep track of it to make sure it was only backed up once a day. None of these solutions suited me well.</p>
<h2><strong>What I did&#8230;</strong></h2>
<p>Through a bit of more studying and searching, I discovered that a remote script can be run by <a href="http://support.suso.com/supki/SSH_Tutorial_for_Linux" target="_blank">ssh</a>. I use ssh all the time to connect to my server, and finding that I was able to start a script on the server just by initiating an ssh session was a revelation to me.</p>
<p>Another tool that I found was &#8220;<a href="http://linux.about.com/library/cmd/blcmdl8_anacron.htm" target="_blank">anacron</a>&#8220;. Anacron is kind of like cron, but enables you to run something x number of days, weeks or months. And, if the computer is not running at midnight, anacron will make sure the program will run sometime during that day as long as the computer is on sometime in that day. Unlike cron, anacron does not enable you to run a program multiple times a day, or at exact times. This is exactly what I was looking for and anacron was already installed on my laptop, and was already set up to run upon boot.</p>
<p><strong>This is not exactly a step by step tutorial</strong>, as you need to know how to get around your system, and run things as root.</p>
<p>I wanted the backup process to be automatic, so I needed to set up ssh keys. I have never set up ssh keys before. There are a lot of tutorials on the net to help along; and I picked this one: <a href="http://news.softpedia.com/news/How-to-Use-RSA-Key-for-SSH-Authentication-38599.shtml" target="_blank">http://news.softpedia.com/news/How-to-Use-RSA-Key-for-SSH-Authentication-38599.shtml</a></p>
<p>This is the command to generate the keys. I wanted unattended backups, so I did not enter a passphrase.</p>
<blockquote><p># ssh-keygen -t rsa</p></blockquote>
<p>I also ran these commands to copy the files to the appropriate directories and files:</p>
<blockquote><p># scp .ssh/id_rsa.pub username@hostname.com:~<br />
# cd $HOME<br />
# cat id_rsa.pub &gt;&gt; .ssh/authorized_keys</p></blockquote>
<p>I also had to copy the keys from the .ssh directory in my home directory to the .ssh diretory in the /root directory.</p>
<p>Read over the ssh tutorial sited above, and when you are done you should be able to ssh into your server with:</p>
<blockquote><p># ssh username@remote.hostname.com</p></blockquote>
<p>I like sshfs to mount my remote directories.<br />
if it is not installed on your server, do it by running:</p>
<blockquote><p># sudo apt-get install sshfs</p></blockquote>
<p>or find it in the Ubuntu Software Center.</p>
<p>You will also need a recent version of Back In Time. I have v1.0.8 installed. The difference between the newest version and older ones, is that the newer version can have multiple profiles. That is, you can have a different profile for each computer you want to back up from your common point (server).</p>
<p>I added the Back In Time stable repository ppa. This will give you the latest and greatest version of Back In Time. If you don&#8217;t need multiple profiles, you can install Back In Time from the Ubuntu Software Center and it will be fine. Do this command to add the repository:</p>
<blockquote><p># sudo apt-add-repository ppa:bit-team/stable</p></blockquote>
<p>Then do:</p>
<blockquote><p># sudo apt-get update<br />
# sudo apt-get install backintime-gnome</p></blockquote>
<p>Some explaination is needed here that probably should have been mentioned sooner. My server has ubuntu-desktop installed on it (that is, a full gui interface). The Back In Time profile configuration is easily done with the gui. Then the actual backups can be done with the command line. This also means that if you don&#8217;t have a server, your desktop computer should work just fine to backup your laptop with these instructions. There is nothing really &#8220;servery&#8221; about the process.</p>
<h2>OK, some preliminary work:</h2>
<p>You need to make a mount point on your server where you want to mount your laptop drive. Create a blank directory where you want it mounted. I chose &#8220;/home/ubuntu-laptop&#8221; as my mount point.</p>
<p>Create directories on your laptop and on the server where you want the script files to go. On my laptop, I put my backup script in &#8220;/home/myhome/Scripts_and_Programs/server_backup&#8221;. You can put yours where ever you want. On my server I put the script in &#8220;/home/myhome/Scripts&#8221;.</p>
<p>I use static ip addresses for my home network devices. You can set up a static ip for your laptop and server in the network manager, but I chose to let the rounter do it. My router lets me pick a certain ip to be assigned by its DHCP. It is based off the mac address of my laptop wifi connection and my server eithernet card. My laptop is assigned 192.168.1.5 and my server is 192.168.1.11. By letting the rounter assign the addresses, I am free to take my laptop somewhere else, and some other wifi rounter will be free to assign my laptop any address it needs to.</p>
<p>Test your connections. ssh into your server. If your ssh keys were setup correctly, a command like:</p>
<blockquote><p># ssh -X myname@192.168.1.11</p></blockquote>
<p>should work, and no password is necessary. On your first connection, you may be asked to accept the key. Answer &#8220;yes&#8221; and proceede.</p>
<p>Now, try to mount your laptop drive from your server. My command to do this is:</p>
<blockquote><p># sshfs myname@192.168.1.5:/home /home/ubuntu-laptop</p></blockquote>
<p>If you go to &#8220;/home/ubuntu-laptop&#8221;, on your sever, you should now see your laptop files. Again, the first time you do this, you may be asked to accept the ssh keys. You will also be asked for your laptop password. You could set up another set of ssh keys for your server if you would like, but the sshfs command has an option to get your password from somewhere else and that is how I did it. That will be explained later.</p>
<p>If all is well up to this point, you can fire up the Back In Time gui to configure your backup. On the command line, the command to enter is &#8220;backintime-gnome&#8221;. You still should be ssh&#8217;ed into your server, or be at a server terminal. Notice that my ssh command from above has the option -X in it. This will allow X display forwarding so you can run a gui program from your terminal box.</p>
<p>in your ssh&#8217;ed terminal box, that is connected to your server, type:</p>
<blockquote><p># backintime-gnome</p></blockquote>
<p>This should bring up the Back In Time gui, ready to configure.  Click the &#8220;settings&#8221; icon on the Back In Time gui. If you are using a newer version of Back In Time, you can select a &#8220;New&#8221; profile. Mine is called &#8220;ubuntu-laptop&#8221;. Then you need to decide where to put your backups. I have a usb drive mounted at /home/shared2. You need to traverse to the point where you want your backups to go using the folder icon to the right of &#8220;Where to save snapshots&#8221;. Leave &#8220;Schedule&#8221; disabled as this will be handled in one of the script files.</p>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/screenshot01.png"><img class="alignnone  wp-image-587" title="screenshot01" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/screenshot01.png" alt="" width="501" height="273" /></a></p>
<p>Click the &#8220;Include&#8221; tab and add the folders you want backed up. Remember that I have my laptop mounted at /home/myname/ubuntu-laptop on my server. This is where you need to go to include the included folders. Notice I have a seperate entry for my Thunderbird email folders. This is because I have any hidden files .* excluded from being backup up and my Thunderbird email folders are inside a hidden directory.</p>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot02.png"><img title="Screenshot02" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot02.png" alt="" width="501" height="273" /></a></p>
<p>Click the &#8220;Exclude&#8221; tab. Add any files or folders you do not want backed up. As you can see, I added an entry to skip all my configuration files with .* . You need to decide what you want backed up. I also excluded my download directory, my virtual machines folder (large files for experimentation only), and any other directories where I might have other systems mounted in.</p>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot03.png"><img title="Screenshot03" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot03.png" alt="" width="501" height="411" /></a></p>
<p>Click the &#8220;Auto-remove&#8221; tab and decide how many backups to want to retain.</p>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot04.png"><img title="Screenshot04" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot04.png" alt="" width="500" height="363" /></a></p>
<p>Click the &#8220;Options&#8221; tab. I added one checkmark here that was not already checked. I checked &#8220;Continue on errors (Keep incomplete snapshots). I did this because I had a snapshot fail because of some protected .files. I suggest you click this box, at least at first. Then after you make backups, you can look at the log file to see what failed. Otherwise, you will never get a backup if there is an error somewhere.</p>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot05.png"><img title="Screenshot05" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot05.png" alt="" width="501" height="364" /></a></p>
<p>I did not adjust any of the &#8220;Expert Options&#8221;.</p>
<p>Click &#8220;ok&#8221; and this should bring you back to the main &#8220;Back In Time&#8221; window. If you like, you can make your initial backup by pressing &#8220;take snapshot&#8221; icon. Your first backup may take a good amount of time, depending on your wifi connection, and the size of your backup. Mine included many video files, and took well over a day and a half. Subsequent backups are quite quick, depending on what new or changed files your need backed up.</p>
<p>If all is successful to this point, you can close the &#8220;Back In Time&#8221; gui. I suggest you wait until your initial backup is done, as the backup will continue even after you shut the gui, but this may cause problems when you try to setup the rest of the system.</p>
<h2>Now the meat and potatoes:</h2>
<p>This is the script &#8220;start_laptop_backup.sh&#8221; that is run on the laptop side, to initiate the backup.</p>
<blockquote><p>#!/bin/sh<br />
# Automated backup of laptop, that is not always on, to a server that is always on.<br />
# By: John McDougall<br />
# Aug. 11, 2011<br />
#<br />
# This is a script that is run on the laptop. It starts a script on the server named backup_ubuntu-laptop.sh<br />
#<br />
# Is the server pingable?<br />
# try three pings, wait maximum one sec for reply, be quiet<br />
echo &#8220;Starting laptop side script&#8221;<br />
echo &#8220;testing to see if server is accessable&#8221;<br />
if ping -qc 3 -W 1 192.168.1.11 &gt; /dev/null; then<br />
echo &#8220;yes&#8230; Server is up. Will now attempt backup&#8221;<br />
echo &#8220;Connecting to server.&#8221;<br />
ssh -X john@192.168.1.11 /home/john/Scripts/backup_ubuntu-laptop.sh<br />
echo &#8220;Server disconnected&#8230; Closing laptop side script&#8221;<br />
else<br />
echo &#8220;no&#8230; Server is down. No backup done now&#8221;<br />
fi</p></blockquote>
<p>This is what this script does: First, I try to ping my server to see if is available. If it passes that test, I connect to the server over ssh and run the script &#8220;backup_ubuntu-laptop.sh&#8221;. No password needed if the ssh keys are set up properly.</p>
<p>Here is the script on the server side called &#8220;backup_ubuntu-laptop.sh&#8221;.</p>
<blockquote><p>#!/bin/bash<br />
# Automated backup of laptop, that is not always on, to a server that is always on.<br />
# By: John McDougall<br />
# McDougallsHome.net and radio.McDougallsHome.net<br />
# Aug. 11, 2011<br />
#<br />
# This is a script that is run on the server. It is started from a script run through ssh from the laptop to be backed up.<br />
#<br />
# Connect to ubuntu-laptop from server.<br />
echo &#8220;Successfully connected to server&#8230; Running server side script&#8221;<br />
echo &#8220;Attempting to mount ubuntu-laptop to server&#8221;<br />
sshfs -o password_stdin john@ubuntu-laptop:/home /home/ubuntu-laptop &lt; /home/john/Scripts/ubuntu_pwd<br />
echo $1<br />
for i in `cat /proc/mounts | cut -d&#8217; &#8216; -f2`; do<br />
if [ "x/home/ubuntu-laptop" = "x$i" ]; then<br />
echo &#8220;laptop is mounted. &#8221;<br />
# Start Backintime<br />
echo &#8220;Starting backintime&#8221;<br />
# backintime &#8211;backup<br />
backintime &#8211;profile ubuntu-laptop &#8211;backup<br />
echo &#8220;Backup finished&#8221;<br />
echo &#8220;Unmounting ubuntu-laptop&#8221;<br />
fusermount -u /home/ubuntu-laptop<br />
echo &#8220;ubuntu-laptop unmounted. Exiting backup script and disconnecting from server&#8221;<br />
exit<br />
fi<br />
done<br />
echo &#8220;laptop not mounted&#8230; Can not backup&#8221;<br />
exit</p></blockquote>
<p>This script first mounts the laptop via sshfs. Notice the &#8220;-o password_stdin&#8221; option. This enables the password to be entered from another source. In this example, I have the password in a file called laptop_pwd in my Scripts directory on the server. As mentioned earlier, you could set up ssh keys for the server and eliminate the password in a file thing if you feel that is unsafe to do.</p>
<p>This script then confirms that the laptop is indeed mounted. It then initiates the backup with the command &#8220;backintime &#8211;profile ubuntu-laptop &#8211;backup&#8221;. After the backup is finished, the script unmounts the laptop and closes down.</p>
<p>To test all this, open a terminal window on your laptop and start the script &#8220;start_laptop_backup.sh&#8221; and watch its progress. If all worked out, and you already made an initial backup, it should run relatively quick.</p>
<h2>Now to automate it all with anacron:</h2>
<p>You can find a little tutorial on anacron at &#8220;http://www.thegeekstuff.com/2011/05/anacron-examples/&#8221;.<br />
To configure anacron, you must modify the file /etc/anacrontab on your laptop. I did this in a terminal window using the command:</p>
<blockquote><p># sudo nano /etc/anacrontab</p></blockquote>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot06.png"><img class="alignnone  wp-image-592" title="Screenshot06" src="http://radio.mcdougallshome.net/wp-content/uploads/2012/01/Screenshot06.png" alt="" width="603" height="288" /></a></p>
<p>I added one line to the bottom of the anacrontab file as shown above. The first parameter &#8220;1&#8243; means it should be run once a day. The second parameter &#8220;13&#8243; means it will start approximately 13 minutes after the machine is booted. You can change this to whatever you want. Set it at a time where it won&#8217;t interfere with the busy boot process, and anything else you might do as soon as you turn on your computer. The third paramater is a label you make up to identify this process. The fourth parameter is the command to execute. By placing &#8220;nice&#8221; before the command, if the system is very busy, the backup process will wait until the system is less busy. You can look up the manual page for &#8220;nice&#8221; by typing &#8220;man nice&#8221; in a terminal window.</p>
<p>That about does it. If everything worked so far, you are ready to reboot your computer. Anacron should run and a backup initiated. Anacron will only run once a day even if the laptop is turned on several times a day, or left on for days. You will still only have one backup per day. You can look at the files in /var/spool/anacron. ubuntu-laptop (or what ever label you used in the anacrontab file) should be listed there. Open it up with nano or gedit, and it should list the last date that line in the anacrontab file was executed.</p>
<p>I hope this post helps you in your laptop backup.  It might seem kind of complicated, but I enjoyed the process of learning and figuring it all out.  Have fun in exploring linux!</p>
<p>John &#8211; K7JM</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/software/how-i-back-up-my-ubuntu-linux-laptop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aquaria mouse pointer problem solved</title>
		<link>http://radio.mcdougallshome.net/ubuntu/aquaria-mouse-pointer-problem-solved/</link>
		<comments>http://radio.mcdougallshome.net/ubuntu/aquaria-mouse-pointer-problem-solved/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 23:50:40 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[aquaria]]></category>
		<category><![CDATA[bit blot]]></category>
		<category><![CDATA[humble introversion bundle]]></category>
		<category><![CDATA[linux games]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=578</guid>
		<description><![CDATA[I purchased the Humble Introversion Bundle for the Ubuntu Linux platform.  I have had a problem getting the game Aquaria working on my laptop computer.  The mouse pointer would automatically travel up and left.  In certain menus, selections were impossible to select.  It was very frustrating and made the game unusable.  After much searching, I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="aquaria" src="http://www.bit-blot.com/aquaria/images/mediakit.gif" alt="" width="149" height="149" /><strong>I purchased the <a href="http://www.humblebundle.com/" target="_blank">Humble Introversion Bundle</a></strong> for the Ubuntu Linux platform.  I have had a problem getting the game <a href="http://www.bit-blot.com/aquaria/" target="_blank">Aquaria</a> working on my laptop computer.  The mouse pointer would automatically travel up and left.  In certain menus, selections were impossible to select.  It was very frustrating and made the game unusable.  After much searching, I came upon this page with the solution: &#8220;<a href="http://www.bit-blot.com/forum/index.php?PHPSESSID=4gnqdbukdqp4nojfuo8kamrh06&amp;topic=4264.msg32602#msg32602" target="_blank">Aquaria mouse pointer problem solved</a>&#8221; on the bit blot forums.  Thank you <strong>archmage</strong> for coming up with this easy solution.  The game is now playable, and my kids love it.</p>
<p>John &#8211; K7JM</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/ubuntu/aquaria-mouse-pointer-problem-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Joy Of Ham Radio</title>
		<link>http://radio.mcdougallshome.net/computers/the-joy-of-ham-radio/</link>
		<comments>http://radio.mcdougallshome.net/computers/the-joy-of-ham-radio/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 03:20:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[ARRL]]></category>
		<category><![CDATA[fldigi]]></category>
		<category><![CDATA[K0SRE]]></category>
		<category><![CDATA[Linux in the HAM Shack]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=519</guid>
		<description><![CDATA[Another Ham discovers Linux&#8217;s ham friendliness.  ARRL&#8217;s website has another nice story about a Ham using Ubuntu Linux and fldigi to renew his love for Amateur Radio.  Check out the post HERE.  Good going Steve (KØSRE)!  For more of Linux In The Ham Shack, check out &#8220;Linux In The Ham Shack&#8221; podcast. - John, K7JM]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.arrl.org/files/file/Logos%20and%20Photos/League_diamond_color_low.JPG"><a href="http://radio.mcdougallshome.net/wp-content/uploads/2010/10/lhs_logo.png"><img class="alignnone size-full wp-image-520" title="lhs_logo" src="http://radio.mcdougallshome.net/wp-content/uploads/2010/10/lhs_logo.png" alt="" width="202" height="181" /></a><img class="alignnone" title="ARRL Logo" src="http://www.arrl.org/files/file/Logos%20and%20Photos/League_diamond_color_low.JPG" alt="" width="81" height="180" /></a></p>
<p><strong>Another Ham discovers Linux&#8217;s ham friendliness</strong>. <a href="http://www.arrl.org/" target="_blank"> ARRL&#8217;s website</a> has <a href="http://www.arrl.org/joy-of-ham-radio" target="_blank">another nice story</a> about a Ham using Ubuntu Linux and fldigi to renew his love for Amateur Radio.  Check out the post <a href="http://www.arrl.org/joy-of-ham-radio" target="_blank">HERE</a>.  Good going Steve (KØSRE)!  For more of Linux In The Ham Shack, check out &#8220;<a href="http://lhspodcast.info/" target="_blank">Linux In The Ham Shack</a>&#8221; podcast.</p>
<p>- John, K7JM</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/computers/the-joy-of-ham-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ambiance Blue Theme For Ubuntu</title>
		<link>http://radio.mcdougallshome.net/computers/ambiance-blue-theme-for-ubuntu/</link>
		<comments>http://radio.mcdougallshome.net/computers/ambiance-blue-theme-for-ubuntu/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 00:54:50 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ambiance Blue Theme]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=505</guid>
		<description><![CDATA[My computers run on the Ubuntu Operating System &#8211; Not Windows.  If you did not know there was a choice other than Windows and Macs, you need to check out the totally FREE operating system Ubuntu!  Besides the operating system being free, ALMOST ALL of the application programs are free.  There are thousands of them, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>My computers run on the Ubuntu Operating System</strong> &#8211; Not Windows.  If you did not know there was a choice other than Windows and Macs, you need to check out the totally FREE operating system <a title="Get Ubuntu FREE Here" href="http://www.ubuntu.com/" target="_blank">Ubuntu</a>!  Besides the operating system being free, ALMOST ALL of the application programs are free.  There are thousands of them, doing almost anything you need to do on a Windows or Mac machine.  And, if that weren&#8217;t enough, most of those thousands of free programs are installable from inside Ubuntu itself.  You don&#8217;t have to go searching the Internet for them.  Usually just ONE CLICK, and boom, your program is installed.  Besides all that, there is very little worry about viruses as on Windows, and increasingly on the Mac.  It is really NICE!</p>
<p>Anyway, that is not really what this post is supposed to be about.  This post is about a nice theme that I came across for my Ubuntu desktop.  Ubuntu, besides being FREE with lots of FREE applications, it is very nice looking, and if you want to dig deeper, you can make it REALLY nice looking.</p>
<p>I usually have my Ubuntu Desktop all decked out with some sort of modified Emerald theme, with transparency, and glowing frames and pulsating buttons and such.  As I was searching around one of the many Ubuntu web sites, I came across a proposed theme for the next version of Ubuntu coded named <a title="Introducing the Maverick Meerkat" href="http://www.markshuttleworth.com/archives/336" target="_blank">Maverick Meerkat</a> due to be released on 10/10/10.  I am sure this nice theme I found will not be a default theme, as purple and orange seem to be someones liking on the Ubuntu development teams.  I am personally not that thrilled about the purple/orange theme, and usually look for other options.</p>
<p>The theme I came across is a beautiful blue theme called Ambiance Blue.  It is not fancy, or full of glowing parts, or throbbing buttons, but is a very nice looking simple blue theme.  The Ambiance Blue Theme can be downloaded from <a title="Ambiance Blue Theme For Ubuntu" href="https://wiki.ubuntu.com/Artwork/Incoming/Maverick/AmbianceBlue" target="_blank">HERE</a>.  See the picture of my theme below, or click on the small screenshot to see a larger view of one of my desktops.  Yes, in Ubuntu, you have MULTIPLE VIRTUAL DESKTOPS.  Very Nice!</p>
<p>- John</p>
<p><a class="class=&quot;shutterset_2010_08_30_blue&quot;" title="Ambiance Blue Theme" href="http://radio.mcdougallshome.net/wp-content/uploads/2010/08/Screenshot.png"><img class="alignnone size-full wp-image-506" title="Ambiance Blue Theme" src="http://radio.mcdougallshome.net/wp-content/uploads/2010/08/Screenshot.png" alt="" width="476" height="372" /></a> <a class="class=&quot;shutterset_2010_08_30_blue&quot;" title="One of my Ubuntu Virtual Desktops with Ambiance Blue Theme" href="http://radio.mcdougallshome.net/wp-content/uploads/2010/08/Screenshot-1.png"><img class="alignnone size-medium wp-image-507" title="One of my Ubuntu Virtual Desktops with Ambiance Blue Theme" src="http://radio.mcdougallshome.net/wp-content/uploads/2010/08/Screenshot-1-300x176.png" alt="" width="300" height="176" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/computers/ambiance-blue-theme-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu and Ham Radio</title>
		<link>http://radio.mcdougallshome.net/ham-radio-news/ubuntu-and-ham-radio/</link>
		<comments>http://radio.mcdougallshome.net/ham-radio-news/ubuntu-and-ham-radio/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 02:21:00 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Ham Radio News]]></category>
		<category><![CDATA[Ham Radio Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[Americann Radio Relay League]]></category>
		<category><![CDATA[ARRL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux for Ham Radio]]></category>
		<category><![CDATA[Ubuntu for Ham Radio]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=496</guid>
		<description><![CDATA[The ARRL web site had a nice entry about Ubuntu for Ham Radio.  The article could have been four times as long and not cover all the aspects of why Ubuntu Linux is good for Ham Radio.  Also, several of the applications that the author mentioned in the ARRL article that he used with WINE, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.arrl.org/ubuntu-linux-for-hams" target="_blank"><img class="alignnone size-full wp-image-497" title="Ubuntu Linux for Ham Radio" src="http://radio.mcdougallshome.net/wp-content/uploads/2010/07/ubuntu_arrl.png" alt="" width="622" height="369" /></a></p>
<p>The <a href="http://www.arrl.org/ubuntu-linux-for-hams" target="_blank">ARRL web site</a> had a nice entry about<a href="http://www.ubuntu.com/" target="_blank"> Ubuntu</a> for <a title="What is Ham Radio?" href="http://radio.mcdougallshome.net/what_is_ar/" target="_blank">Ham Radio</a>.  The article could have been four times as long and not cover all the aspects of why Ubuntu Linux is good for Ham Radio.  Also, several of the applications that the author mentioned in the ARRL article that he used with WINE, have alternates available for Linux, including PCB layout software, and Circuit analysis.  Almost ALL FREE.  Besides, Ubuntu&#8217;s super easy to install Ham Radio repository of applications, <a title="Some Linux Ham Radio Applications" href="http://radio.linux.org.au/?sectpat=All&amp;ordpat=title" target="_blank">HERE</a> is a page full of stuff, ranging from the latest and greatest to older Linux Ham Radio programs.  Ham Radio is about innovation, and experimentation.  It is sad to see so much of it is built up on a closed, unexperimentalable, unmodifiable, and costly solution like Windows.</p>
<p>73,<br />
John &#8211; K7JM</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/ham-radio-news/ubuntu-and-ham-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Display A Text Document On Your Web Page</title>
		<link>http://radio.mcdougallshome.net/software/how-to-display-a-text-document-on-your-web-page/</link>
		<comments>http://radio.mcdougallshome.net/software/how-to-display-a-text-document-on-your-web-page/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 00:49:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Ham Radio Software]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[cqrlog]]></category>
		<category><![CDATA[display a text page on a web site]]></category>
		<category><![CDATA[kermit]]></category>
		<category><![CDATA[Linux in the HAM Shack]]></category>
		<category><![CDATA[txt2html]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=444</guid>
		<description><![CDATA[Being a Ham Radio operator, I&#8217;ve wanted, for some time, to display my log file on my web site. I&#8217;ve been researching it for some time, and mostly ran into methods that require java or php, or some sort of web scripting. This is beyond me and I wanted something simpler; and this is what [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_445" class="wp-caption alignleft" style="width: 316px"><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/08/k7jm_log_pic.png"><img class="size-full wp-image-445" style="margin: 5px;" title="A Corner of My Web Page" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/08/k7jm_log_pic.png" alt="A Corner of My Web Page" width="306" height="223" /></a><p class="wp-caption-text">The corner of my web page with a link to view my Ham Radio log file.</p></div>
<p><strong>Being a <a title="What is Amateur (Ham) Radio?" href="http://radio.mcdougallshome.net/what_is_ar/">Ham Radio</a> operator, I&#8217;ve wanted, for some time, to display my log file on my web site.</strong> I&#8217;ve been researching it for some time, and mostly ran into methods that require java or php, or some sort of web scripting.  This is beyond me and I wanted something simpler; and this is what I have come up with.</p>
<p>My computers run on the <a href="http://www.ubuntu.com/" target="_blank">Ubuntu Linux Operating System</a>.  I came across a small command line utility program called <a href="http://txt2html.sourceforge.net/" target="_blank">txt2html</a>.  The name pretty much explains what it does.  It has many features that include many formatting options; one being, that I can pre-append a file to the front of another file.  I tested this feature to apply a preformatted html heading to my log page.  I made a simple sample of a text log page listing contacts, and ran it through txt2html and it attached my header to the log page and spit it all out as an html file ready to display on my web page.</p>
<p>My sample log page was called log.txt and looks like this:</p>
<pre>
<table style="height: 75px;" border="1" width="200">
<tbody>
<tr>
<td>
<pre>call            QTH
k7jm            Helena, MT
wa7vxm          Butte, MT</pre>
</td>
</tr>
</tbody>
</table>
</pre>
<p>My sample heading was called &#8216;log_file_heading.html&#8217; and looks like this:</p>
<h1><span style="color: #ff0000;">K7JM&#8217;s Log File</span></h1>
<p>I put it all through txt2html with a command like this:</p>
<blockquote>
<pre>txt2html --append_head ./log_file_heading.html ./log.txt &gt;./log.html</pre>
</blockquote>
<p>And the output file &#8216;log.html&#8217; looks like this and is ready to display on your web page:</p>
<table border="1">
<tbody>
<tr>
<td>
<h1><span style="color: #ff0000;">K7JM&#8217;s Log File</span></h1>
<pre>call            QTH
k7jm            Helena, MT
wa7vxm          Butte, MT</pre>
</td>
</tr>
</tbody>
</table>
<p>I wanted to automate a way to put this file on my web site without getting too complicated.  The simple <a title="The Linux ftp command" href="http://linux.about.com/od/commands/l/blcmdl1_ftp.htm" target="_blank">ftp</a> command would work, but it takes a bit to automate it. After a bit of research, I came across &#8216;<a title="Kermit or C-Kermit" href="http://www.columbia.edu/kermit/ck80.html" target="_blank">kermit</a>&#8216;.  &#8216;kermit&#8217; is a simple program that takes data from a file and performs the commands listed in the file.  Perfect.  I put the following commands in a file called &#8216;log.kermit&#8217;:</p>
<blockquote><p>ftp open ftp.myhostsite.net /user:myusername /password:mypassword<br />
put ./log.html /www/whereyou/wantit/log.html<br />
exit</p></blockquote>
<p>I then called kermit like this:</p>
<blockquote><p>kermit ./log.kermit</p></blockquote>
<p>and it is done.</p>
<p>To make things a bit cleaner and more automatic, I created a script file called &#8216;log_doit.sh&#8217; that looks something like this:</p>
<blockquote><p>txt2html &#8211;append_head /home/john/Desktop/log_file_heading.html /home/john/Desktop/cqrlog.html &gt;/home/john/Desktop/log.html<br />
kermit /home/john/Desktop/log.kermit<br />
exit</p></blockquote>
<p>Now, to do the whole process, I just had to update my log file, save it, and run the script &#8216;log_doit.sh&#8217; and it would be on my web site.</p>
<h1>A New Way &#8211; With cqrlog</h1>
<p>After I put all this together, I remembered hearing about a Linux logging program called <span style="color: #0000ff;"><strong><a title="CQRLOG by OK2CQR and OK1RR" href="http://www.cqrlog.com/" target="_blank">cqrlog</a></strong></span>, on the &#8216;<strong><a title="Linux In The Ham Shack" href="http://lhspodcast.info/" target="_blank">Linux In The Ham Shack</a></strong>&#8216; (link updated 9/2010) podcast.  If you are a Ham Radio Operator or use Linux, I strongly suggest you give this great podcast a listen.  It is always entertaining, and they have covered some very useful stuff for the Ham that is running a Linux operating system.</p>
<p>Anyway, I downloaded and installed &#8216;cqrlog&#8217; and started playing with it.  I was specifically looking for a way to export the log file so I could run it through &#8216;txt2html&#8217;.  Lo and behold, &#8216;cqrlog&#8217; does one step better; it exports the log right into the &#8216;html&#8217; format.  Wow! Perfect!.</p>
<p>I learned a lot by using txt2html, but now I can skip that step completely and just export the log file in html format and run a simpler script that runs &#8216;kermit&#8217; to upload the file to my web site.  Click <a title="K7JM's On-Line Amateur Radio Log File" href="http://radio.mcdougallshome.net/files/log.html" target="_blank">HERE</a> to see the actual page on my web site.  As of when this was written, the file is a test one that was created by playing with &#8216;cqrlog&#8217;.  It will change once I start using &#8216;cqrlog&#8217; for real.</p>
<p>John &#8211; K7JM</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 111px; width: 1px; height: 1px;">
<h1><span style="color: #ff0000;">K7JM&#8217;s Log File</span></h1>
<pre>call            QTH
k7jm            Helena, MT
wa7vxm          Butte, MT</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/software/how-to-display-a-text-document-on-your-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaunty Jackalope Revisited</title>
		<link>http://radio.mcdougallshome.net/computers/jaunty-jackalope-revisited/</link>
		<comments>http://radio.mcdougallshome.net/computers/jaunty-jackalope-revisited/#comments</comments>
		<pubDate>Sun, 10 May 2009 22:52:57 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rant and Rave]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[jaunty jackalope]]></category>
		<category><![CDATA[ubuntu install]]></category>
		<category><![CDATA[ubuntu missing apps]]></category>
		<category><![CDATA[ubuntu whoes]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=425</guid>
		<description><![CDATA[After I installed Ubuntu 9.04 &#8211; Jaunty Jackalope, I posted a lengthy list of problems I encountered during and after the process. You can read it by clicking HERE. I received a great reply from Rob laying out some important facts about updating a major distribution of most any variety.  I encourage you to read [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_413" class="wp-caption alignleft" style="width: 310px"><a title="Click to get Jaunty Jackalope" href="http://www.ubuntu.com/" target="_blank"><img class="size-medium wp-image-413" title="Click to get Jaunty Jackalope" src="../wp-content/uploads/2009/04/jaunty-300x193.jpg" alt="Click to get Jaunty Jackalope" width="300" height="193" /></a><p class="wp-caption-text"> </p></div>
<p><strong>After I installed Ubuntu 9.04 &#8211; Jaunty Jackalope</strong>, I posted a lengthy list of problems I encountered during and after the process. You can read it by clicking <a href="http://radio.mcdougallshome.net/software/my-experience-installing-ubuntu-904-jaunty-jackalope/" target="_blank">HERE</a>.</p>
<p>I received a great reply from <cite></cite><a class="url" href="http://lovehateubuntu.blogspot.com/" target="_blank">Rob</a> laying out some important facts about updating a major distribution of most any variety.  I encourage you to read <cite></cite><a class="url" href="http://lovehateubuntu.blogspot.com/" target="_blank">Rob</a>&#8216;s reply <small class="commentmetadata"><a href="../software/my-experience-installing-ubuntu-904-jaunty-jackalope/#comment-51" target="_blank">Here: May 9th, 2009 at 11:25 am.</a></small></p>
<p>It seems, however, that my experience with Jaunty was not unique.  My blog post has been ready by many other users looking for solutions.  Here is a partial list of search entries that resulted in finding and reading my post.</p>
<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<ul>
<li>
<p style="margin-bottom: 0in;">solution gdesklets jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">menu bar missing gnome ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty jackalope install/upgrade 	experie</p>
</li>
<li>
<p style="margin-bottom: 0in;">install kept back upgrade brasero 	jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">desktop effects could not be 	enabled</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 partial upgrade 	brasero</p>
</li>
<li>
<p style="margin-bottom: 0in;">error gdesklets ubuntu 904</p>
</li>
<li>
<p style="margin-bottom: 0in;">partial upgrade ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">tracker jackalope reindex</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu alternate install +grub 	boot load</p>
</li>
<li>
<p style="margin-bottom: 0in;">+nvidia +drivers +jaunty +not 	+loaded</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty partial upgrade problem</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty jackalope partial upgrade</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 no menu bar</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 failed to open 	gdesklets</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 sansa not connecting</p>
</li>
<li>
<p style="margin-bottom: 0in;">missing menu bars jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">9.4 jackalope indexing error</p>
</li>
<li>
<p style="margin-bottom: 0in;">downloading files from sansamp3 	player t</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 tracker applet missing</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty jackalope menu bar 	disappear</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu jackalope tracker reindex</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 missing password</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu jaunty not detecting sansa</p>
</li>
<li>
<p style="margin-bottom: 0in;">upgrading to jaunty jackalope 	partial up</p>
</li>
<li>
<p style="margin-bottom: 0in;">gdesklets jaunty fix</p>
</li>
<li>
<p style="margin-bottom: 0in;">desktop effects could not be 	enabled</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu jaunty sansa</p>
</li>
<li>
<p style="margin-bottom: 0in;">tracker indexing error jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">how to start the compiz gui in 	ubuntu 9.</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 recovery menu</p>
</li>
<li>
<p style="margin-bottom: 0in;">menu bar missing in ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">applet is not loading ubuntu 	jaunty jack</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu update manager icon 	disappeared</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty jackalope recovery menu</p>
</li>
<li>
<p style="margin-bottom: 0in;">&#8220;open movie editor&#8221; 	ubuntu 9.04 mp3</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 problem hp laserjet 	printer</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 sansa not connecting</p>
</li>
<li>
<p style="margin-bottom: 0in;">how to install gdesklets in ubuntu 	9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">compiz buggy since upgrade to 	jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">kernel failed install when 	updating to 9</p>
</li>
<li>
<p style="margin-bottom: 0in;">partial upgrade jaunty error open 	office</p>
</li>
<li>
<p style="margin-bottom: 0in;">sandisk jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">nvidia picked up during live not 	after I</p>
</li>
<li>
<p style="margin-bottom: 0in;">missing 9.04 from grub</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty install software failed</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 missing compiz menu</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 tracker &#8220;what is&#8221;</p>
</li>
<li>
<p style="margin-bottom: 0in;">how do i fix a failed ubuntu 9.04 	instal</p>
</li>
<li>
<p style="margin-bottom: 0in;">sansa clip not working on ubuntu 	9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">reindex ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">not work tracker ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 gdesklets</p>
</li>
<li>
<p style="margin-bottom: 0in;">tracker ubuntu 9.04 &#8220;re-index&#8221;</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty disable tracker</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 partial upgrade cannot 	resta</p>
</li>
<li>
<p style="margin-bottom: 0in;">jaunty compiz startup</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 + update error</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 nvidia not detected</p>
</li>
<li>
<p style="margin-bottom: 0in;">power button missing from ubuntu 	9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">sansa not connecting in jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">kino ubuntu 9.04</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu partial upgrade jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">some of the menus are missing on 	ubuntu</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 reindex</p>
</li>
<li>
<p style="margin-bottom: 0in;">tracker applet missing ubuntu 	jaunty</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 gdesklets</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu jaunty auto detect sandisk 	sansa</p>
</li>
<li>
<p style="margin-bottom: 0in;">ubuntu 9.04 vlc media player error</p>
</li>
<li>
<p style="margin-bottom: 0in;">xbmc failed to detect distribution 	jaunt</p>
</li>
<li>
<p style="margin-bottom: 0in;">upgrade ubuntu jaunty jackalope 	gui err</p>
</li>
</ul>
<p>It is obvious that there were too many errors, many of the same ones I encountered, while installing Jaunty.  I (and others) would love to hear about your experience installing Jaunty.  Good or bad.</p>
<p>John &#8211; K7JM</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/computers/jaunty-jackalope-revisited/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Experience Installing Ubuntu 9.04 &#8211; Jaunty Jackalope</title>
		<link>http://radio.mcdougallshome.net/software/my-experience-installing-ubuntu-904-jaunty-jackalope/</link>
		<comments>http://radio.mcdougallshome.net/software/my-experience-installing-ubuntu-904-jaunty-jackalope/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 04:23:55 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[jaunty jackalope]]></category>
		<category><![CDATA[ubuntu install]]></category>
		<category><![CDATA[ubuntu missing apps]]></category>
		<category><![CDATA[ubuntu whoes]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=412</guid>
		<description><![CDATA[Ubuntu 9.04 &#8211; code named Jaunty Jackalope, was released on April 23. I am always (maybe too) eager to upgrade to the next version of Ubuntu as new features are always added, making it an even better operating system. Yes, for the uninformed, Ubuntu is a computer operating system. Your computer may run Windows or [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a title="Click to get Jaunty Jackalope" href="http://www.ubuntu.com/" target="_blank"><img class="size-medium wp-image-413 alignleft" title="Click to get Jaunty Jackalope" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/04/jaunty-300x193.jpg" alt="Click to get Jaunty Jackalope" width="300" height="193" /></a></strong></p>
<p><strong>Ubuntu 9.04 &#8211; code named Jaunty Jackalope, was released on April 23.</strong> I am always (maybe too) eager to upgrade to the next version of Ubuntu as new features are always added, making it an even better operating system.  Yes, for the uninformed, Ubuntu is a computer operating system.  Your computer may run Windows or if it is a Mac, it may run OS X.  My computer, along with millions of others runs the totally free and open Linux version called Ubuntu.</p>
<p>Typically, version updates are made right over the Internet.  It will download a zillion files and update everything, taking, possibly, several hours to do.  I read an article on some web site that I could download the distribution and update it from a burned CD.  Since I had two computers to update, I decided this might be a time savings way to go.</p>
<p>Here is my experience:</p>
<p>I downloaded the Alternate Install disc over night.  I popped the disk into my computer and it immediately detected that the disc had a distribution upgrade on it and asked if I wanted to &#8220;upgrade&#8221;.  I said yes, and off we went.  It then asked if I wanted to update any files that may be newer than on the disc, by connecting to the Internet and downloading them.  If I selected &#8220;NO&#8221;, I could &#8220;simply&#8221; update my system later and it would pick up the needed files.  I chose to do this as I figured it would get the system up an running the quickest.</p>
<p>Before I go into details, I must say that I have a co-worker that also runs Ubuntu.  He chose to update from over the Internet.  He said that he had to restart the process several times because it kept on stopping.  It was probably because there were millions of others trying to do it at the same time.  Also, it downloaded over a thousand files.  It took a long time, but in the end, he said everything seemed to work ok.</p>
<p>Back to my update.  As the update progressed, it asked several times about configuration files, and whether I wanted to keep the current ones or up date them.  I had no idea what to do on these.  One option was to merge them, which I did several times.  I have no idea if that did anything.  I kept getting an error saying the latest kernel version xx-xx-xx would not start.  Oh, Oh.  That is very not good.  It came down to one of my choices in updating the grub menu.lst.  After several errors, it came back and asked that question again.  I chose &#8220;update to developers version&#8221; or some such thing.  Yeah, the new kernel loaded.</p>
<p>The process finally finished and it was time to reboot.  When it did, my 3D graphics did not work.  Meaning Compiz was disabled.  I tried to load a new Nvidia driver with not much luck.  I decided maybe I needed to do that update that was mentioned earlier.  I chose &#8220;update&#8221; and boom, it decided to download several hundred files.  This was the part that I though I was avoiding.  Once it downloaded them, I got a message saying that all the files weren&#8217;t downloaded, and suggested a &#8220;partial upgrade&#8221;.  I chose to do that.  I ran &#8220;update&#8221; again and it picked up more files, but this time the update process crashed when it was time to install them.  After much head scratching and searching the Internet, and many hours passed, upon boot-up, I selected &#8220;recovery mode&#8221;, and selected a sub menu that said something about repairing packages.  I chose that option.  It recognized that there were updates, and it loaded them successfully.  After that, my &#8220;update manager&#8221; seemed to work.  There were many other users out there that were looking for  the same answer.</p>
<p>My Nvidia drivers were still not loaded.  It detected a new version of the driver, but when I tried to enable it, it gave me a message back that said it was previously enabled.  So did I just disable it, or was it enabled?  I went into the settings, and this time I was able to turn desktop effects on.  But, the Compiz GUI was missing.  I re-installed Compiz and I was able to turn everything back on.  What a pain.</p>
<p>Somewhere in all of this, my screen locked up because the screen saver came on.  When I tried to log back in with my password, it said my password was &#8220;invalid&#8221;.  Oh, no.  I clicked the &#8220;Switch user&#8221; button, reselected myself (which said I was already logged in) and it took my password correctly.  After several more hours of Internet searching, I found that many other have had this problem even before the new version of Ubuntu.  I eventually came up with the fix after digging into the depths of files that have never seen the light of day.</p>
<p>Before I started the upgrade process, I did a complete partition clone saved to an external drive.  I also separately backup the home directory of my and my family&#8217;s accounts.  I also went through and did screen shots of all the menus.  I did this, because I had a past experience that failed and I had to reinstall the entire operating system, and I couldn&#8217;t remember all the different programs I had installed.  This was a good idea, as I was soon in for a big surprise.</p>
<p>It seemed that everything finally came out ok, but I noticed that an icon on my menu bar was missing.  It was for the search applet.  I very much needed that.  It indexed all of the files in my home directory, and could search for anything in a second.  I have the &#8220;open clip art&#8221; collection on my drive which consists of thousands of pieces of clip art.  There is no way to search this collection without the indexed search applet.  The applet also categorized its results and actually displayed thumb nails of its results.  A very handy thing for searching through clip art.  The problem was, I did not even know what this little program was called.  I could not even search for it on the Internet.  It took another hour or so of time to finally figure that it is called &#8220;Tracker&#8221;.  I reinstalled it.  The configuration files were in place so it came back like it should &#8211; except, it kept saying there was an error and had to re-index.  Oh no, maybe this is why it disappeared.  It seems to be buggy.  I don&#8217;t know what I will do without it.</p>
<p>Since this program was missing, I though I would check around and see if anything else was missing.  Oh boy, was I in for a shock.  I am very glad I took those screen shots.  I printed them out and started comparing new menus with old ones.  Here is what came of it.  Almost all the old configuration files were still present, which made setup a lot easier.</p>
<ul>
<li>Tracker &#8211; missing.  When reinstalled, it appeared to be buggy.</li>
<li>Gnome Do &#8211; missing.  Reinstalled.  Old configuration files still intact.</li>
<li>Firestarter the firewall would not activate.  Reinstalled and it started up ok.</li>
<li>Dropbox would not start up.  I had to go to their web site and download and install a new version.</li>
<li>Brasero disc burner.  This was my favorite disc burner.  It was missing.  Reinstalled.</li>
<li>VLC Media Player &#8211; missing, reinstalled.</li>
<li>Gdesklets &#8211; missing, reinstalled</li>
<li>BitPim &#8211; missing.  Reinstalled.  This program downloads and uploads pictures and info from our cell phone.  It was a real pain to get it going originally.  I have not been able to get it running yet.</li>
<li>Childsplay &#8211; missing.  Reinstalled.  This is an educational children&#8217;s program.</li>
<li>OpenOffice Database &#8211; missing. I selected the entire suite to be reinstalled.  It found the pieces that were missing and only installed them.</li>
<li>PyCrust &#8211; missing. Reinstalled.  This is a Python programming language front end GUI</li>
<li>DeVeDe &#8211; missing. Reinstalled.  This is a DVD menu creator which I really like.</li>
<li>Kdenlive &#8211; missing.  This is a video editing program.  I have been using Kino and Open Movie Editor, so I did not reinstall this one.</li>
<li>XBMC &#8211; media player &#8211; missing.  I didn&#8217;t use this much either so I didn&#8217;t reinstall it.</li>
<li>todisc GUI &#8211; missing. Reinstalled.  This is another DVD menu creator.</li>
<li>My Sandisk Sansa MP3 player would not work.  This took hours of research to figure out. When I plugged it in, it did not come up in &#8220;mass storage&#8221; mode that it should have.  It also spit out an error message and apparently thought it was a camera.  After pulling the last two hairs out of my head, I found a solution and deleted a file somewhere on the system and it corrected the problem.  I&#8217;m sure that file was there for something though!</li>
</ul>
<p>SO, so far I have been able to get everything back working except Tracker, and BitPim.  What a very large head ache.</p>
<p>I love using Ubuntu, but with this experience, I can tell you it is definitely not ready for the masses.  How would mom or dad ever deal with something like this?  Also, many &#8220;Gurus&#8221; will tell you that you should always do a fresh install when there is a distribution upgrade.  How ridiculous is that?  I finally got my computers networked, sharing printers, and files.  I&#8217;ve configured it to death to how I want it.  How is the normal Joe ever supposed to wipe all of that out and start over?  I can&#8217;t remember what I did yesterday, it would take months to get everything back to normal.</p>
<p>As I said before, my co-worker&#8217;s upgrade turned out fine.  It just took a long time.  But&#8212; not as long as mine did.</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/software/my-experience-installing-ubuntu-904-jaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create USB Boot Thumb Drive With Ubuntu Live CD &#8211; Revisited</title>
		<link>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd-revisited/</link>
		<comments>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd-revisited/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 04:53:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bootable thumb drive]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[live CD]]></category>
		<category><![CDATA[Missing Operating System]]></category>
		<category><![CDATA[Ubuntu Living]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=320</guid>
		<description><![CDATA[I used the method, previously described, to make a bootable USB Ubuntu thumb drive for a co-worker. The process failed for his particular thumb drive, saying &#8220;Missing Operating System&#8221; when he tried to boot with the USB thumb drive.  After some research on the subject, it seems that a lot of thumb drives have this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ubuntuliving.blogspot.com/"><img class="alignleft" style="margin: 10px;" title="Ubuntu Living Blog" src="http://photos1.blogger.com/x/blogger2/7632/61748134142563/380/z/219944/gse_multipart23914.png" alt="" width="332" height="104" /></a><strong>I used the method, <a title="Creat USB Boot Thumb Drive With Ubuntu Live CD" href="http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd/" target="_blank">previously described</a>, to make a bootable USB Ubuntu thumb drive for a co-worker.</strong> The process failed for his particular thumb drive, saying &#8220;Missing Operating System&#8221; when he tried to boot with the USB thumb drive.  After some research on the subject, it seems that a lot of thumb drives have this problem with Ubuntu.  I found the solution at <a title="Step by step instructions to fix the USB boot drive problem on Ubuntu" href="http://ubuntuliving.blogspot.com/2008/11/missing-operating-system-step-by-step.html" target="_blank">http://ubuntuliving.blogspot.com/2008/11/missing-operating-system-step-by-step.html</a> .  Dominique&#8217;s step by step &#8220;How To&#8221; worked perfectly for me.  If you have problems with your Ubuntu USB boot thumb drive, give this &#8220;How To&#8221; a try and you might be pleasantly surprised.</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create USB Boot Thumb Drive With Ubuntu Live CD</title>
		<link>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd/</link>
		<comments>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 02:47:19 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Computers - Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bootable thumb drive]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[live CD]]></category>

		<guid isPermaLink="false">http://radio.mcdougallshome.net/?p=307</guid>
		<description><![CDATA[The computers in my Radio Shack and home run on Ubuntu Linux. A great way to share this good experience with others is through the Ubuntu Live CD.  The downside of the Live CD, however, is that no changes are saved.  To get a more lifelike experience in the Ubuntu demo, a bootable Ubuntu system [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in;"><strong>The computers in my Radio Shack and home run on Ubuntu Linux.</strong> A great way to share this good experience with others is through the Ubuntu Live CD.  The downside of the Live CD, however, is that no changes are saved.  To get a more lifelike experience in the Ubuntu demo, a bootable Ubuntu system can be loaded onto a USB thumb drive.  With this method, any changes will be kept on the thumb drive.</p>
<p style="margin-bottom: 0in;">With the USB bootable thumb drive, it also means that you can carry your operating system with you with all the files you like to use.  There certainly is a performance issue compared with a regular hard drive instalation, but having your e-mail, internet, audio/visual programs, ham radio programs, etc. with you all the time, available to use on any computer that can boot by USB, is an awesome thing.</p>
<p style="margin-bottom: 0in;"><strong>Here are some detailed instructions to make a bootable USB thumb drive from the Ubuntu 8.10 live CD.</strong></p>
<p style="margin-bottom: 0in;">Download PDF of this page.<strong><br />
</strong></p>
<p style="margin-bottom: 0in;"><strong><a href="http://radio.McDougallsHome.net/wp-content/uploads/files/usb_boot_drive.pdf" target="_blank"><img class="alignnone size-full wp-image-156" title="download" src="http://radio.mcdougallshome.net/wp-content/uploads/2008/10/download.png" alt="download" width="183" height="60" /></a><br />
</strong></p>
<p style="margin-bottom: 0in;"><a title="Get Adobe Reader" href="http://get.adobe.com/reader/" target="_blank"><img class="alignnone size-full wp-image-154" title="get_adobe_reader" src="http://radio.mcdougallshome.net/wp-content/uploads/2008/10/get_adobe_reader.gif" alt="get_adobe_reader" width="112" height="33" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">Insert Live Ubuntu CD and allow it 	to boot up completely</p>
</li>
<li>
<p style="margin-bottom: 0in;">Insert Thumb Drive into a USB port 	and wait for system to recognize it</p>
</li>
<li>
<p style="margin-bottom: 0in;">Click “System” on the TOP menu 	of the Desktop</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb01.png"><img class="alignnone size-full wp-image-308" title="Click &quot;System&quot;" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb01.png" alt="Click &quot;System&quot;" width="342" height="240" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">Select  “Administration” under 	the “System” menu.</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb02.png"><img class="alignnone size-full wp-image-309" title="Administration" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb02.png" alt="Administration" width="492" height="305" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">Click “Create a USB startup 	disk” under “Administration”</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb03.png"><img class="alignnone size-full wp-image-310" title="Click &quot;Create a USB startup disk&quot;" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb03.png" alt="Click &quot;Create a USB startup disk&quot;" width="440" height="257" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">The “Make USB Startup Disk” 	program should start</p>
</li>
</ul>
<ul>
<li>
<p style="margin-bottom: 0in;">CD info for the Live CD should 	appear at the top</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb04.png"><img class="alignnone size-full wp-image-311" title="Make USB Startup Disk" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb04.png" alt="Make USB Startup Disk" width="429" height="547" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">USB information should appear in 	the middle.  If the USB thumb drive is not inserted, you can do it 	now and the information should appear.</p>
</li>
</ul>
<p style="margin-bottom: 0in;"><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb05.png"><img class="alignnone size-full wp-image-312" title="USB Information Field" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb05.png" alt="USB Information Field" width="429" height="547" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">Make sure “Store in reserve 	extra space” is selected.</p>
</li>
<li>
<p style="margin-bottom: 0in;">Move slider to the right to 	allocated additional memory on the thumb drive for the Ubuntu 	system. If you want a bit unused (eg. ½ GB) for other files, do not 	go all the way to the right. <strong>Note</strong> – This “unused” 	portion, or any files on the unused portion of the thumb drive WILL 	NOT be accessible when Ubuntu is booted from the thumb drive.</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb06.png"><img class="alignnone size-full wp-image-313" title="Storage Options" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb06.png" alt="Storage Options" width="443" height="561" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">Click “Make Startup Disk”</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb07.png"><img class="alignnone size-full wp-image-314" title="Do it!" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb07.png" alt="Do it!" width="443" height="254" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">The system will begin to copy the 	Ubuntu Operating system to the thumb drive.</p>
</li>
</ul>
<p><a href="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb08.png"><img class="alignnone size-full wp-image-315" title="Progress Bar" src="http://radio.mcdougallshome.net/wp-content/uploads/2009/01/usb08.png" alt="Progress Bar" width="565" height="281" /></a></p>
<ul>
<li>
<p style="margin-bottom: 0in;">It may take some time for the 	process to complete.  When it is done, close the program and unmount 	the USB thumb drive by right clicking on the disk icon on the 	Desktop, and click “Unmount Volume”</p>
</li>
<li>
<p style="margin-bottom: 0in;">This completes the installation of 	 Ubuntu onto the thumb drive.  Reboot the computer with the thumb 	drive in place and enjoy Ubuntu.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://radio.mcdougallshome.net/software/create-usb-boot-thumb-drive-with-ubuntu-live-cd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

