Tango Icons Theme on Nokia Symbian Phone

I know, I know. Tango icons has been done to the death on websites, documents, presentations and as Desktop icons. This is due to the popularity of Tango icons itself. and thanks to the liberal Creative Commons license, everybody is free to use the icons (without paying royalty) as long as they give credits (attribution) to the Tango icon project.

Checkout this cool Symbian Series 60 theme. It almost made your phone looks like its running a Linux based operating system, does it?

s60-tango-app-grid1.png

This theme can be downloaded from Tango Symbian60 Theme website and is available for Noka Symbian Series 60 2nd and 3rd Edition.

Clonezilla – Open Source Partition & Disk Cloning Solution

Clonezilla is a free and open source harddisk cloning tool with partition cloning capability. Clonezilla sets itself aparts from similar similar disk cloning solutions like Symantec Ghost and PartImage as it is able to massively clone a lot of computers simultaneously with the help of a DRBL server.

clonezilla.png

Clonezilla is also a flexible tool as it can be used to clone computer individually without the need of of a DRBL server. Clonezilla is able to save space by cloning only used blocks on the disk on computers with supported filesystem (ext2, ext3, reiserfs, xfs, jfs,vfat,ntfs). Cloning unsupported filesystem is also made possible with sector-by-sector copy functionality offered by this remarkable tool.

Get CloneZilla (Live CD) now for your hard disk cloning solutions

Should Ubuntu prevent “sudo rm -rf /” command ?

There have been talks over the ubuntuforums, regarding a user posts “sudo rm -rf /” command on “Absolute Beginner Talk” board, which results in deletion of the whole root directory of a Linux operating system (Ubuntu included).

Was the user out of his line when he’s posted such command on a beginners forum? Absolutely.

Exercise Caution When Running sudo
Users should exercise caution when running command with root privilege (sudo) . I pity to those who unknowingly execute the command and completely destroy their operating system. Its a truly lame attempt to humor oneself at the expense of others losing their precious data.

It is not a bug in coreutils, it is not a bug at all
But the lamest part is, somebody took the time to file a bug report regarding “sudo rm -rf /” on Launchpad.

There’s nothing wrong with that command, it did what it supposed to do, and that is the behavior expected from a Unix/Linux based system, there’s nothing wrong with that command at all.

Besides, if somebody compromised your system and got into your root accout, you are screwed anyway as there are a lot of other command which has the same (if not worse) devastating effect as “sudo rm -rf”, a fact that has been acknowledge on the same bug report

What do you think ?
I don’t know about you, but I felt more comfortable educating newbie users to be more careful when running command with root privilege than supporting an act which seems to ‘cripple’ the operating system itself. Trust me, this is not going to help newbie users.

p/s: I’m in complete agreement with this guy, this is not a bug, stop pampering newbies or else you’d ruin each and every of them!

Ubuntu Alternative : Get Linux Mint

Linux Mint – a yet another Linux distro based on Ubuntu has made a fourth release last month, Daryna.

Originally started as no more than Ubuntu-distro preinstalled with proprietary multimedia codecs, Linux Mint now focussed on providing user-friendly Linux distribution complete with customizable desktop which achieved through its unique configuration tools.

linuxmint.png

The latest release Daryna, is based on Ubuntu Gutsy Gibbon, and compatible with Gutsy repositories, meaning that you can receive (security) updates release from Ubuntu team for your installation.

Another Linux Mint area of focus is making everything works out from the box including Wifi and various multimedia file format which uses proprietary codecs.

Currently Linux Mint Daryna is available on 3 different download version :- Main, Light and KDE Community Edition. Linux Mint is only currently available for 32bit PC platform only.

Ubuntu Linux : How to combine multiple PDF file

Here’s how to combine multiple PDF file on Ubuntu.

First install ghostscript and pdftk from Ubuntu repository :

apt-get install gs pdftk

Then, using ghostscript, combile all the pdf files you desired into one file, using this command

[code]
s -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combined_file.pdf -dBATCH file1.pdf file2.pdf file3.pdf
[/code]

The command will produced the combined pdf output on “combine_file.pdf”