Alt+SysReq REISUB not working

Despite the fact that /etc/sysctl.d/99-sysctl.conf contains:
kernel.sysrq=1
and cat /proc/sys/kernel/sysrq confirms this is set by displaying:
1
The magic key combo merely appears to kill the X server and I go back to lightdm greeter for logging back into my XFCE session.
Is there something about XFCE/lightdm I'm not aware of? There does not appear to be any keyboard shortcut overrides.

Holding down Alt+SysRq, I then press REISUB in that order and its the E key combo that appears to restart the X Server.
Looking on-line, I see the following:
E: Send the SIGTERM signal to all processes except init
and then looking in the journal I see:
Mar 16 20:19:34 pc kernel: SysRq : Keyboard mode set to system default
Mar 16 20:19:35 pc kernel: SysRq : Terminate All Tasks
Mar 16 20:19:35 pc systemd-journal[141]: Journal stopped
Mar 16 20:19:36 pc systemd-journal[6946]: Permanent journal is using 327.2M (max allowed 4.0G, trying to leave 4.0G
Mar 16 20:19:36 pc systemd-journald[141]: Received SIGTERM.
Mar 16 20:19:36 pc systemd-udevd[6913]: starting version 210
Mar 16 20:19:36 pc systemd[1]: dhcpcd.service: control process exited, code=exited status=1
Mar 16 20:19:36 pc systemd[1]: Unit dhcpcd.service entered failed state.
Mar 16 20:19:36 pc systemd[1]: systemd-logind.service has no holdoff time, scheduling restart.
Mar 16 20:19:36 pc systemd[1]: lightdm.service holdoff time over, scheduling restart.
Mar 16 20:19:36 pc systemd[1]: Unit lightdm.service entered failed state.
Mar 16 20:19:36 pc systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
Mar 16 20:19:36 pc systemd[1]: Stopping Journal Service...
Mar 16 20:19:36 pc systemd[1]: Starting Journal Service...
Mar 16 20:19:36 pc systemd[1]: Started Journal Service.
Mar 16 20:19:36 pc systemd-journal[6946]: Journal started
Mar 16 20:19:35 pc dhcpcd[337]: received SIGTERM from PID 0, stopping
Mar 16 20:19:35 pc dhcpcd[337]: enp3s0: removing interface
Mar 16 20:19:35 pc dhcpcd[337]: exited
Mar 16 20:19:35 pc dhcpcd[6921]: dhcpcd not running
Mar 16 20:19:35 pc dbus[6938]: [system] Successfully activated service 'org.freedesktop.systemd1'
Mar 16 20:19:35 pc lightdm[474]: pam_unix(lightdm:session): session closed for user imbjr
Mar 16 20:19:35 pc systemd[1]: Failed to send out specific PropertiesChanged signal for systemd-journald.service: C
Mar 16 20:19:35 pc systemd[1]: Failed to send out specific PropertiesChanged signal for systemd-udevd.service: Tran
Mar 16 20:19:35 pc systemd[1]: Failed to send out specific PropertiesChanged signal for systemd-udevd-kernel.socket
Mar 16 20:19:35 pc systemd[1]: Failed to send out specific PropertiesChanged signal for systemd-udevd-control.socke
Mar 16 20:19:35 pc systemd[1]: systemd-udevd.service has no holdoff time, scheduling restart.
Mar 16 20:19:35 pc systemd[1]: Stopping udev Kernel Device Manager...
Mar 16 20:19:35 pc systemd[1]: Starting udev Kernel Device Manager...
Mar 16 20:19:35 pc systemd[1]: Started udev Kernel Device Manager.
Mar 16 20:19:35 pc systemd[1]: lightdm.service: main process exited, code=exited, status=1/FAILURE
Mar 16 20:19:35 pc systemd[1]: Unit lightdm.service entered failed state.
Mar 16 20:19:35 pc systemd[1]: dhcpcd.service: main process exited, code=exited, status=1/FAILURE
Mar 16 20:19:36 pc systemd[514]: Stopping Default.
Mar 16 20:19:36 pc systemd[454]: Stopping Default.
Mar 16 20:19:36 pc systemd[514]: Stopped target Default.
Mar 16 20:19:36 pc systemd[514]: Stopping Basic System.
Mar 16 20:19:36 pc systemd[454]: Stopped target Default.
Mar 16 20:19:36 pc systemd[514]: Stopped target Basic System.
Mar 16 20:19:36 pc systemd[454]: Stopping Basic System.
Mar 16 20:19:36 pc systemd[454]: Stopped target Basic System.
Mar 16 20:19:36 pc systemd[454]: Stopping Paths.
Mar 16 20:19:36 pc systemd[454]: Stopped target Paths.
Mar 16 20:19:36 pc systemd[454]: Stopping Timers.
some of which might me when I am forced to use the machine's power button.

Similar Messages

  • ALT+TAB key not working in Acrobat CC

    In PC, ALT+TAB key not working in Acrobat CC version...PLs. suggest your best ASAP

    How does this connect to the Acrobat SDK? Are you a programmer?

  • Is there a keyboard shortcut to launch firefox 3.6.3 with windows vista? Hot key (ctrl + alt + key) does not work.

    The hot key (ctrl + alt + key) does not work. This is in Windows Vista.

    Thank you Morbus and Cor-el, for your prompt replies. Here's what I did: I've placed the Firefox icon in the quick launch toolbar. So I right-click this firefox icon>Properties>Shortcut tab>in Shortcut Key field, add X (the word "None" changes to "ctrl + alt + X")>Apply>Okay>and that closes the dialog window.
    Then, to try the new launch short-cut, I press and hold down, in order, ctrl, then alt, then x (holding all three down) . . . and nothing launches.
    I thought this would do it! So any further thoughts would be a splendid help ---- many thanx!

  • RegisterHotKey(....) to disable hotkeys such as ALT+F4 is not working in C# Web Browser control

    Disabling hot keys like "ALT+F4" using register RegisterHotKey(..) function and wndproc(..) function in c# windows application is not working as expected in few cases. Below is the description.
    I am using C# Web Browser control in windows application to display Web Pages. We are disabling hot keys like ALT+F4 by calling the method RegisterHotKey(..) and capture the hot key message in Wndproc(..) function. Initially This is working as expected
    normally.
    But as part of new requirement, we need to set the "title of Web browser page" to its parent class(Win form) text property. when we are assigning text property of winform using below code, the hot keys could not be disabled.
    this.Text = webBrowserCustom.DocumentTitle; //this keyword refers to WinForm which loads web browser control
    If webBrowserCustom.DocumentTitle is empty then this.text is set to Empty string. In such case the hot keys are not getting disabled.
    I am not sure what is the relation between text property of winform and hot keys disabling.
    Could you please let us know why hot keys are not getting disabled when we setting empty string to Winform(which is loading Web Browser control) text property.?

    Hi,
    How did you use RegisterHotKey and winproc function in your project, could you please post the code here so that we can reproduce the problem firstly?
    If you just want to prevent the user from closing the form, you could register Form_Closing event handler, and cancel the closing behavior by the user. 
    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    e.Cancel = (e.CloseReason == CloseReason.UserClosing);
    private void btnCloseForm_Click(object sender, EventArgs e)
    this.FormClosing -= new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
    this.Close();
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Hp t510 right alt key mapping not working with ctrl + s

    Using the HP t510 to launch a xendesktop session via storefront. We have a mission critical application that uses the ctrl + alt + s hotkey to secure itself. The left alt key with ctrl + s is working as it should but the right alt key does not. When testing in the win7 on screen keyboard the right alt and ctrl stay lit up. When hitting the S key after depressing both the  right alt + ctrl (right or left ctrl doesn't matter) the alt keys disappear from the on screen keyboard as if they were no longer pushed. They hotkey combination never makes it to the application and it does not secure itself.
    I've tested this same workflow on an ASUS thin client, desktop, and laptop hardware with no issues. It does in fact seem to be some hotkey mapping the HP device has baked into it using the right alt key.
    Has anyone seen any issues that even closely mimic this? I've seen some for ctrl + alt + del but their fixes don't work for this specific issue.

    Hello xXenStatex,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that the alt key mapping is not working with ctrl + s on your Thin Client, and I would be happy to guide you towards a resolution!
    I am sorry, but to get your issue more exposure, I would suggest posting it in the commercial forums, since this is a commercial product. You can do this at:
    http://h30499.www3.hp.com/t5/Workstations-Thin-Clients/bd-p/bsc-635
    I hope this helps!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Alt+Scroll do not work since updated to firefox 17.0

    Usually I use Alt+mouse scroll to scroll one line in firefox, but since updated to firefox 17.0, it do not work anymore, even in safety mode.

    It's ok now, thank you very much!

  • Alt-Ctrl-C not working, InDesign CS3, Windows

    Hello,
    We are currently running Adobe Design Premium CS3 and are having a hard time getting the keyboard shortcut Alt-Ctrl-C to work in InDesign.
    I do have the ATI Catalyst control center application running at startup on my Windows Vista PC, however even though I have disabled hot-keys within this application Alt-Ctrl-C still fails in InDesign.
    Just in case the ATI application was still intercepting the key press event I tried both changing the hotkey that ATI responds to and closing the application all together. Still InDesign refuses to accept Alt-Ctrl-C
    Any ideas?

    The solution is to STOP ATI Catalyst from starting up in the startup menu when booting XP.
    I had the same problem and it was ATI Catalyst that was the offender. It has a built-in shortcut key of CTRL + ALT + C that is set to open the program and it overrides the one in InDesign.
    People have tried to disable the shortcut keys in Catalyst, but in all honesty, you just do not need the thing open until you actually want to use it. It is sitting there are a memory hog.
    I solved the problem by going into the Start Menu of XP and taking it right out of there so it doesn't start up at all. This then leaves ID free to use the shortcut of CTRL + ALT + C.
    You can also go to the START button, then RUN, then type in MSCONFIG, and select the last tab on the right: Startup. Then disable the ATI Catalyst check box. Close out of everything and do a reboot of your system.
    Hope this helps those with the problem.

  • Alt + Tab macro not working for Sculpt Comfort Mouse in Windows 8.1

    Hi,
    I cant get a macro working in Keyboard and Mouse Centre for the Alt+Tab action. I've created the macro previously on windows 7 and all fine, but will not work on 8.1
    Alt(press) delay(10ms) Tab delay(10ms) Alt(release) 
    I have a sculpt comfort mouse, though I don't think that is a culprit, as the macro itself does not work.
    Alt+tab works fine on the keyboard, no problems at all.
    Please help as this is spoiling my interactions with my OS, which I use almost all day most days.
    Thanks,
    Paul

    Hi,
    The macro you mean is Macro Recoder, isn't it? As far as I know, this product may be not compatible with Windows 8.1. I found the link below show its system requirements:
    http://www.jitbit.com/docs/macrorecorder/index.htm
    In addition, it would be better to contact Macro Recoder support for further assistance:
    http://www.jitbit.com/support/
    Roger Lu
    TechNet Community Support

  • ALT Startup will not work any longer, PRAM reset will not work any longer.

    Hi folks,
    I just bought and plugged in my Mac Pro to a new Belkin battery back up unit yesterday, and now when I try to restart using the ALT key it will not work, it starts up to my default drive only. When I try to reset the PRAM, using the option-command P-R keys it also boots to the default drive.
    Any suggestions would be appreciated.
    Jim

    Troubleshooting is sortof voodoo, if you do "a" and get response "b" then don't do it!
    There have been other problems, USB hub, cable, etc.
    OS X doesn't "need" PowerChute which also hasn't been updated in two years and can cause problems. APC works. APC's software for Windows is excellent though. Shame.
    As for why... I'll leave that for philosophy class.
    Wired keyboard? check. 1000VA or above? check. Any UPS also can have a strong EMF field around it that I guess could affect other electronics (cell phones etc and AC adapters have been known to cause problems and RFI).

  • Adobe Illustrator CS5 (ALT DRAG COPY) not working. Why and how do I fix it?

    I click on the object I want to duplicate, then I click ALT (double duplicate arrows appear) and then select the object (double duplicate arrows disappear), then I drag and nothing duplicates or copies...all it does it move the object I was trying to copy. How do I fix this?

    jokerlex,
    You may be lucky to have one of the easy ones at the top work.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • If Ctrl+Alt+Shift buttons not working to reset your adobe photoshop cs5.1 preference to default

    How to reset Photoshop preferences (In Windows):
    First, hold down all three Ctrl+Alt+Shift buttons
    Now "while keeping those button held," simply open Photoshop or a file that opens with Photoshop
    As Photoshop loads, you should get a prompt asking if you would like to "delete the Photoshop settings file", Click yes
    You should now have a fresh slate with all of the settings returned to their default.
    Its strange some keyboard cannot reset photoshop after  you press  Ctrl + Alt + Shift buttons.
    And its no pop up to confirm delete
    At finally i found the problems is type of my keyboard not compatible with photoshop
    i changed my old keyboard immediately and its works!!
    If you have problems with Ctrl + Alt + Shift buttons cannot reset your adobe photoshop cs5 preference  , please do change your type of your  keyboard to new keyboard

  • Zoom with Alt + Mouse wheel not working

    I used to be able to zoom in and out in Lightroom by pressing the alt (or option key) and scrolling up or down.   Suddenly this stopped working.  It still works fine in other apps like Photoshop, just not Lightroom.  Any suggestions?

    I'm on Windows - and for me, Ctrl + scroll wheel zooms the image (not Alt + scroll wheel). That's a common shortcut in many programs (don't know about MacOS though).
    However, I personally find mouse clicking between (say) 1:1 and Fill, hitting the space bar as needed (also using that to pan) both quicker, and more useful.

  • Alt & scroll wheel not working on Photoshop CC to zoom in / out

    Hey! So i'm using the latest version of Photoshop CC, and i'm also running the Technical Preview of Windows 10. So In Photshop, usually when you hold the alt key and scroll with the scroll wheel on your mouse, it will zoom in / out of the image on Photoshop. Well i'm having some problems with that, it isn't working at all. In preferences I have it set to zoom with scroll wheel. Anyone know why it isn't working? Could it be something with the Windows 10 Preview?

    Please report Windows 10 issues to Microsoft, so they can get the information they need to fix the OS bugs before shipping the final version.

  • Code 6584 - alt/option does not work because of "network" problem

    I cannot enter time machine - get a code 6584. When i verify the backup with  the suggested alt/option key, I get a message that the Time machine verification was interrupted because of a network problem. After checking Airport utility I do not have a network probel, which brings me back to square one. Can anybody help?

    Hello,
    Hold the Alt/Option key while selecting the TM icon in your menubar.
    Have you looked through Pondini's extensive TM help site?
    http://Pondini.org/TM/FAQ.html
    http://pondini.org/TM/Troubleshooting.html
    Can't imaging something not being covered there.

  • Shift/cmd/alt/opt suddenly not working

    i'm having a rather strange thing pop up now, for no apparent reason that i can determine.
    basically, all shift-key functions--like capitalizing letters--have stopped working in most programs like camino, system preferences, etc. also gone are command key combinations like hide or quit, and all features involving option or alt keys.
    however--this is the careful bit to pay attention to--these keys are all working fine and normal when i open a program like microsoft word or entourage and start using them as normal. also, i can use the edit-special characters palette to insert these special characters when i absolutely need to.
    obviously i would like these buttons restored to full functionality in all the programs, so would appreciate any help you can offer. i've already gone into system preferences and looked through keyboard/mouse but there's nothing out of the ordinary there--restored all defaults but didn't change anything here.
    is anyone aware of a problem like this and how i can correct it. as said, works fine in word/entourage, textedit, spotlight--only seems to come up in browsers and the odd preference panel and app with a text field.

    Wow! This is issue is crippling. I have the same issue and the official solution is to throw out the adobe preferences before you start of illustrator. unfortunately I need to do that every time since it just happens again. it looks like this problem has been around since CS3. this pretty much renders illustrator useless. anyone know of a good alternative program? (no need to suggest Corel) too bad freehand no longer exisits. I am sick of dicking around with this and it doesn't look like they are interested in fixing the problem.
    Running CS4 on windows 7 64 bit....

Maybe you are looking for

  • Visual Voicemail prroblem

    Hello, I have a Z10 on Bell.  I have Visual Voicemail which seems to work most of the time. I've noticed a few times that the VV app will not download messages from the mailbox.  I get an error saying "You have new Visual Voice Mail messages that can

  • How To Load XML into a Table

    Hello All, I need to load many XML files into their own tables without using the XMLType column type. We need each element/attribute to get it's own column. For example <book id="bk103"> <genre>Mystery</genre> </book> should load to a table with colu

  • Inactive sessions in v$session.  True problem

    Hi, I am working in an Oracle 9i/Weblogic/J2EE platform. And when i look for session info in v$session view, i see that there are many sessions that have a status "Inactive". I already figured out what it means- the session is ACTIVE when it is doing

  • I have a new laptop and want to install a copy of CS5 or CS6 on it to do my homework at work.

    Basiclly I upgraded from 32-bit to 64 bit and want to use my CS5 or CS6 suites on it. Can this be done or do I have to purchase a whole new copy of either one? I don't want the cloud thing, internet is not always available.

  • 10g windows cold backup script ...

    we have 10g db on windows server. I wnat to perform cold backup of db everyday night. at present I am in process on writting .bat to shoudown 10g db I nee .bat file to shutdown 10g database