How To Speed Up Opening Linux Terminal & Running Linux CommandsOctober 10th, 2008 Most techies and developer prefer using the terminal on Linux. If you are like me a heavy command line interface (cli) user than you will find these simple tips useful.
Share Firefox and Be Immortalized in Firefox 2July 17th, 2006 Share Firefox with a friend. If your friend downloads Firefox before September 15, you’ll both be immortalized in Firefox 2.
Firefox Woes: Memory Leaking, Hanging, Incorrect Rendering etc.December 16th, 2005 Firefox has its own share of troubles. If I happen to open few sites with Flash advertisements on them and leave it open for some time, Firefox gobbles up most of the memory and becomes dog-slow.
How To Run Multiple Firefox Instance From Different Accounts in LinuxSeptember 2nd, 2007 In Linux, unlike Windows, multiple users can simultaneously connect to the same machine and get a full GUI using windows managers like VNC. However when one of the account has Firefox opened, others are prevented from bringing up firefox which can be very much irritating.
How To Update To Firefox 2.0.x in Fedora Core / LinuxMay 14th, 2007 Fedora Core 6 ships with Firefox 1.5.x version. Firefox 2.0.x is currently in development repository of Fedora Core 6.
How To Easily Switch Proxies in FirefoxJune 25th, 2006 There are two Firefox extensions depending on your need. If you need to switch between different proxies quickly then you can use the SwitchProxy extension for Firefox.
How to Enable Flash in Firefox 1.5December 10th, 2005 If you use Firefox AdBlock extension and you have upgraded to Firefox 1.5 you may notice that Flash is now disabled on your browser. This micro tutorial will show you how to enable Flash on your Firefox 1.5 browser.
US Non-Immigrant Visa Application Rejects Firefox UsersMarch 22nd, 2008 The online US non-immigrant visa application site - https://www.vfs-usa.co.in/ doesn't allow you to submit the visa application using the popular Firefox browser. However it never says it explicitly.
Two Points To Remember Before You Trust Firefox FullyJanuary 13th, 2009 Let's face the fact. Firefox has made our internet experience a lot easier.
Solving: Permission denied to get property HTMLDivElement.nodeType when calling method: [nsIDOMEventListener::handleEvent] nsresult: 0x8057001e (NS_ERROR_XPC_JS_THREW_STRING) location: <unknown> data: noJuly 31st, 2007 This is a sporadic error that I have seen in Firefox browsers while using the Ext JS components. It is not harmful in any way but is annoying.
How To Make Friends on MySpace AutomaticallyJune 18th, 2006 This is a simple guide to making friends (as many million as you like) on MySpace automatically (otherwise where is the fun?). Ensure you have perl available on your system.
Firefox Download Still Sucks, At Least It RecoversJune 30th, 2008 Firefox download manager is still flaky, even after three major versions. Often the download stops for no apparent reasons.
What is Your Most Favorite Firefox 3 Feature?June 24th, 2008 My most favorite Firefox 3 feature is the automatically generated Most Visited folder on Bookmarks tab. It allows me to quickly browse my important work related websites.
Beware of Firefox TabMix .2 ExtensionMay 10th, 2005 It slowed my Firefox considerably. Whenever I opened a new tab, closed one there would be a delay of 10-12 seconds! It is that bad.
How to start/stop MySQL server on LinuxJanuary 7th, 2005 # To Start MySQL Server
/sbin/service mysqld start
# To Stop MySQL Server
/sbin/service mysqld stop
# To Restart MySQL Server
/sbin/service mysqld restart
And of course there is the brute force way to kill all the processes:
$ for i in `ps -ef |grep mysqld |awk '{print $2}'`; do `kill -9 $i`; done
Thanks to Anthony Eden for the comment (below) to remove the dot in front. A simpler alternative is:
pkill mysqld
This will kill the mysqld process.
September 2nd, 2008 at 11:45 am
Ummm… why is it do you think that you have this problem? I have used and deployed firefox to thousands of machines, for many more years than I care to count - lets just say I started doing it when it was called “Phoenix”. I have had crashing issues with earlier versions (pre 1.5), but it was almost unanimously due to a plugin - not FF itself. Recent crashes have been very rare, and in every single instance it was a badly-written third party plugin to blame.
Try starting FF in “safe mode” and see if that fixes your crashes. If so, turn off all your plugins and start turning them on one by one. Find the one that crashes the app. Remove it. Be happy. If you can’t remove it, live with it and file a bug report against the plugin. And beware of Flash - badly written Flash has been the culprit more often than any other crash I have experienced.
Sorry if I seem a bit crass, but it is unbelievable to me that someone is still experiencing massive, repeatable crashes and hangs with FF after 1.5 - on any platform.