Friday, March 6, 2009

Install UsplashSmooth in Ubuntu

To install UsplashSmooth , issue the following command in the terminal(Applications -> Accessories -> Terminal) window:

Quote : wget http://ubuntu-art.org/CONTENT/content-files/93394-usplash-smooth-0.4.tar.gz
Quote : tar -xvzf 93394-usplash-smooth-0.4.tar.gz

The above commands would download and extract archive containing the UsplashSmooth package files ( deb files).

Finally to install i386 version of UsplashSmooth issue the following command :
Quote : sudo dpkg -i usplash-smooth_0.4_i386.deb

or if you are running 64bit Ubuntu on a AMD processor , issue the following command:
Quote : sudo dpkg -i usplash-smooth_0.4_amd64.deb

If above commands executed well , UsplashSmooth should be properly installed on your pc. Reboot your pc , the first time you reboot/restart your computer you will find Usplash progressbar to be terribly out of sync with the boot process. This is because UsplashSmooth records your bootup/shutdown time and uses this time to synchronize the animation of progress bar , so first time the progress bar is out of sync with the boot process.

Though Usplash is no where near perfect , one thing in particular I noticed was most of the times shutdown progress bar animation was out of sync with the shut down process(it moved slowly). Leaving these minor glitches aside UsplashSmooth is an interesting piece of addition to Ubuntu desktop , it's small addition like these that makes ubuntu experience complete and makes Ubuntu user friendly.

Install Firefox 3 Beta 3 in Ubuntu

The command does two things: it downloads Firefox to your home directory using wget, and extracts the Firefox folder there. Copy and paste the command (it’s one line) and run it in your terminal:
Quote : wget -P ~ ftp://ftp.mozilla.org/pub/firefox/releases/3.0b3/linux-i686/en-US/firefox-3.0b3.tar.bz2 && tar xjf ~/firefox-3.0b3.tar.bz2 -C ~

After Firefox 3 has finished downloading and extracting you can delete the firefox-3.0b3.tar.bz2 file in your home directory. If you have any problems using the command to install Firefox, leave a comment so I can help you out.

Before you run Firefox, you may want to back up your profile from Firefox 2. I haven’t had any problems sharing the profile besides a home button being added to my bookmarks toolbar. Just don’t let Firefox 3 update update your extensions when it starts to avoid incompatibilities. This command will back up the Firefox profiles folder to firefox_profile_backup in your home folder:
Quote : cp -r ~/.mozilla/firefox/ ~/firefox_profile_backup

Restore from the backup by replacing the firefox folder from the hidden .mozilla folder with the backup.

Ready to run Firefox 3? Close any Firefox 2 windows first. Double-click the firefox file inside the firefox folder in your home folder, or run this command:
Quote : ~/firefox/firefox

Enjoy ubuntu... ;)

Thursday, March 5, 2009

Install GraphViz on Ubuntu

Add a line to your /etc/apt/sources.list like this:

Quote : gedit /etc/apt/source.list
Quote : deb http://fr.archive.ubuntu.com/ubuntu gutsy main
Quote : apt-get update
Quote : apt-get install graphviz

Triple Boot XP, Ubuntu, Fedora

As usually what you need to do is install XP first but be sure to let enough space for the linux OS.
after you have finished, install some of the two linux, lets say Ubuntu, if you install from the live CD, be sure to manually edith the disk partition and left room for Fedora.
I recommend something like this
/dev/sda1 XP NTFS
/dev/sda2 Extended partition
/dev/sda3 boot ext3 -> 100 Mbytes (for Ubuntu)
/dev/sda4 Swap -> 1 Gbyte (for Ubuntu)
/dev/sda5 / ext3 -> any size you may want for Ubuntu

this edition of CD will not let you choose where to install the Grub so, it will be installed directly on your MBR, once you finished you can confirm that you can boot from XP or Ubuntu.

Now start installing Fedora5
when it asks you where to install Grub choose the option of the first record of Fedora Partition,

and use manual partition for doing this.

/dev/sda6 ext3 /boot -> 100 Mbytes (for fedora)
/dev/sda7 SWAP -> 1 Gbyte (for fedora)
/dev/sda8 ext3 / -> Any size you may want for Fedora.

After finishing installing this boot your system with ubuntu Linux.

go to the /boot/grub/ directory and edith the menu.lst file and make this addition
title Fedora
root (hd0,5) # Remeber that it count from 0 so (hd0,5) means /dev/sda6 (or /dev/hda6 if that is your case)
chainloader +1

with this change the next time you boot your system you should be able to choose

XP
The ubuntu Kernel you have or all the options of ubuntu you may have.
and
Fedora option
which will take you directly to the Grub menu of Fedora with all the kernels available there!

Enjoy ubuntu... ;)

Tuesday, March 3, 2009

Install ImageMagick from Unix Source

ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download ImageMagick.tar.gz from ftp.imagemagick.org or a mirrors and verify its message digest.

Unpack the distribution with this command:
Quote : $root> tar xvfz ImageMagick.tar.gz

Next configure and compile ImageMagick:
Qoute : $root> cd ImageMagick-6.4.9
Quote : $root> ./configure
Quote : $root> make

If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type
Quote : $root> make install

Finally, verify the ImageMagick install worked properly, type
Quote : $root> /usr/local/bin/convert logo: logo.gif

For a more comprehensive test, run the ImageMagick validation suite:
Quote : $root> make check

Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to convert, compose, or edit your images or perhaps you'll want to use one of the Application Program Interfaces for C, C++, Perl, and others.

Enjoy ubuntu... ;)

Tq http://www.imagemagick.org/

kunkun-laptop .... ;)