Imac: I’m trying 9.10 and after I suspended it asked for my password when went back to the computer. How do I disable that feature?

Not that I would recommend it, I can understand the need to turn the password prompt off when returning from suspend. On Ubuntu 9.10, Gnome has that as a setting which can be toggled through the GConf Configuration Editor, gconf-editor, or at the command line with gconftool.

The GUI Way:

The GConf Configuration Editor doesn’t have a visible menu listing. You can launch it by using ALT+F2 to open the Run Application dialog box and type gconf-editor followed by clicking the Run button.

scrsht_Run_Application

Next, you will need to navigate to the necessary key name through the use of the tree menu on the left of the Configuration Editor. Double-click on apps to expand that part of the tree. Scroll down and double-click on gnome-power-manager. Lastly, single-click on lock to see the corresponding key names and their values appear in the upper-right window. You should see a key named suspend with a checkbox value next to it.

scrsht_Configuration_Editor_lock

Simply click the checkbox to remove the checkmark. The change is immediate so you only need to close the Configuration Editor. If you want to turn that feature back on, follow the steps again and place a checkmark into the checkbox.

The CLI Way:

From a command line, to turn the feature off, you only need to use the following entry:

gconftool --type Boolean --set /apps/gnome-power-manager/lock/suspend false

To turn it back on, set it to true.

gconftool --type Boolean --set /apps/gnome-power-manager/lock/suspend true

Remember that the password prompt, while annoying at times, can be your last line of defense from letting people access sensitive data. While turning the prompt off makes sense for shared computers such as a media server box, it’s not recommended for personal laptops/desktops.

  • Share/Bookmark