How can I disable password request after suspend in v. 18.04? I have already turned off the screen lock but that didn't fix it.

I am brand new using Ubuntu. There seems to be lots of info on how to fix this in older versions.

up vote 20 down vote accepted

For most Ubuntu distributions and versions try this in the terminal:

gsettings get org.gnome.desktop.screensaver ubuntu-lock-on-suspend
true

If the result is true then set it to false using:

gsettings set org.gnome.desktop.screensaver ubuntu-lock-on-suspend false

Just remember to reset it before your cleaning person comes over for monthly work.

  • Thanks for your response. I followed your directions. The result was true. I put in the command you provided and it responded command not found Did I do something wrong? – Rookie Apr 29 at 20:19
  • @Rookie Don't put in the $ that represents what your display is asking you to enter. I modified the answer to reduce confusion. If this works for you don't forget to accept the answer so others know it works. As a new user you may not be away you can click the check mark beside the answer. – WinEunuuchs2Unix Apr 29 at 20:20
  • thank you this works.when you press windows key (super) and l it will lock the system so you can lock it after this. – Dummyxl Jun 30 at 21:17
  • Thank you so much been trying to figure this for months :) – Jinx13 Jul 3 at 22:37

Disable screen lock after suspend by installing dconf-editor

sudo apt install dconf-editor

then navigate to

org/gnome/desktop/screensaver and turn off ubuntu-lock-on-suspend.

enter image description here

You can disable the password from suspend in 18.04 by going into Settings -> Privacy -> Screen Lock -> [Click he Slider from On to Off]

  • Did not work for me. WinEunuuchs2Unix's method worked, but as he notes, one has to remember this. – Keith McClary Apr 29 at 19:46
  • this does not stop the screen lock activating when resuming from suspend. – Tim Richardson May 25 at 3:13
  • For me the settings were all gayed out and inaccessible in 18.04. I resolved that by "gsettings set org.gnome.desktop.lockdown disable-lock-screen false" to make the settings changeable again. – Bim Jul 29 at 16:32
  • This doesn't work – Kennet Celeste Sep 7 at 13:12

Your Answer

 

By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

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