I wanted to use Mozilla Sunbird for better integration with Google Calendar. It's not presently included in an RPM package so I adapted instructions I found for installing Firebird (see [url=http://macles.blogspot.com/2008/11/installing-thunderbird-on-aspire-one.html]here[/url]) My instructions are as follows: Browse to [URL]http://www.mozilla.org/projects/calendar/sunbird/[/URL] Select the appropriate link to download the Linux x86 English version Open a terminal session (e.g. by pressing alt+F2 and typing 'xterm') Navigate to the downloaded file e.g. cd ~/Downloads Gunzip it e.g. [code]$gunzip sunbird-0.9.en-US.linux-i686.tar.gz[/code] Create target directory for install e.g. [code]$sudo mkdir /opt/sunbird[/code] Change to the target directory for install e.g. [code]$cd /opt/sunbird[/code] Extract contents of the tar file to /opt/sunbird e.g. [code]$sudo tar xvf ~/Downloads/sunbird-0.9.en-US.linux-i686.tar [/code] Link to bin directory e.g. [code]$sudo ln -fs /opt/sunbird/sunbird /usr/bin/sb[/code] The following steps are to add a desktop icon: [code]$sudo cp /usr/share/applications/acercalendar.desktop /usr/share/applications/sb.desktop $sudo sed -e'/Exec/cExec=sb' -e'/Icon/cIcon=sb' -i /usr/share/applications/sb.desktop $dca add 11 "file='/usr/share/applications/sb.desktop'"[/code] Now finally to add the icon file: Browse to [url="http://www.iconspedia.com/icon/mozilla-sunbird-2021.html"]http://www.iconspedia.com/icon/mozilla- ... -2021.html[/url] Download the 256x256px PNG icon file Copy and resize the icon file e.g. [code]$sudo convert -resize 152x152 ~/Downloads/Sunbird_256.png /usr/share/pixmaps/sb.png[/code] Job done. I did a restart after making these changes, but I'm not entirely sure it was necessary. Hope you find this useful. I would recommend backing up your system as you see fit prior to making these changes. If you are more Linux orientated then I am, you might very well be able to improve upon this. Thanks Ed