Sep 21, 2009

Manage your passwords with KeePassX

KeePassX is an application for people with extremly high demands on secure personal data management. It has a light interface, is cross platform and published under the terms of the GNU General Public License. The complete database is always encrypted either with AES (alias Rijndael) or Twofish encryption algorithm using a 256 bit key. More about this password tool on http://www.keepassx.org/.

Sep 20, 2009

How to mount and unmount iso file using nautilus scripts

First thing you need to do is download theese two scripts from debianadmin.com:
unmount.sh

mount.sh


Then open up the console and make theese scripts executable:
$ chmod +x mount.sh
$ chmod +x unmount.sh

Now copy theese scipts to ~/.gnome2/nautilus-scripts/ folder:
$ sudo mv mount.sh /home/baban/.gnome2/nautilus-scripts/
[sudo] password for baban:
$ sudo mv unmount.sh /home/baban/.gnome2/nautilus-scripts/

To mount the .iso file right click on the .iso file --> Scripts --> mount.sh
To unmount the .iso file right click on the .iso file --> Scripts --> unmount.sh

You can rename theese scripts to whatever you like to make it more confortable for you.

Sep 17, 2009

Netspeed applet


Netspeed is just a little GNOME-applet that shows how much traffic occurs on a specified network device. You can configure and select more network cards if you have more than one. You can install it from command line: apt-get install netspeed
More info available on project homepage http://projects.gnome.org/netspeed/

Sep 16, 2009

How to merge two pdf files in command line

To do this, we will use ghostscript (in1.pdf and in2.pdf are files to be merged):

gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=out.pdf in1.pdf in2.pdf

Sep 12, 2009

Tucan manager



Tucan Manager is a free and open source and multiplatform software designed for automatic management of downloads and uploads at hosting sites like rapidshare or megaupload. It is released under GPLv2 license. What I really like on tucan is, that it checks all the links first before downloading. If you don't have premium account and you have to wait some time between downloads, tucan will check the time and start downloading files immediately after this period of time expired. For more info check the homepage http://tucaneando.com/index-en.html Deb install file is available from here: http://www.getdeb.net/app/Tucan

Sep 11, 2009

Sync and Share your files with ubuntu one

With this fancy thing you can: Sync your files, share your work with others or work remotely with your Ubuntu computers. Ubuntu one is only available for Ubuntu and no other OS. You need to register first in order to install the ubuntu one client. If everything goes ok, you will be able to launch ubuntu one via Applications » Internet » Ubuntu One menu. There are 2 options available - 2GB Free space (no fee) and 10GB Free space (charged $10 per month). If interested, check it out on https://one.ubuntu.com/.

Check ubuntu release version from command line

This info is stored in /etc/lsb-release file:

baban@ubuntu :~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=9.04
DISTRIB_CODENAME=jaunty
DISTRIB_DESCRIPTION="Ubuntu 9.04"

You can also use lsb_release command with -a argument, which shows all info:

baban@ubuntu :~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 9.04
Release: 9.04
Codename: jaunty
baban@ubuntu :~$