No screen lock with gnome 3

Hello guys
My major problem with gnome 3 is that I'm unable to lock my screen.
I tried every possible alternative such as locking after suspend via pm-suspend, the gnome-menu or closing the lid.
Even lock screen via the gnome-menu doesn't work.
Furthermore I changed my dconf and gconf multiple times ( especially the lock-use-screensaver setting) and tried every solution posted in the web. But nothing solved my problem.
I also tested using GDM in stead of SLIM ( which I prefer ) but this solved my problem neither.
My laptop is an Acer Aspire 3820TG Timeline X running the newest kernel ( 3.0 ) and Gnome 3.0.2.
If you need more information don't hesitate to ask!

I'm not sure what is "ridiculous".
When on a call using the iPhone's earpiece - holding the iPhone up to your ear and face during a call, the iPhone includes a proximity sensor to automatically turn the screen off or lock the screen when doing so - there is no need to press the sleep/wake button while holding the iPhone up to your ear and face during a call. When pulling the iPhone away from your ear and face during a call to look at the screen and to use the iPhone for something else during the call or to hang up the call, etc., the screen turns back on. This is done automatically.

Similar Messages

  • When upgrading the software my screen locked with image music connector with lights flashing how do I get out of this?

    I have a new latest apple tv.  I was asked do I want a software upgrade, when I said yes, after 5 minutes the screen locked with an image of a connector cable with music.
    I pulled the power, the hdmi and reconnected and it went back to the image on the screen.  the white light is flashing fast - does anyone know what to do?

    The update was interuppted. You will need to grab a micro usb cable and restore via iTunes
    http://support.apple.com/kb/HT4367

  • No screen lock with os4 !! reminds me of htc tilt !!!

    i have a major issue with the new software 4.0 seems they left out the screen lock option by pressing power button to lock the screen i always either hang up , put on hold or open a app while talking !! I'm very disappointed with apple i have many products and several phones at the price we are PAYING i would expect a better product

    I'm not sure what is "ridiculous".
    When on a call using the iPhone's earpiece - holding the iPhone up to your ear and face during a call, the iPhone includes a proximity sensor to automatically turn the screen off or lock the screen when doing so - there is no need to press the sleep/wake button while holding the iPhone up to your ear and face during a call. When pulling the iPhone away from your ear and face during a call to look at the screen and to use the iPhone for something else during the call or to hang up the call, etc., the screen turns back on. This is done automatically.

  • Screen locked with voice over and zero value

    My ipad screen is locked with voice over and every time I put in my pass code it just repeats and says zero value.  How do I get into my ipad without having to loose all my data.  Have icloud backup but not sure if that is working properly.Frustrated!

    Try triple-clicking the home button and see if that turns it off, and if it does you can then change what a triple-click does via Settings > General > Accessibility > Accessibility Shortcut (or Triple-Click Home depending upon the iOS version).
    If that doesn't turn it off then you can either turn it off directly on the iPad to go into Settings > General > Accessibility and turn VoiceOver 'off'. You need to use a tap-to-select and then double-tap to activate/type process and 3 fingered scrolling e.g. to type a digit of your passcode tap the digit so that it gets a box around it, and then double-tap the digit to type it.
    Or you can do it by connecting to your computer's iTunes (after typing in your passcode via the tap/double-tap process) : select the iPad  in iTunes, select its Summary tab, scroll to the bottom of that and click the 'configure accessibility' button :
    And on the popup select 'none' for the 'seeing' option :
    Clicking 'ok' should turn it 'off' on your iPad

  • Sflock: simple X screen locker with basic user feedback

    There are several applications out there that lock the X display. On the one side of the spectrum you have xscreensaver and xlockmore which provide screensavers and on the other side you have slock which provides nothing. sflock is an application that is built as an extension to slock, which provides very basic user feedback.
    The need for me arrived because I wanted a screen locker that was trustworthy and that looks ok. Because I have no interest in screensavers and the xscreensaver unlock screen is one of the most ugly things I have ever seen, I turned to slock. This works fine, but there is no real way to tell that the screen is locked.  You just type a password on a black screen and if it's correct, the screen gets unlocked. fslock (at least the first version) shows a line on the screen and displays asterisks for every character entered.
    The goal of the application is to be simple and small, but still look good. You can install sflock from the AUR under the name sflock-git or download it directly from github. Suggestions are of course welcome.

    I've been trying to get this to use Xft for rendering the fonts, but this is essentially my first time doing anything in C. Sflock builds properly but segfaults when I try to run it.
    diff --git a/config.mk b/config.mk
    index 3a42077..b6a72ed 100644
    --- a/config.mk
    +++ b/config.mk
    @@ -12,8 +12,8 @@ X11INC = /usr/X11R6/include
    X11LIB = /usr/X11R6/lib
    # includes and libs
    -INCS = -I. -I/usr/include -I${X11INC}
    -LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext
    +INCS = -I. -I/usr/include -I${X11INC} -I/usr/include/freetype2
    +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXft
    # flags
    CPPFLAGS = -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H
    diff --git a/sflock.c b/sflock.c
    index 72b076b..3c51823 100644
    --- a/sflock.c
    +++ b/sflock.c
    @@ -12,10 +12,12 @@
    #include <string.h>
    #include <unistd.h>
    #include <sys/types.h>
    +#include <fontconfig/fontconfig.h>
    #include <X11/keysym.h>
    #include <X11/Xlib.h>
    #include <X11/Xutil.h>
    #include <X11/extensions/dpms.h>
    +#include <X11/Xft/Xft.h>
    #if HAVE_BSD_AUTH
    #include <login_cap.h>
    @@ -79,7 +81,10 @@ main(int argc, char **argv) {
    XColor black, red, dummy;
    XEvent ev;
    XSetWindowAttributes wa;
    - XFontStruct* font;
    + XftFont *font;
    + XftColor *xftcolor;
    + XftDraw *xftdraw;
    + XGlyphInfo *extents;
    GC gc;
    XGCValues values;
    @@ -145,14 +150,14 @@ main(int argc, char **argv) {
    XDefineCursor(dpy, w, invisible);
    XMapRaised(dpy, w);
    - font = XLoadQueryFont(dpy, fontname);
    + font = XftFontOpenXlfd(dpy, screen, fontname);
    + XftColorAllocName(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), "white", xftcolor);
    if (font == 0) {
    die("error: could not find font. Try using a full description.\n");
    gc = XCreateGC(dpy, w, (unsigned long)0, &values);
    - XSetFont(dpy, gc, font->fid);
    XSetForeground(dpy, gc, XWhitePixel(dpy, screen));
    for(len = 1000; len; len--) {
    @@ -187,7 +192,8 @@ main(int argc, char **argv) {
    if (update) {
    XClearWindow(dpy, w);
    XDrawLine(dpy, w, gc, width * 3 / 8 , (height + baroffset) / 2, width * 5 / 8, (height + baroffset) / 2);
    - XDrawString(dpy,w,gc, (width - XTextWidth(font, passdisp, len)) / 2, (height+42) / 2, passdisp, len);
    + XftTextExtentsUtf8(dpy, font, (XftChar8 *)passdisp, len, extents);
    + XftDrawStringUtf8(xftdraw, xftcolor, font, (width - extents->width) / 2, (height+42) / 2, (XftChar8 *)passdisp, len);
    update = False;
    @@ -251,7 +257,9 @@ main(int argc, char **argv) {
    XUngrabPointer(dpy, CurrentTime);
    XFreePixmap(dpy, pmap);
    - XFreeFont(dpy, font);
    + XftFontClose(dpy, font);
    + XftColorFree(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), xftcolor);
    + XftDrawDestroy(xftdraw);
    XFreeGC(dpy, gc);
    XDestroyWindow(dpy, w);
    XCloseDisplay(dpy);

  • Screen locked with non-English keyboard layout selected

    Hello,
    I use two keyboard character sets for keyboard. The switch between them is Command-Space.
    I also have password requirement for waking up or going from screen saver.
    Now if screensaver starts with non-English layout selected, I'm not able to login:
    password is not accepted because keyboard layout is not English and switching
    to English layout does not work in unlocking window.
    Is there any way to change layout while in the unlock window?
    Thanks

    Yes you are right, this is not a bug, it's just bad user interface. Just imagine the following scenario...
    Writing a paper, switching to Greek to enter a couple of characters and leaving the mac idle for 5 mins.
    The lock screen comes up asking for a password, unfortunately the user didn't change the language
    before the mac was left idle and there is no option to change the language in the lock screen.
    User has to hard reset to access the mac and let's hope that the user was saving his paper frequenlty.
    So from a coding point of view this is not a bug, but from a user interface design it is a huge flaw

  • Should I use screen lock with find my iPad.

    Im using a wifi only iPad, so if it is lost or stolen the finder or thief will need to be able to access my iPad and connect to a wifi signal before I can track it. I therefore think I should not use keypad lock so that I can allow them

    You don't have to use one, it's personal preference as to whether you use one or not - I use one on my iPad Mini as I prefer the feel of them compared to the glass screen, other people don't like or use them as they prefer the glass (and some screen protectors can affect the clarity of the screen). Depending upon where you will be using the iPad (e.g. if it's dusty or dirty) you may want one to give the screen a bit of extra protection.

  • Screen Locked with box "Cannot Access Find My Friends"

    This has never happened...when I try to go on my iPad there is a box that says "cannot access find my friends" with 2 buttons "later" or "open". When I select either of those nothing happens.  I have tried shutting down and it won't let me select to power down.  I have asked Siri all sorts of questions and commands which she answers and follows.  When I ask her to go to the find my friends app it displays a white screen.  I never even use this app.  Here is a pic of what it looks like.

    Try a device reset:
    Device Reset (won't affect settings/data/music/apps/etc)
    1. Press and hold (& continue to hold) BOTH the Sleep/Wake button & the Home button.
    2. Continue to hold BOTH (ignoring any other messages that may show) until you see the Apple logo on the screen.
    3. Release BOTH buttons when you see the Apple logo and allow the device to boot normally.
    Afterwards, enter multitasking and close off the Find My Friends app as it may be running and throwing this message. It appears you are likely on iOS 6.x so I'll include the procedure to close off the app for that iOS as it's different than iOS 7 and above:
    Double-tap Home, press and hold one of the running app's icons (in your case, Find My Friends) until it wiggles, press the red - on the icon to close the app. Do this for all of the apps you want closed.
    Note that a similar pop-up message stating something like "This iPad had not been backed up for xxx amount of time" has also been know to appear with similar symptoms as this message. The only way to clear the message is with a device reset as mentioned above. Apple needs to address (at least) this "no backed up" message issue as it can prevent one from using their device unless they know of the reset.

  • GNOME Screen Lock

    Very simple, I dislike the automatic screen lock in GNOME. However, when I go to Settings > Privacy the Screen Lock option is grayed out, I'm not allowed to change it. I've tried editing the gdm/custom.conf to start under the users group, and when that didn't work, under my login name. No dice. So, does somebody have a simple fix?

    Elfo wrote:Very simple, I dislike the automatic screen lock in GNOME. However, when I go to Settings > Privacy the Screen Lock option is grayed out, I'm not allowed to change it. I've tried editing the gdm/custom.conf to start under the users group, and when that didn't work, under my login name. No dice. So, does somebody have a simple fix?
    Have you installed the gnome-extra meta package?
    I installed gnome, gnome-extra and gdm. It works for me.

  • Help! after upgrade to ios5.1, my iphone keep going back to the screen lock 'slide to setup' screen

    help, after upgrade my iphone to ios5.1,my phone is in screen lock with 'slide to setup' mode. after going thru the setup, it says to start using iphone. but clicking that brings me to the apple icon and then back to the same lock screen with slide to setup mode. i cannot use my phone. i tried shutdown but still no use. pls help....

    Artnmotion wrote:
    Basically my Screen Lock has changed to the Silent Button like on a iPhone and my Volume Button does nothing any advise people???
    see art51's post in this thread: http://discussions.apple.com/message.jspa?messageID=12652155#12652155.
    JGG

  • IPOd is frozen after screen lock.

    Alright I'm having a bit of a problem, and the trouble shooting and tips I read on the support/ipod page didn't help. I put my iPod on a screen lock with the password. The next time I tried to use it I knew I would have to put the password in,but it wouldnt let me. It seemed to be frozen,but then finally a page showed up showing a file and and exclmation point,and an iPod with a sad face with http://apple.com/support/iPod I went there and followed the steps,but my iPOd has yet to work..can someone please help me?!!Thanks
    -audrey

    http://apple.com/support/iPod I went there and
    followed the steps,but my iPOd has yet to work..can
    someone please help me?!!Thanks
    -audrey
    You say you followed ALL the steps. Did you restore your ipod?

  • When my iPhone 4S (with ios7) experiences a failed call while connected to my Bluetooth hands free in my car(screen locked) the failed call appears on the locked screen, as it should, then when I unlock the phone it automatically redials the failed call,

    When my iPhone 4S (with ios7) experiences a failed call while connected to my Bluetooth hands free in my car(screen locked) the failed call appears on the locked screen, as it should, the problem arises whenever I unlock the phone, it automatically redials the last failed call, it doesn't do this with missed calls that are on the locked screen, if any. It is really annoying as sometimes the phone doesn't respond to attempts to end the call before it connects to the number. I then have to explain that it was my phone and not me, I look like an idiot, which I don't really need any extra help with!! Does anyone have any ideas? I don't want to stop missed call from showing in the locked screen but it might be associated with the failed calls and therefore be the only resolution

    I have had the same issue which was driving me mad but think I have just found a way around it. In iOS 7 if you swipe up on the lock screen to access quick settings and go into timer then click the home button you get into the phone without calling the person back. Not a great 'fix' but hope it works for you. Come on Apple this isn't good enough, fix this bug otherwise you will lose your customers.

  • HT1212 my ipod screen is cracked and i can't sync my ipod on to itunes becauseit it is locked with a password and i can't enter the password because the heat sensor is messed up and i don't want t restore it and lose everything so how can i get passed tha

    My ipod screen is cracked and i can't sync my ipod to itunes because it is locked with a password and i can't enter the password because the heat sensor is messed up on the ipod becasue of the screen and i don't want to restore it and lose everything. What can i do?!

    All you can do is to restore and thus erase the iPod unless you can get a data recovery company to preserve the data.
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                          
    If recovery mode does not work try DFU mode.                         
      How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I wanted to keep my locked screen display with the time and date from turning off is that possible

    So I enjoy my locked screen display with my chosen picture because it has the time displayed nice and big and its a cool nightlight but the locked screen display/wallpaper/time with date always goes black after 13ish seconds of locking it is there no way to let the locked screen stay on while charging? because it is awesome if it could stay on as a nightlight also so i dont have to press the lock button to see what time because the normal display is ugly am I just being super picky or am I not the only one who agrees or maybe it does exist im just stupid please respond when you can also thanks for reading much appreciated.

    wjosten wrote:
    Again, there is NO WAY to do what you asked: display the time constantly.
    I have a clock app that displays the time constantly on my iPad. I use it as a bedside clock. Many clock apps have the ability to disable autolock just within that app. Whether there is one that lets you pick your own background, I don't know but I wouldn't be surprised if there were, based on the number of clock apps out there. While what I'm suggestion is not precisely what the OP asked (display the system lock screen), it seems it might be a possible workaround.

  • My touch shows the connect to itunes with usb on screen however when i try to do so it says it cannot connect because it is locked with a passcode. It will not let me enter the code on the ipod or computer. so i cant do anything. Any ideas?

    I have tried rebooting it. nothing seems to help. it always ends up with the same screen a picture prompting me to hook up via usb to itunes.Then without fail i get an error message. itunes connpt connect to the ipod touch because it is locked with a passcode. you need to enter the passcode on the ipod touch first. unfortunately the touch will not show any other screen but the connect to itunes.

    Connect the iPod touch to your iTunes library in Recovery Mode and restore it to factory setting.  See this article for instructions on getting your device into Recovery Mode.
    http://support.apple.com/kb/ht1808
    B-rock

Maybe you are looking for

  • Open Data Set Encoding

    Hello all, Can we specify Encoding in the OPEN DATA SET statement,i found out that we can encode it with UTF-8. but i want to encode my data in Latin1 ISO-8859-1. is it possible? if yes how to do it? plz help its urgent:(

  • Data not reflecting in the front end after hiring from PA48

    Hi, I am doing the data transfer process from the webdynpro application. The candidate to be hired is getting reflected in PA48,and once the hiring is done and I run HRALXSYNC, the status is still red. Can anybody suggest what else needs to be done,

  • Mixed Storage not allowed

    Hi, Below is the scenario.... I created a Standard Purchase Order and an Inbound delivery... When I trying to create Transfer orders for that Inbound delivery through LT03, and save it....I am getting error message saying "Mixed Storage is not allowe

  • Is it possible to add new screen fields to the transaction /dsd/sl_cockpit

    HI experts,       Would like to know if it is possible to add new screen fields to the cloned version of /dsd/sl_cockpit.       I cloned the original transaction /dsd/sl_cockpit into a diff. name, now I want to know how I can include/ add those new f

  • Error:Release outside field of responsibility

    Dear All, Error:Release outside field of responsibility in Function module:BAPI_PO_RELEASE I given the Inputs: Purchase Order:xXXXXXXXX PO_REL_CODE: 01 Exceptions: X it showa the Error:Error:Release outside field of responsibility can any one help me