Can neither suspend on close in Gnome nor shut down with Gnome-Do

I suspect this may have come from the recent HAL update, though I can't be to sure. I am able to suspend and shut down by going to the system menu, but shutting down with the Gnome-Session-Manager plugin in Do yields this output:
[Error 07:24:04.114] [PowerManagement] Could not shutdown: org.freedesktop.DBus.Error.UnknownMethod: Method "Shutdown" with signature "" on interface "org.freedesktop.PowerManagement" doesn't exist
As for the Power Manager dumbness... It worked fine before? When I close my laptop, it simply blanks the screen rather than suspend it, which I set it to do in the options. I can't figure out how to get output from that, even running it in the console, so learning how might rock.

wonder wrote:try this: http://bugs.archlinux.org/task/14266
I assume I would add that bit under the ./configure in the PKGBUILD, correct? About:
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export LDFLAGS="${LDFLAGS} -Wl,--as-needed"
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib/gnome-power-manager \
--enable-policykit \
--with-dpms-ext \
--disable-scrollkeeper \
--with-dbus-services=/usr/share/dbus-1/services \
--enable-applets || return 1 \
--enable-legacy-buttons
If so, after compiling with ABS (which I just learned from the wiki cool stuff) and installing, it didn't work.

Similar Messages

  • I have Photoshop CS5 and a Nikon D 810 camera.  I have downloaded Camera Raw 8.8 & DNG converter.  I can neither open the raw files (.nef), nor process them with the DNG converter. What is going wrong?

    I have Photoshop CS5 and a Nikon D 810 camera.  I have downloaded Camera Raw 8.8 & DNG converter.  I can neither open the raw files (.nef), nor process them with the DNG converter. What is going wrong?  Thanks!

    This is the last paragraph from my very first response to you, post #1 in this thread:
    …Additionally, you need to install the DNG Converter, not just "download" it, and you need to launch it and run it on each folder of NEFs you wish to convert to raw DNGs.  [emphasis added]

  • HT5361 I can't shut down my computer because it says mail is open.  It says to close mail and continue shut down.  Problem is I can't open or close mail now.  Can't shut down my computer at all.  What can I do?

    I can't shut down my computer because it says mail is open.  It says to close mail and continue shut down.  Problem is I can't open or close mail now.  Can't shut down my computer at all.  What can I do?

    If you cannot get mail to quit/force quit, you can always remove power from your Mac.
    NOTE: removing power is a bad idea, and can result in data loss, but sometimes it is the only thing left to do.
    Press and hold the power button for 5 to 10 seconds, and the Mac will power off.
    When you power back on, the Mac should reboot.

  • When i close airport utility it shuts down my wifi

    when i close airport utility it shuts down my wifi and i have to keep it open so that i can access the wifi
    i have only a airport extreme

    Power off both your computer and the base station.
    Then, power up the base station first and let it run a minute, then power up the computer.
    Any change when you check AirPort Utility?
    If not, we need more information about your AirPort device. Our crystal ball is unfortunately not working today, so we must ask you to locate the model number of your AirPort and post back with that info.
    The model number is on the side or bottom of the AirPort depending on what version you have. It starts with an "A" followed by four numbers, as in "A x x x x".

  • There are times when I try to start firefox 3.6 that it does not come up,but when I click it again, I get fire fox is running but not responing, close fire fox, or shut down computer. There are other times that it starts up normaly wit no probs

    # Question
    there are times when I try to start firefox 3.6 that it does not come up,but when I click it again, I get fire fox is running but not responding, close fire fox, or shut down computer. There are other times that it starts up normally wit no probs
    ..

    Not using any mouse pad, I have a very smooth desktop. But I just tried to use a sheet of A4 printing paper, but no result, the problem persisted.
    Someone on this forum suggested, that USB3 may interfere with the magic mouse.
    I have 2 LaCie HDD's about 70 cm away from the mouse, I use them on Thunderbolt. But in operation or not - the result is the same, the mouse plays up! Just now I was clicking the desktop and the mouse created a new folder!!
    Thanks for the advice, Bee
    Cheers, Gerd

  • My macbook pro is hung on "checking for new software" and won't close or let me shut down. How do I shut it down safely? Thanks

    I have tried shutting down from the apple...I have tried shutting down by trying to close the software update window (which won't let me close)...and have tried shutting down with just using the button. But the software blocks me from shutting down.

    Hold down the option-command-esc keys and Force Quit Software update.

  • I can't seem to "close" my documents on MSoft Word with AppleScript!

    Hi
    I have tons of documents open on MSoft Word and wish to close some of them. Luckily, those that I wish to close all start with the word "book", so I was thinking I could actually automate that with AppleScript hence avoid closing them one by one.
    I wrote the following code:
    tell application "Microsoft Word"
    count (document)
              set countresult to result
              repeat with incrementValue from 1 to countresult
                        if name of document incrementValue starts with "book" then
      activate document
      close document
                        end if
              end repeat
    end tell
    To my surprise, it didn't work!
    I got the following under "Replies", which showed that AppleScript did indeed try to close the document that starts with "book":
    tell application "Microsoft Word"
    count every document of current application
      --> 6
    get name of document 1
      --> "book_mac_OS_X_and_iOS_internals.htm"
    activate
    close document
    get name of document 2
      --> "applicable books.htm"
    get name of document 3
      --> "What Do You Want Homespace to Do.htm"
    get name of document 4
      --> "URL_repository_for_outcomes.htm"
    get name of document 5
      --> "SYNTHESIS - History a Step Back.docx"
    get name of document 6
      --> "SYNTHESIS - History a Step Back.docx"
    end tell
    But when I went back to Word, I still saw the document there!
    I actually added an additional line (I didn't include the code in that which I pasted here) asking to count the number of documents in Word AFTER the so-called "close", and the number remains 6.
    Can anyone enlighten me on this?
    Regards,
    junxiang99

    Hi,
    The quickest way to do this (tested with OS 10.8.2, MS Word 2011) is in one line:
    tell application "Microsoft Word" to close every document whose name begins with "book"
    The reason why your script doesn't work is that you aren't specifying to Word which document you want it to close.
    So, changing one line ought to do it:
    close document incrementvalue -- instead of "close document"
    But... when you close a document, you change the document count. Document 2 becomes document 1, document 3 becomes document 2 etc. So eventually you'd get a message saying "The object you are trying to access doesn't exist".
    Because of this, if you want to do it in a repeat loop, you have to work backwards:
    tell application "Microsoft Word"
      set doc_count to count documents
      repeat with x from doc_count to 1 by -1
      if name of document x begins with "book" then close document x
      end repeat
    end tell
    Hope this helps.

  • Close Firefox, restart it says firefox can not start - already running, tried deleting the parent.lock it doesn't exist. I try to turn off my computer it says WidgiBho needs to close, I tell it to close but computer never shuts down

    close Firefox, restart it says firefox can not start - already running, tried deleting the parent.lock it doesn't exist. I try to turn off my computer it says WidgiBho needs to close, I tell it to close but computer never shuts down

    Did you try to wait a bit longer before restarting Firefox to give Firefox more time to close down completely?
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

  • Iphoto will not close or let me shut down computer.  Now it's frozen and can't even view photos.  Thanks.

    I don't know how this started, but I'm unable to shut down my computer because I get message saying my photos are being synced with online... which they aren't.  Now iphoto is frozen.  Can't shut down computer or view photos.
    Thanks for any help you can provide.
    I have a MacBook Pro bought about 18 mos ago.

    Force restart your computer, back up your iPhoto library, depress the option an command keys, launch iPhoto and rebuild the library
    LN

  • I tried to set up a remote desktop between my macmini and my work computer.  I hit cancel and now the Remote Desktop will not close.  I cannot shut down my computer either.  How do you close a non-responsive application.  I have tried everything!

    I tried to set up a remote desktop connection between my MacMini and my work computer.  It was not working so I hit cancel, but then the big black screen of death came up and will not go a way.  I cannot close my computer nor quit the remote desktop connection.  How do you close a non-responsive application?  By the way, I am new to Mac and it is not as simple as hitting the Control, Alt, Delete.  Please help.

    virginiafromphoenix wrote:
    .......How do you close a non-responsive application?.......
    Try ( alt + cmd + esc ).  Gives you a menu of running applications, and a chance to "Force Quit".

  • FF4.0 Windows XPv3 drag tab to 2nd screen, drag bar off screen at top, close other browser window, shuts down both browser instances. BTW, look at how SAFARI does the drag tab to other screen, that is how!

    FF4, drag 2nd tab to new window.
    2. top dragbar is off screen at top. I unmaximize the original screen, now that one also pushes the drag bar to the top off the screen. I resize the bottom of the screen and I can see a sliver of the top dragbar. If I close one browser window, both shut down. Auch!
    Please take a look at how safari renders a second browser window when you drag one tab to the other window. Cool!

    FF4, drag 2nd tab to new window.
    2. top dragbar is off screen at top. I unmaximize the original screen, now that one also pushes the drag bar to the top off the screen. I resize the bottom of the screen and I can see a sliver of the top dragbar. If I close one browser window, both shut down. Auch!
    Please take a look at how safari renders a second browser window when you drag one tab to the other window. Cool!

  • HP Touch Pad freezing and will not restart nor shut down.

    My HP Touch Pad will not reboot nor shut off. I have a "hp" logo on the screen that will not go away. I have tried all of the 5 Ts with no sucess. I tried downloading webOS Doctor several times but when it went to connect my device I got an error message that stated " Connect your device directly to your computer with your usb cable."  The screen below has "Help" and "Next". Next is greyed out. I inserted the usb cable into different ports on my computer and made sure that they were listed under my computer tab. I was unable to get the "Next" button to be useable.  Any ideas about how I can make this connect to the touchpad? or even how I can get it to unfreeze. Appreciate any help.   

    Just to be sure you've followed the directions fully, here is my "Doctor How To" file:
    How to Doctor an HP TouchPad (reflash the ROM)
    On your Touchpad be sure to have:
    USB cable. The battery is charged to at least 30%.
    Computer:
    Windows 7, Windows XP, Windows Vista Available USB port (not a hub or secondary port). Java 1.5 or later is installed. If you are not sure about what version of Java you have, or even if Java is installed, go to www.java.com and click the Do I have Java? link to install the latest version of Java. 210MB of storage space. Internet connection.
    Miscellaneous Info:
    The update process will take approximately 15 minutes. During this process, your device will not be available for use.
    Downloading webOS Doctor
    Download webOS Doctor on your desktop computer. If you have a webOS profile, get it from http://ws.hpwebos.com/webosdoctor/sorry.htm
    If not, check the webOS Internals page: http://www.webos-internals.org/wiki/Webos_Doctor_Versions
    Get your TouchPad ready to update
    Hold the Power Button for several seconds until a menu appears. Tap Shut Down to completely power down your device.
    Running webOS Doctor
    Double-click the file that was downloaded to run webOS Doctor. Follow the on screen directions up until you are asked to connect your device. Select the language you selected on your device, and click Next. Confirm your language choice. Click Accept to accept the terms of use. Click Next. webOS Doctor checks your system. BE PATIENT! I've seen this part take a few minutes to complete. After webOS Doctor finishes checking your system, you will be asked to connect your device.
    Connecting your device and finishing the webOS Doctor update
    Connect your device to your computer using the USB cable. You must connect your device directly to your computer, not through a USB hub or other intermediate device. Now the tricky part. Hold the Volume Up button on the device and insert the USB cable. After the large USB symbol appears on screen, let go of the Volume Up button. If you see the HP logo instead of the large USB symbol, you may have let go of the Volume Up button prematurely. If this occurred , wait until your device boots up, shut down your device and then repeat step 2. Windows will find your device and may offer to install two different drivers. When asked to install drivers of OMAP, select No, not at this time. When asked to install drivers for Palm Novacom (bootie), select Yes and let the drivers install. This may take a while. Once the drivers have been installed, the Next button will become available in webOS Doctor. Click Next. Do not disconnect your device from the computer during the update process. When the Reset Complete screen appears, click Done. Wait a few minutes for your device to reset. You're done!
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • HT4623 I downloaded ios7 and initially it was working fine. Now it is flashing from my home screen to the white screen with the black apple every 3-5 seconds. It's so annoying and I can't make it stop! I tried shutting down all the way - nope! HELP!

    I downloaded ios7 on my iphone 5 yesterday. All day it worked fine, then last evening it started blinking from the white screen with the black apple to my home screen. Each screen only stays up for 3-5 seconds then switches back. I have tried shutting down and it is still happening! Does anyone know how to fix this issue without having to go into the store?

    Your power adapter is OK. If the only place it will not work is in your home, your house wiring and / or the appliances connected to it are likely to be the reason your Mac will not charge.
    From Troubleshooting MagSafe adapters:
    Identify line noise issues.
    Unplug the power adapter from the wall, let it sit for 60 seconds, then plug the adapter back in.
    If the adapter works after this 60-second "rest", you most likely have a line noise issue with your power source. You should reset the adapter periodically by repeating this moment of rest. This issue occurs when the AC adapter's "over voltage protection" feature senses ground noise and then turns off the adapter.
    Some possible sources of line noise include lights with ballasts, refrigerators, or mini-refrigerators that are on the same electrical circuit as your computer. This behavior may not occur if you plug the power adapter into an uninterruptible power supply (UPS) or plug it into a different circuit.
    Unless the adapter continues to exhibit this behavior on a known good outlet, it does not need to be replaced.
    Household wiring problems are very common. They can also be very dangerous. Fortunately most problems can be easily fixed by a qualified electrician.

  • Can you recover unsaved documents after the application shuts down

    I just finished editing a previously saved 5 page rough draft and i was trying to add a header before i saved my changes and then the Pages application shut down. Now after 3 hours of editing, all of my changes are now deleted. Is there any way to recover an unsaved document? Is there like a temporary storage file or autosave file I can access? My paper is due tomorrow so any responses would be greatly appreciated.

    You haven't said what version of Pages on what version of OSX but since OSX 10.7 they all require you to save the first time to create the named file that all subsequent versions will be saved to.
    https://www.macupdate.com/app/mac/29454/foreversave-lite
    Will prompt you to save the first time and then save at set intervals.
    Apple as usual has created a novel auto-saving and versioning system that falls at the first hurdle.
    It should save a temporary file in Documents with a unique System tag, or the first line of the document, if you haven't saved within 5 minutes of opening it.
    Then if you chose to not Save, move that copy to the Trash.
    Finally to give you a 3rd chance to recover, let you reopen the unsaved document from the Recent menu, returning the temporary file from the Trash.
    This would cover the usual human behavioral problems. People tend to get into their work and forget to do the mundane things like Save until too late. It is easy to hit Don't Save when that pops up either by misclicking, or out of some long standing habit. Only thinking about it after the event.
    Peter

  • How do i close all apps before shutting down-Ipad

    How do I close down all apps before shutting down iPad?

    Click the Home button once to display your Home Screens. Double click the Home button. That should display your open apps at the bottom of the screen. Press one of those icons until they wiggle and a red dot with an "x" appears appears on each icon. Press the red dot to close down each app. Press the Home button when all apps are closed. You may need to press the Home button again to get back to the normal Home Screen display.

Maybe you are looking for

  • WebLogic is better than OAS

    WebLogic is better than OAS. What does this mean if we are running only Forms and Reports ? Is WebLogic using less RAM + processor for the same amount of work ? If yes, could we think of a percent ( 10-20 % less ) ? Is WebLogic better only for Java s

  • Route calls to two different CSQs, but show single set of Service Level stats on report

    We have a single node UCCX 9.0.2 Premium environment to handle our ACD operations.  Our agents take inbound customer service, claims and sales calls for a few dozen of our clients.  All of these calls are currently taken by the same two teams of peop

  • AddChild + "export in first frame" unchecked

    Hi all, i've got this problem that i can't figured out. i've tried google and adobe website, but no luck. i guess the people here could help me this is about addchild and export in first frame. i wanna call an object from my library. in its linkage o

  • How to make a window disable/enable in run time in webdynpro application

    Hi all, 1) my requirement is in run time i want to make the content of a window in disable mode? 2)  and again it should display in enable mode when we perform some action? thanks & regards naveen Moderator Message: This has been covered numerous tim

  • Revenue from post-capitalization from transaction ABNAN

    I am working for a local governmental entity, and I am trying to add assets to our system that should have been recognized as acquisitons in previously closed fiscal years. I understand that the transaction I should be using is ABNAN, post-capitaliza