I’ve stumbled across the easiest guide to create Debian (*.deb) package right from C source code, and I thought that It would be nice to share it with you all:

Read: Easy way to create a Debian package and local package repository

Free and Open Source blogger with an attitude
I’ve stumbled across the easiest guide to create Debian (*.deb) package right from C source code, and I thought that It would be nice to share it with you all:

Read: Easy way to create a Debian package and local package repository
Good news, now we can put Ubuntu Server installations on the World Map!
How? Go to maps.ubuntu.com, and choose one of the options.

Then you can view the location of Ubuntu servers around the world, marked by the ubiquitous Ubuntu logo!

Note that this is an unofficial way to install GNOME 3 on Ubuntu 11.04 (Natty Narwhal), things might be broken, so proceed with caution.
Step 1: Add GNOME 3 PPA repository
sudo apt-add-repository ppa:gnome3-team/gnome3
Then update the apt-get repository database by running:
sudo apt-get update
Step 2: Install the Gnome 3 Desktop environment using this command
sudo apt-get install gnome-desktop3
Note that this might screw up your installation, you’ve been warned.
There are more things than we know that can be revealed by your JPEG EXIF metadata such as the type of camera you use, aperture settings, the type of focus, lens type and even the location of the picture taken that might compromise the privacy of the persons or locations depicted in the photograph.

One of the things that we can do to is to strip away the information from JPEG files before uploading them to the internet, by using exiftool or jhead.
Exiftool
Install libimage-exiftool-perl
sudo apt-get install libimage-exiftool-perl
and by running the command
exiftool -all= *.jpg
jhead
Install jhead package:
sudo apt-get install jhead
and by running the command
jhead -purejpg /path/to/*.jpg
Join the crowd in full anticipation of Natty Narwhal, get the countdown badge now!
Available in FOUR(4) different sizes from picomol.de site
One of the factor that makes your system easily crackable is the weak password. PAM cracklib forces users to choose stronger password by analyzing the password strength, length and entropy.
To enable pam_cracklib in Debian / Ubuntu operating system, you need to install libpam_cracklib:
sudo apt-get install libpam_cracklib
Then edit the “/etc/pam.d/common-password” file using your favorite editor. Then, add and uncomment the following line at the end of the file.
password required pam_cracklib.so retry=3 minlen=6 difok=3
difok determines the number of same characters that allowed to be present in the old and new passwords.