User login
Navigation
Recent blog posts
- Ubuntu mirrors up and improved!
- Google-jstemplate: Iterate object with unknown properties
- nginx https proxypass for php apps
- sugarcrm & memcache: Doing it Wrong
- subversion and https in Ubuntu Karmic
- Drupal: Views block delta converted to md5 hash
- Ubuntu Server install requires PAE
- Installing Drupal from command line
- Drupal: Handling form field weight through CCK
- minify javascript using Google Closure Compiler
angch's location
angch twitter
- angch: Heading to Brunei. Business class for a change.
- angch: tc qdisc htb activated on the mirror, and mirror reactivated. Hope nothing melts now.
- angch: Hmmm, tbf doesn't work as advertised. htb does. #qos #linux
- angch: @yoonkit me thinks #lucid is a much better tag than #lynx
- angch: Great, you broke the dc's net and they disconnected us. Running to tpm from shah alam
Using Firefox multi profile

kamal — Tue, 21/10/2008 - 16:22
Firefox allow us to specify multi profile, other than just the default. This is useful for example to test web application with different users has to logged in into the system. The usage is quite simple:-
$ firefox -ProfileManagerwill show a dialog box for you to select which profile to use or create new one. But once you have an instance of Firefox running, the dialogue box is not displayed anymore. Firefox (at least on ubuntu because I guess the wrapper script screw up) specify the --remote option to TRUE.
So to get back the profile manager dialogue box, we have to use another wrapper script (wtf ...) to start up firefox:-
#!/bin/sh
MOZ_NO_REMOTE=1 firefox -PI try to put this directly into ubuntu application launcher but it does not work.
