Categories
Open Source Solutions Web

Firefox: Spell Check Single Line Fields

Mozilla Firefox word mark. Guestimated clear s...
Image via Wikipedia

Firefox by default spell checks text fields, it has the built in ability to spell check single line fields(search bars ect) but that is disabled by default.

To activate the ability of firefox to spell check single line fields, do the following:

  • Bring up your about:config page. You can do this by typing “about:config” in your address bar and clicking on “I’ll be careful, I promise” button
  • In the “Filter” field type layout.spellcheckDefault.
  • As you can see, the integer value is 1. Double-click on it, then enter 2 as its new value.
  • Click OK.
Reblog this post [with Zemanta]
Categories
Open Source Solutions Web

Best DNS, Got Even Better…

A while back on this site we had mentioned about a DNS benchmarking tool called Namebench.   The Google Code project has been having some major updates since then and now lookes more jazzier and generates some lovely graphs after analysing your connection for you.

The tool can be downloaded here: http://code.google.com/p/namebench/

Screenshots:

Reblog this post [with Zemanta]
Categories
Solutions Ubuntu Web

Getting Multimedia Working on Ubuntu

Ubuntu wordmark official
Image via Wikipedia

If you are a newbie Ubuntu user then in all probability you have struggled to get the system setup to listen to your favorite music, watch your favorite movies and browse your favorite sites(video and flash).

Is there a quick simple way to fix these problems in one go? Yes there is 🙂

All you need to do is to install the Restricted Extras package for your distro and you are set to go.

For (K/X)Ubuntu 9.04 (Jaunty Jackalope) and 9.10 (Karmic Koala)

Based on your derivative of Ubuntu, install one of these packages:

(K/X)Ubuntu 9.04, 8.10, 8.04

  • Go to your system’s Application installer
  • Search for the package ubuntu-restricted-extras(Ubuntu), xubuntu-restricted-extras (Xubuntu) and kubuntu-restricted-extras (Kubuntu) and install it.

Or Alternatively open the Terminal, and execute the following command:

sudo apt-get install ubuntu-restricted-extras

Reblog this post [with Zemanta]
Categories
Open Source Solutions Ubuntu

Upgrading to the Latest Firefox – Ubuntu Hacks

The generic globe logo used when Firefox is co...
Image via Wikipedia

Heard a lot of wonderful reviews of the latest firefox? Want to try it out on your Ubuntu box?
Well unfortunately Ubuntu does not update its Firefox packages immediately after the release. To give a good test run for the latest and best you need to add the repository for the latest release of firefox. The steps are explained below:

Categories
Open Source Solutions Ubuntu

Recovering Deleted Data on Linux…

Imagine this situation -  “you are browsing through your photos on your camera or on your your thumb drive.  You decide to clean up the unwanted photos/data and start deleting files.  All of a sudden you realize you deleted your best photo or that important file. How do you get the data back?”

Firstly dont create any new files or copy any new data on the disk.  This will make sure that the data is recoverable (once the sectors where your file used to reside get overwritten its impossible to recover).

Now there are two simple solutions I found for recovery problems.  Both work best in different situations:

GDDRescue

ddrescue is a simple program that copy bit by bit information form one area of the hard disk to another.  It has loads of amazing features but the one that I like the most is that it ignores unreadable sectors and moves on.  This feature is very useful when recovering movies.  It also makes it easy to recover media files if you have the torrent from which you originally downloaded the file.

sudo apt-get install gddrescue

ddrescue -r 3 /media/cdrom/movie.avi /home/user/movie.avi

In the above command
-r 3 :- makes the program to retry to recover data from a bad sector 3 times and then move on.
/media/cdrom/movie.avi :- The input file
/home/user/movie.avi :- The recovered file

Foremost:

Foremost is a simple application that recovers data from a damaged disk. It goes one step better by sorting out the information for the common file types. The output of Foremost is a directory which has a series of subdirectories where files like jpg, avi, mpg, bmp ect are recovered and stored. This is a perfect application to recover specific data from a disk

To install Foremost use the following command:

sudo apt-get install foremost

To run foremost use the following command:

sudo foremost -i /dev/sdb1 -o /recovery/disk

In the above command
-i indicates the partition/file to be recovered from.
-o indicates the output directory where the recovered files will be stored.

Once the recovery is done you will need to change the ownership of the output directory so that you can read the files. Use the following command to do that:

sudo chown -R username /recovery/disk

Ps: There are more complex methods and applications to do data recovery on Linux. These two are the simplest I have used. Feel free to share your suggestions in the comments.