I decided to reinstall Ubuntu after using Kubuntu for some time. Here are some apps which I installed, I hope you will find it useful:
1. Opera: My current favorite browser. It isn't opensource, but works well.
Download Opera
2. Hardware Drivers: to enjoy the coolest desktop effects, download these.
3. Codecs: Try to play any media file (MP3) and Ubuntu will install them automatically for you.
4. Compiz Setting Manager: You can enable many cool effects by using this simple settings manager, one example is the sexy desktop cube.
Open a terminal windows and type:
sudo aptitude install compizconfig-settings-manager
5. Exaile: The best music player for Gnome (modelled after Amarok). It is currently in alpha stage.
Download Exaile
6. Skype: Make free calls from Ubuntu.
Download Skype
7. Adobe AIR: You can use cool Adobe AIR apps by installing this.
Install Adobe AIR
8. Flash: The most singularly important browser plugin. I use the Adobe version, the other two (Gnash and Swfdec just don't make the cut).
Download Flash Player
9. Java: To run Java apps.
Install Java
10. TweetDeck: The best twitter client out there, the real reason why I liked twitter for the first time.
Download Tweet Deck
11. VLC: Newly Installed UbuntuThe best video player (though it still doesn't have audio for 3GP files)
Use Synaptic to install
12. Beagle seach: A desktop search engine, far better than Tracker (which comes by default with Ubuntu).
Use Synaptic to install
13. Themes & Wallpapers: The default theme is getting better with every new release of Ubuntu, but I'd still use something else.
14. Ubuntu Tweak: One stop solution to modify and tweak Ubuntu.
Download Ubuntu Tweak
15. Wine: The only way to run Windows programs like MS Office in Ubuntu
Use Synaptic to install
Monday, July 27, 2009
Monday, July 20, 2009
Time For A Geek!
Get a Website Now!
Having a website gives you the ability to sell without being present!
Custom Website Design — Easily, Quickly & Affordably
As a professional website designer with years of experience, and a solid business background and reputation, I am able to offer you all that you need:
- Distinctive custom web design, created just for you, using content of your choice
- A website that is logically organized and easy for viewers to navigate
- A website that is appealing, informative, comprehensive and friendly
- A website you will be proud of . . . and that will function well for your needs!
- One last thing... NO SURPRISES!!!
Sunday, July 19, 2009
DVD ripping with Thoggen
Thoggen is a DVD ripping application built in GTK, featuring a simple and easy-to-use interface and allowing the creation of Ogg Theora video files. That's the nice thing about Thoggen: it creates videos using a completely free video codec.
Thoggen can work with DVDs, but it also supports opening DVD ISO images or reading a DVD directory which contains the VIDEO_TS folder. Notice that for encrypted DVDs you may need libdvdcss2. To install this library on Debian you can use the debian-multimedia.org repositories, and on Ubuntu you can use the repositories provided by Medibuntu.
Thoggen is designed to be easy and straight-forward to use. It attempts to hide the complexity many other transcoding tools expose and tries to offer sensible defaults that work okay for most people most of the time.
Features:
* Easy to use, with a nice graphical user interface (GUI)
* Supports title preview, picture cropping, and picture resizing.
* Language Selection for audio track (no subtitle support yet though)
* Encodes into Ogg/Theora video
* Can encode from local directory with video DVD files
* Based on the GStreamer multimedia framework, which makes it fairly
easy to add additional encoding formats/codecs in future.

The latest release of Thoggen is 0.7.1 and you can install it using:
- in Ubuntu, with your user password:
sudo apt-get install thoggen
- in Debian, with root password:
su
apt-get install thoggen
Thoggen will allow you to select the size of the desired output file or its video bitrate, you can edit the Title and Comment tags and will also allow to resize the video. Very simple but efficient. It doesn't support subtitles though, so if you need a more powerful ripper, use dvd::rip (or K9Copy in KDE).

+
Thoggen can work with DVDs, but it also supports opening DVD ISO images or reading a DVD directory which contains the VIDEO_TS folder. Notice that for encrypted DVDs you may need libdvdcss2. To install this library on Debian you can use the debian-multimedia.org repositories, and on Ubuntu you can use the repositories provided by Medibuntu.
Thoggen is designed to be easy and straight-forward to use. It attempts to hide the complexity many other transcoding tools expose and tries to offer sensible defaults that work okay for most people most of the time.
Features:
* Easy to use, with a nice graphical user interface (GUI)
* Supports title preview, picture cropping, and picture resizing.
* Language Selection for audio track (no subtitle support yet though)
* Encodes into Ogg/Theora video
* Can encode from local directory with video DVD files
* Based on the GStreamer multimedia framework, which makes it fairly
easy to add additional encoding formats/codecs in future.
Select which titles you want to rip (each title will be placed in a separate output file)

The latest release of Thoggen is 0.7.1 and you can install it using:
- in Ubuntu, with your user password:
sudo apt-get install thoggen
- in Debian, with root password:
su
apt-get install thoggen
Thoggen will allow you to select the size of the desired output file or its video bitrate, you can edit the Title and Comment tags and will also allow to resize the video. Very simple but efficient. It doesn't support subtitles though, so if you need a more powerful ripper, use dvd::rip (or K9Copy in KDE).
Available settings for the output file

Ripping can take a while
+Tuesday, July 14, 2009
6 Bash Productivity Tips
1. Use !!
Typing !! followed by Enter will bring back and execute the last command (same as Ctrl+P followed by Enter).
2. Use Emacs-like shortcuts
Emacs-like shortcuts make use of the Ctrl and Alt keys, and the big advantage of navigating and manipulating text in a Bash prompt is that you won't have to move your fingers away from the typing position (to access the arrow keys, or the Home, Page Up and Page Down keys). Notice that most of those work well inside manual pages too, or when using the Nano editor, or the less and more pagers.
Ctrl+D - or EOF (end-of-file) will quit the current Bash session
Ctrl+P - bring back the last command executed
Ctrl+N - bring the next command executed
Ctrl+U - delete all from the cursor to the left
Ctrl+K - delete all from the cursor to the right
Ctrl+B - go back one character
Ctrl+F - go forward one character
Alt+B - go back one word
Alt+F - go forward one word
3. Make manual pages coloured
I think this tip is a productivity tip because once a manual page is shown coloured, it is easier, clearer to read. Just add the following inside the ~/.bashrc file, where ~ is your home directory (notice that each line starts with export):
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # end mode
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box export LESS_TERMCAP_ue=$'\E[0m' # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
Then, type:
source ~/.bashrc
And try any manual page (e.g. man bash). Here's how a coloured man page looks like using the presets above:

4. Use your own scripts
If you have basic knowledge of Bash scripting, you can create scripts and put them in a directory included in your $PATH. You can use something like ~/bin or ~/usr/bin, where ~ is your home directory.
5. Copy/paste using Shift+Insert
Although this one is not Bash-specific, it's very useful when you need to quickly copy/paste some text in your terminal. The same can be accomplished using the middle-click mouse button.
6. Use aliases
One of the powerful features of Bash is that it makes use of aliases. Those are usually short commands which perform some associated, longer command or commands. For example, to update and upgrade your Ubuntu installation you would type sudo apt-get update && sudo apt-get upgrade, and to create an alias for it you would only have to add something like the following inside the ~/.bashrc file:
alias update='sudo apt-get update && sudo apt-get upgrade'
Now, each time you type update, the command inside the single quotes will be executed.
Typing !! followed by Enter will bring back and execute the last command (same as Ctrl+P followed by Enter).
2. Use Emacs-like shortcuts
Emacs-like shortcuts make use of the Ctrl and Alt keys, and the big advantage of navigating and manipulating text in a Bash prompt is that you won't have to move your fingers away from the typing position (to access the arrow keys, or the Home, Page Up and Page Down keys). Notice that most of those work well inside manual pages too, or when using the Nano editor, or the less and more pagers.
Ctrl+D - or EOF (end-of-file) will quit the current Bash session
Ctrl+P - bring back the last command executed
Ctrl+N - bring the next command executed
Ctrl+U - delete all from the cursor to the left
Ctrl+K - delete all from the cursor to the right
Ctrl+B - go back one character
Ctrl+F - go forward one character
Alt+B - go back one word
Alt+F - go forward one word
3. Make manual pages coloured
I think this tip is a productivity tip because once a manual page is shown coloured, it is easier, clearer to read. Just add the following inside the ~/.bashrc file, where ~ is your home directory (notice that each line starts with export):
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # end mode
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box export LESS_TERMCAP_ue=$'\E[0m' # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
Then, type:
source ~/.bashrc
And try any manual page (e.g. man bash). Here's how a coloured man page looks like using the presets above:
Coloured man page

4. Use your own scripts
If you have basic knowledge of Bash scripting, you can create scripts and put them in a directory included in your $PATH. You can use something like ~/bin or ~/usr/bin, where ~ is your home directory.
5. Copy/paste using Shift+Insert
Although this one is not Bash-specific, it's very useful when you need to quickly copy/paste some text in your terminal. The same can be accomplished using the middle-click mouse button.
6. Use aliases
One of the powerful features of Bash is that it makes use of aliases. Those are usually short commands which perform some associated, longer command or commands. For example, to update and upgrade your Ubuntu installation you would type sudo apt-get update && sudo apt-get upgrade, and to create an alias for it you would only have to add something like the following inside the ~/.bashrc file:
alias update='sudo apt-get update && sudo apt-get upgrade'
Now, each time you type update, the command inside the single quotes will be executed.
Sunday, July 12, 2009
10 APT Commands to Make Life Simpler
Here are 10 simple tricks for APT, the Advanced Packaging Tool used on Debian and Debian-based distributions like Ubuntu.
1. View all the packages installed on a system
The easiest way to do it is:
dpkg --get-selections
It does not require to be root, and will display all the packages installed via APT. For example, the first lines may look something like:
$ dpkg --get-selections | head
acetoneiso2 install
acidrip install
acpi-support-base install
acpid install
adduser install
akregator install
alien install
alsa-base install
alsa-oss install
alsa-utils install
You can also put the entire list in a text file by redirecting the output, like this:
dpkg --get-selections > installed_packages.txt
Then read this file with a text editor or using less installed_packages.txt.
2. List files which get installed by a package
-L is a handy parameter to dpkg which will show you what files a package will install.
dpkg -L package_name
For example:
dpkg -L amarok
Will show all the files which are going to be installed by package amarok. You don't have to be root to run it.
3. Upgrade your system using a one-liner
Type as root:
apt-get update && apt-get dist-upgrade
This command will update your list of packages, and if its return status is successful, it will proceed to the next command, apt-get dist-upgrade, which will upgrade all of your packages and will install new dependencies if needed. Use dist-upgrade when you want all of your packages to be installed, and no package left as being kept back.
4. Install the dependencies of an application
Sometimes you need to compile from source a newer version of an application which is already included in the repositories. For example, to install the development libraries for BasKet, you would run as root:
apt-get build-dep basket
And then you can proceed to compile your application. Note that sometimes newer versions of applications may depend on newer libraries or other packages than you do not have in the repositories, so this won't always work.
5. Remove unused package files
When you install software using APT, the DEB packages are kept inside the /var/cache/apt/archives directory. In time, the size of it could get very large. To see what is the size of that directory, you can use:
$ du -h /var/cache/apt/archives/
4.0K /var/cache/apt/archives/partial
956M /var/cache/apt/archives/
In order to clean up all these packages you can use, as root:
apt-get clean
This command will remove all the packages except files which are locked. There is another command, apt-get autoclean, which will remove all the packages which are no longer available in the repository (older versions of packages which can't be downloaded any more).
6. Add repositories from a CD or DVD
If you need an offline repository for packages, you can download all the ISO images for your distribution, eventually burn them on CDs/DVDs and add them manually to the /etc/apt/sources.list file using apt-cdrom (as root):
apt-cdrom add
Enter the CD/DVD in the drive and let APT scan for packages.
Another great solution is to not even burn the ISO images to CD, just mount them and add them to your sources.list this way. Here's what you have to do:
First, type:
apt-cdrom -d=/cdrom add
Or replace /cdrom with some empty directory of your choice, that's where the ISO images will be mounted. I use here /mnt/iso0, /mnt/iso1 etc. Just make sure the directory is empty. The output of the above command looks something like this:
# apt-cdrom -d=/cdrom add
Using CD-ROM mount point /cdrom/
Unmounting CD-ROM
Waiting for disc...
Please insert a Disc in the drive and press enter
Now don't press Enter, instead open another terminal session and mount the image in that directory (as root):
mount -o loop /path/to/iso/file.iso /cdrom
Then return to the shell where you started apt-cdrom and press Enter. It should scan the directory where the ISO image was mounted. I'm not very sure this is the only method, but this worked very well for me. If you mount the ISO the first time and then execute apt-cdrom, it first umounts it and then it fails with the message E: Failed to mount the cdrom.
7. Use dpkg -S to search for a specific file
dpkg -S filename will search for filename in all the packages available and return all the packages which have a file (or the path to that file) with the same name. Notice that the name can also be included in the found files. For example, typing dpkg -S bash will return all the packages which contain the name 'bash' in their files, including mybashburn, bash and several other packages. On the other hand, searching for dpkg -S /bin/bash will only return package bash, since dpkg will match the whole path to the bash binary. See the screenshots below for examples:
8. Use apt-file to search for files in packages
This is a tool which creates a cache with info about all the packages available in the repositories, and it allows to search for specific files in a package and show what files a package will install (including packages which are not already installed). To get it, type as root:
sudo apt-get install apt-file
Next, update its cache:
sudo apt-file update
Use it like this:
apt-file search filename
Or:
apt-file search file_path
This will also return paths which include the name file_path. To show what files a package will install, use:
apt-file show package_name
9. Remove unnecessary packages
This was a feature which existed for while in aptitude, but not in apt. Once you remove an application, it may be possible that some libraries on which that application depended to remain installed in the system. In order to get rid of those too, use:
apt-get autoremove --purge
Notice that this command will only remove packages which are not needed any more by some other application or that are not marked as 'installed manually'. This means packages which you did not specifically installed yourself.
10. List files in a package
Just use dpkg -L package_name for this one. Example:
dpkg -L amarok
dpkg -L bash
...
This will list all the packages installed by the respective package. Notice that it won't list anything if the specified package is not installed.
1. View all the packages installed on a system
The easiest way to do it is:
dpkg --get-selections
It does not require to be root, and will display all the packages installed via APT. For example, the first lines may look something like:
$ dpkg --get-selections | head
acetoneiso2 install
acidrip install
acpi-support-base install
acpid install
adduser install
akregator install
alien install
alsa-base install
alsa-oss install
alsa-utils install
You can also put the entire list in a text file by redirecting the output, like this:
dpkg --get-selections > installed_packages.txt
Then read this file with a text editor or using less installed_packages.txt.
2. List files which get installed by a package
-L is a handy parameter to dpkg which will show you what files a package will install.
dpkg -L package_name
For example:
dpkg -L amarok
Will show all the files which are going to be installed by package amarok. You don't have to be root to run it.
3. Upgrade your system using a one-liner
Type as root:
apt-get update && apt-get dist-upgrade
This command will update your list of packages, and if its return status is successful, it will proceed to the next command, apt-get dist-upgrade, which will upgrade all of your packages and will install new dependencies if needed. Use dist-upgrade when you want all of your packages to be installed, and no package left as being kept back.
4. Install the dependencies of an application
Sometimes you need to compile from source a newer version of an application which is already included in the repositories. For example, to install the development libraries for BasKet, you would run as root:
apt-get build-dep basket
And then you can proceed to compile your application. Note that sometimes newer versions of applications may depend on newer libraries or other packages than you do not have in the repositories, so this won't always work.
5. Remove unused package files
When you install software using APT, the DEB packages are kept inside the /var/cache/apt/archives directory. In time, the size of it could get very large. To see what is the size of that directory, you can use:
$ du -h /var/cache/apt/archives/
4.0K /var/cache/apt/archives/partial
956M /var/cache/apt/archives/
In order to clean up all these packages you can use, as root:
apt-get clean
This command will remove all the packages except files which are locked. There is another command, apt-get autoclean, which will remove all the packages which are no longer available in the repository (older versions of packages which can't be downloaded any more).
6. Add repositories from a CD or DVD
If you need an offline repository for packages, you can download all the ISO images for your distribution, eventually burn them on CDs/DVDs and add them manually to the /etc/apt/sources.list file using apt-cdrom (as root):
apt-cdrom add
Enter the CD/DVD in the drive and let APT scan for packages.
Another great solution is to not even burn the ISO images to CD, just mount them and add them to your sources.list this way. Here's what you have to do:
First, type:
apt-cdrom -d=/cdrom add
Or replace /cdrom with some empty directory of your choice, that's where the ISO images will be mounted. I use here /mnt/iso0, /mnt/iso1 etc. Just make sure the directory is empty. The output of the above command looks something like this:
# apt-cdrom -d=/cdrom add
Using CD-ROM mount point /cdrom/
Unmounting CD-ROM
Waiting for disc...
Please insert a Disc in the drive and press enter
Now don't press Enter, instead open another terminal session and mount the image in that directory (as root):
mount -o loop /path/to/iso/file.iso /cdrom
Then return to the shell where you started apt-cdrom and press Enter. It should scan the directory where the ISO image was mounted. I'm not very sure this is the only method, but this worked very well for me. If you mount the ISO the first time and then execute apt-cdrom, it first umounts it and then it fails with the message E: Failed to mount the cdrom.
7. Use dpkg -S to search for a specific file
dpkg -S filename will search for filename in all the packages available and return all the packages which have a file (or the path to that file) with the same name. Notice that the name can also be included in the found files. For example, typing dpkg -S bash will return all the packages which contain the name 'bash' in their files, including mybashburn, bash and several other packages. On the other hand, searching for dpkg -S /bin/bash will only return package bash, since dpkg will match the whole path to the bash binary. See the screenshots below for examples:
8. Use apt-file to search for files in packages
This is a tool which creates a cache with info about all the packages available in the repositories, and it allows to search for specific files in a package and show what files a package will install (including packages which are not already installed). To get it, type as root:
sudo apt-get install apt-file
Next, update its cache:
sudo apt-file update
Use it like this:
apt-file search filename
Or:
apt-file search file_path
This will also return paths which include the name file_path. To show what files a package will install, use:
apt-file show package_name
9. Remove unnecessary packages
This was a feature which existed for while in aptitude, but not in apt. Once you remove an application, it may be possible that some libraries on which that application depended to remain installed in the system. In order to get rid of those too, use:
apt-get autoremove --purge
Notice that this command will only remove packages which are not needed any more by some other application or that are not marked as 'installed manually'. This means packages which you did not specifically installed yourself.
10. List files in a package
Just use dpkg -L package_name for this one. Example:
dpkg -L amarok
dpkg -L bash
...
This will list all the packages installed by the respective package. Notice that it won't list anything if the specified package is not installed.
Saturday, July 11, 2009
Tweet From the Terminal in Linux
Most Linux users prefer to use the terminal for most of their work. However most non-geek users tend to consider the terminal as boring.
Well here is a cool way to use your terminal. You can post tweets to twitter from the terminal.
1. Open the command prompt and enter the following command
sudo aptitude install curl
Enter your root password when it is prompted.
2. Now if you want to post to Twitter use the following command in single line
curl -u yourusername:yourpassword -d status=”Your Message Here” https://twitter.com/statuses/update.xml
You will receive a response containing the XML coding for your post which acts as a confirmation that your post was submitted.
You can follow me on twitter @iampriteshdesai
Well here is a cool way to use your terminal. You can post tweets to twitter from the terminal.
1. Open the command prompt and enter the following command
sudo aptitude install curl
Enter your root password when it is prompted.
2. Now if you want to post to Twitter use the following command in single line
curl -u yourusername:yourpassword -d status=”Your Message Here” https://twitter.com/statuses/update.xml
You will receive a response containing the XML coding for your post which acts as a confirmation that your post was submitted.
You can follow me on twitter @iampriteshdesai
Install VLC 1.0 In Ubuntu
VideoLAN's VLC media player, arguably the world's best media player, hit version 0.9.9 in early April. Three months and more than 78 million downloads later, VideoLAN has announced VLC 1.0.0, or "Goldeneye."
First, download and install the trusted key:
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 7613768D
This commands tells apt-key to download key 7613768D from keyserver.ubuntu.com and add it to your trusted repository keys.
Next, we need to edit the /etc/apt/sources.list file with root privileges (sudo nano /etc/apt/sources.list or gksudo gedit /etc/apt/sources.list) and add the following two repository lines:
deb http://ppa.launchpad.net/c-korn/vlc/ubuntu jaunty main
deb-src http://ppa.launchpad.net/c-korn/vlc/ubuntu jaunty main
Make sure to save the file when you're done. Alternately, this can be done as:
sudo bash -c "echo 'deb http://ppa.launchpad.net/c-korn/vlc/ubuntu jaunty main' >> /etc/apt/sources.list"
sudo bash -c "echo 'deb-src http://ppa.launchpad.net/c-korn/vlc/ubuntu jaunty main' >> /etc/apt/sources.list"
These two commands will append the two lines mentioned earlier to /etc/apt/sources.list.
Next, update the package lists:
sudo apt-get update
Then, just install VLC the usual way:
sudo apt-get install vlc
Wednesday, July 8, 2009
Use IPv6 In Linux
Here is a tutorial to help you assign IPv6 address to your Linux OS.
1. Check whether your kernel supports IPv6. Run the command:
sudo lsmod|less
2. Search the listing to see if ipv6 is there. If it isn't there try it with the command:
sudo /sbin/modprobe ipv6
Now issue the lsmod command to see if it is there. It should be.
3. The file to configure will be the standard network interface configuration. This will only work for static IP addresses. The file in question is /etc/network/interfaces. Most likely this is either not configured (if you are using DHCP) or set up for IPv4.
The details of our configuration:
IPv4 address: 162.82.1.65
IPv6 Address: 2002:c0a8:10a::
IPv4 gateway: 162.168.1.1
IPv6 gateway: 2002:c0a8:0101::
5. Add this to the /etc/network/interfaces file. The new file will look like this:
#IPV6 static configuration
iface eth0 inet6 static
pre-up modprobe ipv6
address 2002:c0a8:10a::
netmask 64
gateway 2002:c0a8:0101::
6. Now restart networking with the command:
/etc/init.d/networking restart
You should now have an IPv6 address enabled.
7. Before you assume everything is working, let’s make sure first. You can check your IP routing with the command:
ip -6 route show
The above command should return something like:
2002:c0a8:0100/64 dev eth0 proto kernel scope link src 2002:c0a8:10a
You can also check by pinging with the ping6 tool. A good IPv6 address to try is the Google address. Issue this command:
ping6 ipv6.google.com
If IPv6 isn’t working you will get error:
Network is unreachable
If IPv6 is working you will see the standard ping results in your terminal window.
1. Check whether your kernel supports IPv6. Run the command:
sudo lsmod|less
2. Search the listing to see if ipv6 is there. If it isn't there try it with the command:
sudo /sbin/modprobe ipv6
Now issue the lsmod command to see if it is there. It should be.
3. The file to configure will be the standard network interface configuration. This will only work for static IP addresses. The file in question is /etc/network/interfaces. Most likely this is either not configured (if you are using DHCP) or set up for IPv4.
The details of our configuration:
IPv4 address: 162.82.1.65
IPv6 Address: 2002:c0a8:10a::
IPv4 gateway: 162.168.1.1
IPv6 gateway: 2002:c0a8:0101::
5. Add this to the /etc/network/interfaces file. The new file will look like this:
#IPV6 static configuration
iface eth0 inet6 static
pre-up modprobe ipv6
address 2002:c0a8:10a::
netmask 64
gateway 2002:c0a8:0101::
6. Now restart networking with the command:
/etc/init.d/networking restart
You should now have an IPv6 address enabled.
7. Before you assume everything is working, let’s make sure first. You can check your IP routing with the command:
ip -6 route show
The above command should return something like:
2002:c0a8:0100/64 dev eth0 proto kernel scope link src 2002:c0a8:10a
You can also check by pinging with the ping6 tool. A good IPv6 address to try is the Google address. Issue this command:
ping6 ipv6.google.com
If IPv6 isn’t working you will get error:
Network is unreachable
If IPv6 is working you will see the standard ping results in your terminal window.
Firefox Tweak To Save Time
There's a setting tucked away in the recesses of Firefox 3.5's configuration options that will keep the browser running after you close the last tab. Instead of closing, Firefox will simply display a single blank tab.
Here's how it works. Type "about:config" into the location bar (without the quotation marks), and then finding the setting labeled "browser.tabs.closeWindowWithLastTab" (again, without the quotes) and double click that setting to change the value to false. That's it. Now when you close all your browser tabs Firefox will stay open.
Here's how it works. Type "about:config" into the location bar (without the quotation marks), and then finding the setting labeled "browser.tabs.closeWindowWithLastTab" (again, without the quotes) and double click that setting to change the value to false. That's it. Now when you close all your browser tabs Firefox will stay open.
Saturday, July 4, 2009
Disable Location-Aware Browsing in Firefox 3.5
The latest Firefox 3.5 browser comes with Location-Aware Browsing feature which will provide users with location specific information that relates to their local area, which can be helpful for online mapping applications or searching for nearby businesses, such as a local grocery store or movie theater.
However If you don't like the new Geo-locating features in the upcoming Firefox 3.5 release you can turn them off by:
1. Opening Firefox.
2. Go to the Address bar and input about:config.
3. If you see a warning appear, click the I’ll be careful, I promise button.
4. Go to geo.enabled and double-click it.
5. The value for geo.enabled will change to false. You have just disabled Location-Aware Browsing.
However If you don't like the new Geo-locating features in the upcoming Firefox 3.5 release you can turn them off by:
1. Opening Firefox.
2. Go to the Address bar and input about:config.
3. If you see a warning appear, click the I’ll be careful, I promise button.
4. Go to geo.enabled and double-click it.
5. The value for geo.enabled will change to false. You have just disabled Location-Aware Browsing.
Subscribe to:
Posts (Atom)



