Trust yourself. You know more than you think you do.

"life is all about 10 percent what happens to us and 90 percent how we react to those happenings."


check out my site

Lock preferences in Firefox 3 on Ubuntu


If your running computer in a domain(server-client model) u'll surly hav a firewall for your clients, Normally we can break this fire wall from the client machine by disabling the firewall in the browser by the following steps
firefox--> Edit-->Preferences-->advanced-->network-->settings-->by clicking the auto detect
(( if the proxy is manual then it will respond the firewall setting so u cant browse blocked sites.
Solution:
You have to disable the proxy switch option from manual to auto detect option bu locking the preferences buttoon by the following steps.

1.  Add the following to the end of  /etc/firefox-3.0/pref/firefox.js:
// tell firefox to load customized config file
pref("general.config.obscure_value", 0);
pref("general.config.filename", "firefox.cfg");

2.  Create a file called firefox.cfg in /etc/firefox-3.0/pref/ with the following content (the first line in both files must start with a comment):
// Lock specific preferences in Firefox so that users cannot edit them
lockPref("app.update.enabled", false);
lockPref("network.proxy.http", "127.0.0.1");
lockPref("network.proxy.http_port", 8080);
lockPref("network.proxy.type", 1);
lockPref("network.proxy.no_proxies_on", "localhost, 127.0.0.1, 192.168.1.0/24");
lockPref("network.proxy.share_proxy_settings", true);
lockPref("browser.startup.homepage", "http://www.desiredhomepage.com/");

3. Create another file in /etc/firefox-3.0/pref/ called copyfirefox.cfg.pl with the following contents (Thanks to Jeffrey LePage for this script):
# start of file
use strict;

# this gets the current firefox version
my $fire_ver = `/usr/bin/firefox -v`;

# this parses the version
chomp($fire_ver);
$fire_ver =~ s/^\s*Mozilla\s+Firefox\s+([\d\.]+).*$/$1/;
#Mozilla Firefox 3.0.13, Copyright (c) 1998 - 2009 mozilla.org

# this looks for firefox.cfg
if( -e "/usr/lib/firefox-$fire_ver/firefox.cfg" )
{
# firefox.cfg exists - this is good, no action is necessary
}
else
{
# make a symlink
symlink("/etc/firefox-3.0/pref/firefox.cfg", "/usr/lib/firefox-$fire_ver/firefox.cfg");
}
# end of  file

4. Open the root crontab editor by typing the following in a terminal window:
sudo crontab -e
Add the following to the end of the root crontab in the crontab editor:
# Copy firefox.cfg to the current Firefox binary directory
# to keep it working following an upgrade until this bug is fixed.
* * * * * /usr/bin/perl /etc/firefox-3.0/pref/copyfirefox.cfg.pl /dev/null 2>&1
This script will create a symlink to firefox.cfg every minute in the current Firefox binary directory (/usr/lib/firefox-3.0.x where x is the version number) to protect againt upgrades where the directory changes to x+1.  This is a very short script, so running it every minute will have almost no CPU overhead.  But if you want even less CPU overhead, you could change the first asterisk in the crontab entry to */5 to make it run every 5 minutes instead of every minute, or */10 for every 10 minutes, etc.

5. Wait a minute for the crontab to fire.  Then restart Firefox, and the preferences should be locked down.  You should be able to use this to lock down any setting in about:config.


After this the client user cant edit the preferences option any more.

Lock preferences in Firefox 3 on Ubuntu


If your running computer in a domain(server-client model) u'll surly hav a firewall for your clients, Normally we can break this fire wall from the client machine by disabling the firewall in the browser by the following steps
firefox--> Edit-->Preferences-->advanced-->network-->settings-->by clicking the auto detect
(( if the proxy is manual then it will respond the firewall setting so u cant browse blocked sites))

Technology in the Open Source

In the current stage of the computer technology., all are thinking and talking about the windows(closed source), Even though every one knows about in that we can do only the restricted actions but still we are thinking that's the user friendly OS. But the real enjoyment is with the open source, of course this is only user friendly OS, the most flexible we can design as per our desires, like wise i found ubuntu one of the most flexible OS in the open source!
I found some designs in that as per my need, and i've got some troubleshoot in that, let me update those things in my blog..!!!