vote up 2 vote down star

When the computer enters sleep it locks itself and I would like to avoid that. (Ubuntu 9.10)

Please don't upvote answers which don't work! I don't want a not working solution to get the bounty... READ THE COMMENTS FIRST! (There is reason why I'm using caps... You didn't...)

flag

3 Answers

vote up 1 vote down

Try:

Go System > Preferences > Screensaver and uncheck the box that says lock when screensaver is active.

Else

gconftool-2 --type boolean -s /apps/gnome-power-manager/lock_on_blank_screen false
gconftool-2 --type boolean -s /apps/gnome-power-manager/lock_use_screensaver_settings false

If these 2 don't work then

Open the terminal, and type sudo gconf-editor (you'll need to type root password) In the window that comes up go to apps > gnome-power-manager > lock On the right, UNCHECK suspend and hibernate and make sure that the use_screensaver_settings is CHECKED

or -

In your terminal type sudo gedit /etc/default/acpi-support
Go to the line that says LOCK_SCREEN=true and put a # in front of it.

Close, save and try it out.

All solutions via UbuntuForums

link|flag
1  
None of these worked... – Kalmi Nov 17 at 4:42
1  
If you look at the seconds page of thread you linked, you will see that it didn't for the OP either... – Kalmi Nov 17 at 4:47
2  
Indeed there is a bug filed for that: bugs.launchpad.net/ubuntu/+source/… if you have an account on launchpad I would suggest you mark the bug as "affects me too" as this gives a chance to be noticed first. – mac Nov 17 at 15:01
2  
What's with the downvotes ? You asked for a way, I provided alternatives. If it doesn't work, go file a bug. If I did something wrong put a comment. – Sathya Nov 20 at 23:16
vote up 0 vote down

MoarningSun got it partially working: https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/255228

Credit to mac for finding the launchpad bug report, and cleaning it up some.

link|flag
See MoarningSun's update. It's pretty unreliable. – Kalmi Dec 10 at 5:23
That's why I said partially. At least he found out part of what wasn't working. – Peter Cordes Dec 10 at 10:12
vote up 0 vote down

To disable the screen lock on suspend you must open a gconf-editor and disable the following options:

/apps/gnome-power-manager/lock_on_hibernate = false

/apps/gnome-power-manager/lock_on_suspend = false

/apps/gnome-power-manager/lock_on_blank_screen = false

However with this settings when you press the suspend butto you get no screensaver at all and therefore no visible feedback until the laptop is switched off. I solved this second problem by creating a /etc/acpi/suspend.d/06-gnome-screensaver.sh script which starts the gnome-screensaver at the beginning of the sleep sequence. Now I have screensaver on suspend but no screen lock dialog on resume.

It would be nice if gnome-power-manager would rename the current lock_on_* options to screensaver_on_* and add a new lock_screen option to decide if locking the screen or simply activating a screensaver.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.