I found this here
http://live.gnome.org/GnomeScreensav..._in_as_root.3F
but they dont tell me where this file is .. When I do a find on the system it give me directories not a file GConf.
find / -name GConf
/usr/lib/GConf
/usr/share/GConf
/usr/lib64/GConf
I'm a systems administrator. How can I set policies for all users of my system?
You can set mandatory policies in GConf. Here are some typical policies for a "locked down" system:
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type bool \
--set /apps/gnome-screensaver/idle_activation_enabled true
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type bool \
--set /apps/gnome-screensaver/lock_enabled true
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type string \
--set /apps/gnome-screensaver/mode blank-only
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type int \
--set /apps/gnome-screensaver/idle_delay 10