Mozilla Sunbird is now installable by using Synaptic or apt-get. This is the recommended installation method for most users.
Here's an easy, straight-forward install of Mozilla Sunbird.
Open a terminal
We're going to install it to the /opt directory, so:
Then download Sunbird
Code:
sudo wget ftp://ftp.mozilla.org/pub/mozilla.org/calendar/sunbird/releases/0.7rc3/linux-i686/en-US/sunbird-0.7rc3.en-US.linux-i686.tar.gz
Now extract Sunbird to a folder named sunbird in /opt
Code:
sudo tar -xvf sunbird-0.7rc3.en-US.linux-i686.tar.gz
This gives ownership of the sunbird directory to root.
Code:
sudo chown -R root:root /opt/sunbird/
Now make a script to redirect to sunbird folder in /opt
Code:
sudo gedit /usr/bin/sunbird.sh
In the document that opens, copy this into it:
Code:
cd /opt/sunbird/
./sunbird
Save and close the document.
Now make the script that was just made executable
Code:
sudo chmod +x /usr/bin/sunbird.sh
Now create a entry in the appilcations menu
Code:
sudo gedit /usr/share/applications/sunbird.desktop
In the document that opens, enter:
Code:
[Desktop Entry]
Name=Sunbird
Comment=Calendar Application
Exec=sunbird.sh
Icon=/opt/sunbird/chrome/icons/default/default.xpm
Terminal=false
Type=Application
Categories=Application;Office;
Save the document and enjoy.
Howto courtesy of knowledge76.com
Bookmarks