Cleaning up your Ubuntu Filesystem using FSlint

FSlint is a utility to find and clean various forms of unwanted/junk/lint files on your Ubuntu filesystem. For example, one form of unwanted files it finds is duplicate files, bad names, temporary files, files with bad symlinks, empty directory, and others.

To install:
sudo apt-get install fslint

Using Fslint:
If you want to open goto Applications—>System Tools—>FSlint

Screenshot:

Ubuntu Dust Theme

I have just installed a new sexy theme on my Ubuntu Hardy, replacing the default brown and orange theme that hated by a lot of people.

The Dust Theme.
https://wiki.ubuntu.com/Artwork/Incoming/Intrepid/DustTheme

Dust is a concept for a new, refreshing look for Ubuntu. The idea was to take the defining aesthetic elements of Ubuntu and remix it into something clean, modern, functional, and unique.

The theme requires the new Murrine-SVN package (included in the site). Otherwise, it won’t work where the gnome panel and menu bar displays an ugly gray color. The site includes all the instructions needed to install the theme, and also includes a matching Firefox theme and wallpaper.

Below are the results on my box:

What theme do you guys use on your setup? Feel free to share what your desktop looks like, so we can exchange ideas then. 🙂

Getting Dell XPS Trackpad to work on Ubuntu Hardy

I had trouble getting my Dell XPS M1530 track pad/touch pad to work when I updated the BIOS from A07 to A09. However, it is fairly an easy fix.

Edit your ‘/boot/grub/menu.lst’ file with:
sudo gedit /boot/grub/menu.lst

Then add:
i8042.nomux=1

at the end of the ‘kernel’ line. It may look like below:

title		Ubuntu 8.04, kernel 2.6.22-14-generic
root		(hd0,0)
kernel		/boot/vmlinuz-2.6.22-14-generic root=UUID=446ea0c-57b1-4112-939c-
3f1d74be9f5f ro quiet splash i8042.nomux=1
initrd		/boot/initrd.img-2.6.22-14-generic quiet

Save the menu.lst file and reboot. This should get your track pad/touch pad working.
Reference from Ubuntu Forums.

Accessing Remote Drive in Linux via SSHFS

There may be a case where you may want to access a certain directory or drive on a remote machine, and mount it to your local PC. For example, I have a headless CentOS box running Apache where all of my web application codes are sitting. Editing those web application codes are a nightmare when there is no Integrated Development Environment (IDE). I can install IDE (like Eclipse) on my Ubuntu box, but I need a way to map the remote /www folder to my local Ubuntu folder. This is very easy in Linux using sshfs.

http://en.wikipedia.org/wiki/SSHFS
https://help.ubuntu.com/community/SSHFS

Install sshfs:
$sudo apt-get install sshfs

Create your local directory and change the permission:
$sudo mkdir /media/directoryname
$sudo chown your-username /media/directoryname

Where “directoryname” is the name of the directory on your local computer where you want to access the files from the remote computer. Let say I want the files on the server to be available at /media/directoryname.

Add yourself to the group “fuse”.
$sudo adduser your-username fuse

To mount the remote directory to your local:
$sshfs your-username@myserver:/www/html ~/directoryname

To unmount:
$fusermount -u ~/directoryname

Drop it, Dropbox!

It’s been awhile since I’m searching for a perfect online backup application. I’ve tried many, but none have really captured my attention. Not until I’ve tried Dropbox.

Dropbox is a free, multi-platform, online backup and synchronization application. My first attraction to Dropbox is because the client tools supports Linux. It also suports Mac OSX, and oh yeah, Windows too. Installation on my Ubuntu Hardy laptop is a breeze. Just download the debian package, and the rest of the installation is pretty straight forward. No extra tricky setup, configuration or anything. Upon the completion of the installation, just point your Dropbox location to a folder path on your machine, and you ready to go.

  An icon installed on the taskbar for easy access.

Online Backup
Dropbox currently provides 2GB of storage, which is sufficient for me at this time to backup all of my important files. Backing up files is very easy. Just open your Dropbox folder, and copy-paste the file(s) that you wish to backup to that folder.

Dropbox location on your folder.

Seamless sync
I have a couple of computers at home, which is running Ubuntu 8.04, and also a Windows 2003 machine running at my office. Installing Dropbox client on all of these boxes enabling me to sync all my files between those boxes, seamless, and without much effort at all. Just make sure Dropbox client is running, and those files will be sync automatically.

Dropbox website
Just in case you want to grab or upload your files, but Dropbox client are not installed, you can always go to Dropbox site.

Dropbox web interface

Another cool feature is, the files you stored has “Revisions”. Meaning, you don’t have to worry if any of our files get accidentally deleted or overwritten, since you can always retrieve deleted or the previous version of your files.

Dropbox revision feature

Feel free to watch Dropbox screencast for more info on their features and functions. Have you tried Dropbox or any equivalent online backup application? Feel free to share your experiences.