Ubuntu 18.10: Screen lock options grayed out
Recently upgraded to Ubuntu 18.10, having two problems.
Easiest to explain: when I open "settings", go to "privacy", select "screen lock", I get the popup window with the screen lock settings, but everything is grayed out:
Second issue: If I step away from the machine for long enough (seems to be 5 minutes), the screen blanks. Hitting a key or moving the mouse wakes it up. But when it wakes up, the only things on the screen are the icon bar at the left and the top bar with status icons on the right end. The rest of the screen is blue, not my normal lock screen image. The screen isn't locked, it doesn't prompt for a password, it's just...blue.
I can move the mouse pointer around the screen, the icons react if I click on one, I can bring up the popup with volume/brightness controls on the top bar. But if the pointer is on the blue background, neither left nor right button clicks do anything.
Now, if I press ctrl-alt-F1 from there, I get a lock screen where I can enter my password. Then I get the blue screen back, but if I press ctrl-alt-F2 I get my normal screen (with running applications) back.
ctrl-alt-F2 without going through the lock screen first does nothing.
I'm not finding anything while searching that matches either of these sets of symptoms. Suggestions?
lock-screen gdm 18.10 virtual-console
add a comment |
Recently upgraded to Ubuntu 18.10, having two problems.
Easiest to explain: when I open "settings", go to "privacy", select "screen lock", I get the popup window with the screen lock settings, but everything is grayed out:
Second issue: If I step away from the machine for long enough (seems to be 5 minutes), the screen blanks. Hitting a key or moving the mouse wakes it up. But when it wakes up, the only things on the screen are the icon bar at the left and the top bar with status icons on the right end. The rest of the screen is blue, not my normal lock screen image. The screen isn't locked, it doesn't prompt for a password, it's just...blue.
I can move the mouse pointer around the screen, the icons react if I click on one, I can bring up the popup with volume/brightness controls on the top bar. But if the pointer is on the blue background, neither left nor right button clicks do anything.
Now, if I press ctrl-alt-F1 from there, I get a lock screen where I can enter my password. Then I get the blue screen back, but if I press ctrl-alt-F2 I get my normal screen (with running applications) back.
ctrl-alt-F2 without going through the lock screen first does nothing.
I'm not finding anything while searching that matches either of these sets of symptoms. Suggestions?
lock-screen gdm 18.10 virtual-console
add a comment |
Recently upgraded to Ubuntu 18.10, having two problems.
Easiest to explain: when I open "settings", go to "privacy", select "screen lock", I get the popup window with the screen lock settings, but everything is grayed out:
Second issue: If I step away from the machine for long enough (seems to be 5 minutes), the screen blanks. Hitting a key or moving the mouse wakes it up. But when it wakes up, the only things on the screen are the icon bar at the left and the top bar with status icons on the right end. The rest of the screen is blue, not my normal lock screen image. The screen isn't locked, it doesn't prompt for a password, it's just...blue.
I can move the mouse pointer around the screen, the icons react if I click on one, I can bring up the popup with volume/brightness controls on the top bar. But if the pointer is on the blue background, neither left nor right button clicks do anything.
Now, if I press ctrl-alt-F1 from there, I get a lock screen where I can enter my password. Then I get the blue screen back, but if I press ctrl-alt-F2 I get my normal screen (with running applications) back.
ctrl-alt-F2 without going through the lock screen first does nothing.
I'm not finding anything while searching that matches either of these sets of symptoms. Suggestions?
lock-screen gdm 18.10 virtual-console
Recently upgraded to Ubuntu 18.10, having two problems.
Easiest to explain: when I open "settings", go to "privacy", select "screen lock", I get the popup window with the screen lock settings, but everything is grayed out:
Second issue: If I step away from the machine for long enough (seems to be 5 minutes), the screen blanks. Hitting a key or moving the mouse wakes it up. But when it wakes up, the only things on the screen are the icon bar at the left and the top bar with status icons on the right end. The rest of the screen is blue, not my normal lock screen image. The screen isn't locked, it doesn't prompt for a password, it's just...blue.
I can move the mouse pointer around the screen, the icons react if I click on one, I can bring up the popup with volume/brightness controls on the top bar. But if the pointer is on the blue background, neither left nor right button clicks do anything.
Now, if I press ctrl-alt-F1 from there, I get a lock screen where I can enter my password. Then I get the blue screen back, but if I press ctrl-alt-F2 I get my normal screen (with running applications) back.
ctrl-alt-F2 without going through the lock screen first does nothing.
I'm not finding anything while searching that matches either of these sets of symptoms. Suggestions?
lock-screen gdm 18.10 virtual-console
lock-screen gdm 18.10 virtual-console
edited Nov 5 '18 at 11:15
pomsky
31.3k1194127
31.3k1194127
asked Nov 5 '18 at 0:28
Mike JonesMike Jones
62
62
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It is likely that your lock screen has been disabled. You can enable the lock screen with the following command in the terminal.
gsettings set org.gnome.desktop.lockdown disable-lock-screen false
If you want to enable the lock screen with a GUI you can do this with dconf-editor. You can install dconf-editor in the terminal with the following command.
apt install dconf-editor
Once you have dconf-editor installed enable the lock screen with the following steps.
- Open
dconf-editor. - Browse to
/org/gnome/desktop/lockdown/. - Find
disable-lock-screen. - Toggle option from On to Off.
Thanks to jugs for providing this solution at https://bbs.archlinux.org/viewtopic.php?id=227258
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1090091%2fubuntu-18-10-screen-lock-options-grayed-out%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It is likely that your lock screen has been disabled. You can enable the lock screen with the following command in the terminal.
gsettings set org.gnome.desktop.lockdown disable-lock-screen false
If you want to enable the lock screen with a GUI you can do this with dconf-editor. You can install dconf-editor in the terminal with the following command.
apt install dconf-editor
Once you have dconf-editor installed enable the lock screen with the following steps.
- Open
dconf-editor. - Browse to
/org/gnome/desktop/lockdown/. - Find
disable-lock-screen. - Toggle option from On to Off.
Thanks to jugs for providing this solution at https://bbs.archlinux.org/viewtopic.php?id=227258
add a comment |
It is likely that your lock screen has been disabled. You can enable the lock screen with the following command in the terminal.
gsettings set org.gnome.desktop.lockdown disable-lock-screen false
If you want to enable the lock screen with a GUI you can do this with dconf-editor. You can install dconf-editor in the terminal with the following command.
apt install dconf-editor
Once you have dconf-editor installed enable the lock screen with the following steps.
- Open
dconf-editor. - Browse to
/org/gnome/desktop/lockdown/. - Find
disable-lock-screen. - Toggle option from On to Off.
Thanks to jugs for providing this solution at https://bbs.archlinux.org/viewtopic.php?id=227258
add a comment |
It is likely that your lock screen has been disabled. You can enable the lock screen with the following command in the terminal.
gsettings set org.gnome.desktop.lockdown disable-lock-screen false
If you want to enable the lock screen with a GUI you can do this with dconf-editor. You can install dconf-editor in the terminal with the following command.
apt install dconf-editor
Once you have dconf-editor installed enable the lock screen with the following steps.
- Open
dconf-editor. - Browse to
/org/gnome/desktop/lockdown/. - Find
disable-lock-screen. - Toggle option from On to Off.
Thanks to jugs for providing this solution at https://bbs.archlinux.org/viewtopic.php?id=227258
It is likely that your lock screen has been disabled. You can enable the lock screen with the following command in the terminal.
gsettings set org.gnome.desktop.lockdown disable-lock-screen false
If you want to enable the lock screen with a GUI you can do this with dconf-editor. You can install dconf-editor in the terminal with the following command.
apt install dconf-editor
Once you have dconf-editor installed enable the lock screen with the following steps.
- Open
dconf-editor. - Browse to
/org/gnome/desktop/lockdown/. - Find
disable-lock-screen. - Toggle option from On to Off.
Thanks to jugs for providing this solution at https://bbs.archlinux.org/viewtopic.php?id=227258
answered Jan 30 at 8:51
TobiasTobias
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1090091%2fubuntu-18-10-screen-lock-options-grayed-out%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown