[SOLVED]Xmonad bitmap workspace names not working?

I don't have a great deal of space on my screen, so I thought I'd save some by using icons instead of names for my workspaces. I have written my xmonad.hs as closely to every example I've found without redoing my entire xmonad.hs and it still puts '^p(5)^i(/home/nfarley88/.dzenicons/terminal.xbm)^p(5)' instead of the actual bitmap for the workspace title!
import XMonad
import XMonad.Prompt
import XMonad.Prompt.Shell
import XMonad.Prompt.Man
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Util.Run(spawnPipe)
import XMonad.Util.EZConfig
import XMonad.Hooks.UrgencyHook
import XMonad.Layout
import XMonad.Layout.Grid
import XMonad.Layout.Accordion
import XMonad.Layout.Tabbed
import XMonad.Layout.PerWorkspace
import XMonad.Layout.NoBorders
import XMonad.Layout.IM
import XMonad.Layout.Named
import XMonad.Actions.CycleWS
import XMonad.Actions.MouseGestures
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import Data.Ratio ((%))
import Graphics.X11.Xlib
--import XMonad.Actions.NoBorders
import System.IO
fgColor = "#FF0000"
bgColor = "#000000"
wrapBitmap bitmap = "^p(5)^i(" ++ myBitmapsPath ++ bitmap ++ ")^p(5)"
w1 = wrapBitmap ".dzenicons/terminal.xbm"
w2 = wrapBitmap ".dzenicons/terminal.xbm"
w3 = wrapBitmap ".dzenicons/terminal.xbm"
terminality = (myWorkspaces !! 0)
internet = (myWorkspaces !! 1)
instantmessaging = (myWorkspaces !! 2)
myWorkspaces :: [String]
myBitmapsPath = "/home/nfarley88/"
myWorkspaces = clickable . (map dzenEscape) $ [ w1, w2, w3 ]
where clickable l = [ "^ca(1,xdotool key super+" ++ show (n) ++ ")" ++ ws ++ "^ca()" |
(i,ws) <- zip [1..] l,
let n = i ]
wrapBitmap bitmap = "^p(5)^i(" ++ myBitmapsPath ++ bitmap ++ ")^p(5)"
myManageHook = composeAll
[ className =? "Chromium" --> doShift internet
, className =? "Firefox" --> doShift internet
, className =? "Pidgin" --> doShift instantmessaging
--, appName =? "Buddy List" --> doFloat
--, manageDocks
myLayoutHookinternet = named "Tabbed" (noBorders tabs)
||| noBorders Full
||| Mirror tiled
||| tiled
where
tabs = tabbedBottom shrinkText oxyDarkTheme
-- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio -- see how there's 3 arguments to "Tall"
-- The default number of windows in the master pane
nmaster = 1
-- Default proportion of screen occupied by master pane
ratio = 1/2
-- Percent of screen to increment by when resizing panes
delta = 3/100
oxyDarkTheme = defaultTheme { inactiveBorderColor = "#aaaaaa"
, activeBorderColor = "#000000"
, activeColor = "#000"
, inactiveColor = "#000000"
, inactiveTextColor = "#aaaaaa"
, activeTextColor = "red"
, fontName = "xft:nu-8"
, decoHeight = 8
, urgentColor = "#ffff00"
, urgentTextColor = "#63b8ff"
myLayoutHook = avoidStruts $ terminal $ www $ instantmessage $ layoutHook defaultConfig
where
terminal = onWorkspace terminality ( Grid ||| Full)
www = onWorkspace (myWorkspaces !! 1) ( avoidStruts $ myLayoutHookinternet )
instantmessage = onWorkspace instantmessaging (withIM (1%7) sidepanel (Mirror (GridRatio (1/1))))
where
sidepanel = (ClassName "Pidgin") `And` (Role "buddy_list") `And` (Not (Role "convsersation")) --(Title "Buddy List")
myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList $
[ ((modm, button1), (\w -> focus w >> mouseMoveWindow w
>> windows W.shiftMaster))
, ((modm, button2), (\w -> focus w >> windows W.shiftMaster))
, ((modm, button3), (\w -> focus w >> mouseResizeWindow w
>> windows W.shiftMaster))
myStatusBar = "dzen2 -x '0' -y '0' -h '16' -w '590' -ta 'l' -fg '#FFFFFF' -bg '#000000' -fn '-misc-fixed-*-*-*-*-12-*-*-*-*-*-*-*'"
conkyStatsBar = "conky -c .conkyrc_console | dzen2 -x '590' -y '0' -h '16' -w '485' -ta 'r' -fg '#FFFFFF' -bg '#000000' -fn '-misc-fixed-*-*-*-*-12-*-*-*-*-*-*-*'"
conkyClockBar = "conky -c .conkyrc_clock | dzen2 -x '1075' -y '0' -h '16' -w '120' -ta 'r' -fg '#FFFFFF' -bg '#000000' -fn '-misc-fixed-*-*-*-*-12-*-*-*-*-*-*-*'"
myLogHook h = defaultPP
ppCurrent = wrapFgBg "#3EB5FF" "black" -- . pad
--, ppVisible = dzenColor "white" "black" . pad
--, ppHidden = dzenColor "white" "black" . pad
--, ppHiddenNoWindows = dzenColor "#444444" "black" . pad
, ppUrgent = wrapBg myUrgentWsBgColor--dzenColor "red" "yellow" -- . pad
, ppWsSep = "^bg(" ++ myBgBgColor ++ ")^r(1,15)^bg()"
, ppSep = " | "
, ppTitle = (\x -> " " ++ wrapFg myTitleFgColor x) --("" ++) . dzenColor "white" "black" . dzenEscape
, ppOutput = hPutStrLn h
where
wrapFgBg fgColor bgColor content= wrap ("^fg(" ++ fgColor ++ ")^bg(" ++ bgColor ++ ")") "^fg()^bg()" content
wrapFg color content = wrap ("^fg(" ++ color ++ ")") "^fg()" content
wrapBg color content = wrap ("^bg(" ++ color ++ ")") "^bg()" content
wrapBitmap bitmap = "^p(5)^i(" ++ myBitmapsPath ++ bitmap ++ ")^p(5)"
myTitleFgColor = "#FF0000"
myBgBgColor = "#00FF00"
myUrgentWsBgColor = "#00FF00"
main = do
--xmproc <- spawnPipe "/usr/bin/xmobar /home/nfarley88/.xmobarrc"
workspaceBar <- spawnPipe myStatusBar
spawn conkyStatsBar
spawn conkyClockBar
xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
{ --workspaces = ["terminality", "internet", "IM", "4", "5", "6", "7", "8"]
workspaces = myWorkspaces
, manageHook = manageDocks <+> myManageHook <+> manageHook defaultConfig
, layoutHook = myLayoutHook
, logHook = dynamicLogWithPP $ myLogHook workspaceBar
, modMask = mod4Mask --rebind Mod to the Windows key
, terminal = "urxvt"
, focusedBorderColor = "#000000"
--, mouseBindings = myMouseBindings
} --`additionalMouseBinding`
--[ ((mod4Mask .|. shiftMask, button3), mouseGesture gestures)
`additionalKeys`
[ ((mod4Mask .|. shiftMask, xK_z), spawn "xscreensaver-command -lock")
, ((controlMask, xK_Print), spawn "sleep 0.2; scrot -s")
, ((0, xK_Print), spawn "scrot")
, ((mod4Mask, xK_u), focusUrgent )
, ((mod4Mask , xK_b ), sendMessage ToggleStruts)
, ((mod4Mask .|. shiftMask, xK_r), spawn "killall conky dzen2 && xmonad --recompile && xmonad --restart")
-- Application launching keys
, ((mod4Mask , xK_p ), spawn "dmenu_run")
, ((mod4Mask , xK_g ), spawn "chromium")
, ((mod4Mask , xK_f ), spawn "firefox")
, ((mod4Mask , xK_i ), spawn "pidgin")
] `additionalKeysP`
[ ("<XF86Calculator>", toggleWS)
The conky dzen has icons working. I cannot understand why it's not working!
Any help would be greatly appreciated.
PS some of the options are a bit strange (colour choices and such); I have some odd ones so I know what affects what.
Last edited by Rubbishbook (2011-08-20 00:15:52)

I've fixed it! A combination of https://bbs.archlinux.org/viewtopic.php?id=108968 and http://pastebin.com/hXD9YDRW. For reference, here are the bits that changed:
myWorkspaces :: [String]
myBitmapsPath = "/home/nfarley88/"
myWorkspaces = clickable $ [ " ^i(/home/nfarley88/.dzenicons/terminal.xbm) ", " ^i(/home/nfarley88/.dzenicons/internet.xbm) ", " ^i(/home/nfarley88/.dzenicons/im.xbm) " ]
where clickable l = [ "^ca(1,xdotool key super+" ++ show (n) ++ ")" ++ ws ++ "^ca()" |
(i,ws) <- zip [1..] l,
let n = i ]
wrapBitmap bitmap = "^p(5)^i(" ++ myBitmapsPath ++ bitmap ++ ")^p(5)"
and
myLogHook h = defaultPP
{ ppOutput = hPutStrLn h
, ppSep = ""
, ppWsSep = ""
, ppCurrent = wrap "^fg(#ffffff)^bg(#60a0c0)" "^fg()^bg()"
, ppUrgent = wrap "^fg(#ffffff)^bg(#aff73e)" "^fg()^bg()"
, ppVisible = wrap "^fg(#b8bcb8)^bg(#484848)" "^fg()^bg()"
, ppHidden = wrap "^fg(#b8bcb8)^bg(#484848)" "^fg()^bg()"
, ppHiddenNoWindows = wrap "^fg(#484848)^bg(#000000)" "^fg()^bg()"
, ppTitle = wrap "^fg(#9d9d9d)^bg(#000000)" "^fg()^bg()" . wrap "" " ^fg(#a488d9)>^fg(#60a0c0)>^fg(#444444)>"
, ppLayout = wrap "^fg(#60a0c0)^bg(#000000)" "^fg()^bg()"

Similar Messages

  • Display as Key and Name Not working properly after upgrade to Bi7.0

    Hi Bw Guru's
    Recently we have upgrade our BW 3.5 system to BI 7.0 (Only system upgrade not applications ).
    after the upgrade we are facing lot of issues with Bex Analyzer. The following are some of the issues
    1) In BW3.5 after the execution of Workbook or query ,we can convert to local currency .
       Right click on workbook -> Currency translation-> Database currency .
        but after upgrade to BI7.0 this is not working ..
    2) Characterstic Right click on workbook Dispaly as Key and Name is also not working ..
    I know that Currency translation in BI7.0 works in different way compare to BW3.5 .we can use alternate option like By Target Currency from Database currency to convert to local currency and it is working fine in Bex,but businesss users want more friendly way ...because to select the above option they have to enter local currency and rate type ...
    Do you we have any notes available for the above solutions ..?Do we need to upgrade Bex version also..?Is there any document which describe how the above things works after system upgraded to BI7.0?
    Please suggest me..
    Thanks in advance
    Shu Moh.

    Dear Harita
    The first issue Currency translation in query or workbook is solved with SAP note 1119549.For second issue we have not found solution until now ,Once we find the solution we will update you..
    Shu Moh

  • Local Admin add with GPP netbios name not working

    I am trying to add domain users to be a local admin on certain machines. This however is not working with some machines critereria of the GPP.
    For example: there is a GPP who adds the administrator to the local admin and deletes the ones already there. Then there follows a few other users with criteria: member of the security group laptopusers or other security groups. Also have added a user and
    the criteria is netbios name of the computer. The member was immediatly added after a restart of that client.
    There is also a group in AD and added members to that group that are local admin on every machine so there is no criteria. This is working fine. WHen i add all users to this group all users are local admin everywhere. Was tested.
    However i have several users that do not be added to the local admin when the criteria is: netbiosname is ... Although when i give the command on the client: ipconfig /all the netbios name is exactly the same.
    Looked in the winlog and it looks like a problem with the machines names or usernames. But how to solve it?
    Which other cirteria i can use to add a member to local admin on a specific machine.
    The GPP is beneath the computer preference and in AD beneath a computer OU.
    freddie

    > the command nbtstat -n givves also the name as i gave in in the criteria
    > of the GPP.
    >
    > With Winlog i mean: set the gpo logging so that in a file the errors
    > appearing for the group policy applied. However there is not much to see
    > in case of this...
    Ok :) I know that these GPP debug logs are kind of "insufficient" in
    terms of debugging ILT filtering issues, because there's absolutely
    nothing about the filter evaluation in them...
    In a quick test I ran right now, it worked without a problem. So it
    seems you most probably will be out of luck in this forum, because it is
    not a general issue.
    BTW: Did you type in the name or did you select it through the object
    picker button ("...")? Maybe this filter is case sensitive?
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))
    I jhave give in the name and then check name so he gets the name from AD. I have done that again to see if it works now. The strange thing is that it works well on some systems and not for some other systems...
    freddie

  • [SOLVED] MSI GT70 keyboard buttons not working

    Hi! I am a normal user of computers that like games, so I bought this awesome notebook MSI GT70 i7 16gb ram GTX 675MX 128ssd+750hdd, with a keyboard by steelseries.
    Everything was ok, using the notebook as came when I bought, with OS windows 8, with no format nor modifications by me, using it since January 2013.
    The problem is that about 1 or 2 weeks some shortcuts of keyboard arent working anymore:
    - Wifi button isn't working and isn't becoming orange when pressed, and Fn+F8 isn't working either;
    - Screen shutdown button is becoming orange when pressed but not working;
    - Cd-dvd eject button is becoming orange when pressed but not working;
    - I tried also Fn+F9 and Fn+F12 shortcuts, and I think they arent working either.
    At the same time, the Cooler button and the Backlight's Keyboard button are working correctly. Turbo button maybe is working too but I don't know if something become overclock when I activate it.
    I would really appreciate some help, since I love my notebook very much, and I hope it's not a hard problem to solve.
    Thanks!

    Quote from: flobelix on 10-July-13, 00:47:56
    Try resetting EC: >>How to reset the EC (Embedded Controller)<<
    If that doesN't help uinstall SCM and after reboot install latest version: http://www.msi.com/service/download/utility-19670.html
    Also try updating .Net Framework 4.5: http://www.microsoft.com/en-us/download/details.aspx?id=36377
    Hi,
    I followed your advice:
    1. uninstalled SCM, restarted
    2. installed SCM, restarted
    3. tried to update .net framework, had it already
    4. resat the EC
    But unfortunately it did not change my GE60 2OC's behaviour: when i press the back-light button it opens my browser with dragoonarmy/msi.com>/ BUT NO LIGHT.
    Do anybody have a suggestion to solve this??
    Thanks Kurt

  • [SOLVED] Suspend to ram / disk not working in newer kernels

    Hi all,
    this puzzles me for a while:
    My desktop system was able to suspend to ram / disk flawlessly in older kernels. It stopped working with 3.3. The suspend seems to work, the machine goes to standby. But when I try to resume, the machines is on but the screen stays black. Neither the console is working nor can I ssh into it. Only hard reset gets me out here
    I did investigate and found many tips and hints which all led to nowhere. I even changed my filesystem back from btrfs to ext4 and my VGA module from proprietary nvidia to nouveau.
    When this all failed I got to the idea to burn several install disks. One of the official 2011.08.19 (kernel 3.0.3) and one of the snapshots 2012.06.05_04-00-01 (kernel 3.3.7) and 2012.07.17_04-00-01 (kernel 3.4.4). I guess these can not be compromised by some hosed installation. I started one by one and issued the follwing command:
    echo mem > /sys/power/state
    which suspends the machine successfully in all three cases. With 2011.08.19 the resume is working but the other two fail. Some more info about the hardware:
    1. lspci output
    harvey@obelix ~ $ lspci
    00:00.0 Host bridge: Intel Corporation Core Processor DMI (rev 11)
    00:03.0 PCI bridge: Intel Corporation Core Processor PCI Express Root Port 1 (rev 11)
    00:05.0 PCI bridge: Intel Corporation Core Processor PCI Express Root Port 3 (rev 11)
    00:08.0 System peripheral: Intel Corporation Core Processor System Management Registers (rev 11)
    00:08.1 System peripheral: Intel Corporation Core Processor Semaphore and Scratchpad Registers (rev 11)
    00:08.2 System peripheral: Intel Corporation Core Processor System Control and Status Registers (rev 11)
    00:08.3 System peripheral: Intel Corporation Core Processor Miscellaneous Registers (rev 11)
    00:10.0 System peripheral: Intel Corporation Core Processor QPI Link (rev 11)
    00:10.1 System peripheral: Intel Corporation Core Processor QPI Routing and Protocol Registers (rev 11)
    00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1a.1 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1a.2 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1a.7 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06)
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 06)
    00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 06)
    00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 06)
    00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1d.1 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1d.2 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1d.3 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB Universal Host Controller (rev 06)
    00:1d.7 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a6)
    00:1f.0 ISA bridge: Intel Corporation 5 Series Chipset LPC Interface Controller (rev 06)
    00:1f.2 IDE interface: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA IDE Controller (rev 06)
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 06)
    00:1f.5 IDE interface: Intel Corporation 5 Series/3400 Series Chipset 2 port SATA IDE Controller (rev 06)
    01:00.0 VGA compatible controller: NVIDIA Corporation G84 [GeForce 8600 GT] (rev a1)
    02:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03)
    03:00.0 SATA controller: JMicron Technology Corp. JMB363 SATA/IDE Controller (rev 02)
    03:00.1 IDE interface: JMicron Technology Corp. JMB363 SATA/IDE Controller (rev 02)
    04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)
    3f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-Core Registers (rev 04)
    3f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 04)
    3f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 04)
    3f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 04)
    3f:03.0 Host bridge: Intel Corporation Core Processor Integrated Memory Controller (rev 04)
    3f:03.1 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Target Address Decoder (rev 04)
    3f:03.4 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Test Registers (rev 04)
    3f:04.0 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 0 Control Registers (rev 04)
    3f:04.1 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 0 Address Registers (rev 04)
    3f:04.2 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 0 Rank Registers (rev 04)
    3f:04.3 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers (rev 04)
    3f:05.0 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 1 Control Registers (rev 04)
    3f:05.1 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 1 Address Registers (rev 04)
    3f:05.2 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 1 Rank Registers (rev 04)
    3f:05.3 Host bridge: Intel Corporation Core Processor Integrated Memory Controller Channel 1 Thermal Control Registers (rev 04)
    2. lsmod output of 2012.07.17_04-00-01:
    harvey@obelix ~ $ lsmod
    Module Size Used by
    fuse 68768 0
    tun 15297 0
    rfcomm 33627 8
    bnep 8793 2
    nfsd 246714 2
    exportfs 3665 1 nfsd
    btusb 11764 0
    joydev 9991 0
    bluetooth 190551 22 bnep,btusb,rfcomm
    rfkill 15604 2 bluetooth
    snd_hda_codec_realtek 60409 1
    snd_hda_intel 24053 3
    snd_hda_codec 94305 2 snd_hda_codec_realtek,snd_hda_intel
    microcode 12185 0
    i7core_edac 17477 0
    snd_hwdep 6300 1 snd_hda_codec
    i2c_i801 8180 0
    iTCO_wdt 12813 0
    snd_pcm 74958 2 snd_hda_codec,snd_hda_intel
    r8169 49386 0
    coretemp 5654 0
    edac_core 36656 3 i7core_edac
    iTCO_vendor_support 1929 1 iTCO_wdt
    serio_raw 4653 0
    pcspkr 1899 0
    snd_page_alloc 7185 2 snd_pcm,snd_hda_intel
    snd_timer 18966 1 snd_pcm
    mii 4123 1 r8169
    snd 58997 12 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 5410 1 snd
    acpi_cpufreq 5933 0
    mperf 1235 1 acpi_cpufreq
    evdev 9754 4
    processor 26567 1 acpi_cpufreq
    vboxnetadp 18387 0
    vboxnetflt 16743 0
    vboxdrv 1791382 2 vboxnetadp,vboxnetflt
    nfs 276056 1
    nfs_acl 2359 2 nfs,nfsd
    lockd 62987 2 nfs,nfsd
    auth_rpcgss 32327 2 nfs,nfsd
    sunrpc 184998 12 nfs,nfsd,auth_rpcgss,lockd,nfs_acl
    fscache 41059 1 nfs
    aes_x86_64 7508 64
    cryptd 8741 0
    aes_generic 26138 1 aes_x86_64
    xts 3101 32
    gf128mul 6050 1 xts
    dm_crypt 16496 4
    dm_mod 70918 9 dm_crypt
    sr_mod 14823 0
    cdrom 35648 1 sr_mod
    hid_logitech 16560 0
    ff_memless 4690 1 hid_logitech
    usbhid 36430 1 hid_logitech
    hid 85285 2 hid_logitech,usbhid
    sd_mod 29239 7
    pata_jmicron 2480 0
    usb_storage 44760 0
    pata_acpi 3408 0
    ata_piix 23160 5
    crc32c_intel 1987 0
    ahci 20549 0
    libahci 20023 1 ahci
    ata_generic 3295 0
    libata 167611 6 ahci,pata_acpi,libahci,ata_generic,ata_piix,pata_jmicron
    scsi_mod 132974 4 usb_storage,libata,sd_mod,sr_mod
    uhci_hcd 23372 0
    xhci_hcd 81440 0
    ehci_hcd 40994 0
    usbcore 147533 8 btusb,uhci_hcd,usb_storage,ehci_hcd,usbhid,xhci_hcd
    usb_common 954 1 usbcore
    floppy 58615 0
    nouveau 784289 3
    button 4502 1 nouveau
    video 11307 1 nouveau
    mxm_wmi 1425 1 nouveau
    wmi 8475 2 mxm_wmi,nouveau
    i2c_algo_bit 5391 1 nouveau
    drm_kms_helper 33051 1 nouveau
    ttm 64288 1 nouveau
    drm 208926 5 ttm,drm_kms_helper,nouveau
    i2c_core 20369 5 drm,i2c_i801,drm_kms_helper,i2c_algo_bit,nouveau
    ext4 424175 4
    crc16 1359 2 ext4,bluetooth
    jbd2 73919 1 ext4
    mbcache 5977 1 ext4
    3. /var/log/pm-suspend.log of a not working suspend
    Initial commandline parameters:
    Tue Jul 17 11:21:18 CEST 2012: Running hooks for suspend.
    Running hook /usr/lib/pm-utils/sleep.d/00logging suspend suspend:
    Linux obelix 3.4.5-1-ARCH #1 SMP PREEMPT Mon Jul 16 21:35:54 CEST 2012 x86_64 GNU/Linux
    Module Size Used by
    rfcomm 33627 8
    bnep 8793 2
    nfsd 246714 2
    exportfs 3665 1 nfsd
    ext4 424175 3
    jbd2 73919 1 ext4
    mbcache 5977 1 ext4
    btusb 11764 0
    bluetooth 190551 22 bnep,btusb,rfcomm
    crc16 1359 2 ext4,bluetooth
    joydev 9991 0
    rfkill 15604 2 bluetooth
    snd_hda_codec_realtek 60409 1
    microcode 12185 0
    coretemp 5654 0
    serio_raw 4653 0
    snd_hda_intel 24053 5
    snd_hda_codec 94305 2 snd_hda_codec_realtek,snd_hda_intel
    pcspkr 1899 0
    snd_hwdep 6300 1 snd_hda_codec
    snd_pcm 74958 3 snd_hda_codec,snd_hda_intel
    snd_page_alloc 7217 2 snd_pcm,snd_hda_intel
    r8169 49386 0
    i7core_edac 17477 0
    snd_timer 18966 1 snd_pcm
    edac_core 36656 3 i7core_edac
    mii 4123 1 r8169
    snd 58997 15 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    iTCO_wdt 12813 0
    i2c_i801 8180 0
    soundcore 5410 1 snd
    iTCO_vendor_support 1929 1 iTCO_wdt
    acpi_cpufreq 5933 0
    mperf 1267 1 acpi_cpufreq
    evdev 9754 4
    processor 26567 1 acpi_cpufreq
    vboxnetadp 18387 0
    vboxnetflt 16743 0
    vboxdrv 1791382 2 vboxnetadp,vboxnetflt
    nfs 276056 1
    nfs_acl 2359 2 nfs,nfsd
    lockd 62987 2 nfs,nfsd
    auth_rpcgss 32327 2 nfs,nfsd
    sunrpc 184998 12 nfs,nfsd,auth_rpcgss,lockd,nfs_acl
    fscache 41059 1 nfs
    btrfs 710578 1
    libcrc32c 1002 1 btrfs
    zlib_deflate 20436 1 btrfs
    aes_x86_64 7508 64
    cryptd 8741 0
    aes_generic 26138 1 aes_x86_64
    xts 3101 32
    gf128mul 6050 1 xts
    hid_logitech 16560 0
    ff_memless 4690 1 hid_logitech
    dm_crypt 16496 4
    dm_mod 70918 9 dm_crypt
    sr_mod 14823 0
    cdrom 35648 1 sr_mod
    usbhid 36430 1 hid_logitech
    usb_storage 44760 0
    hid 85285 2 hid_logitech,usbhid
    sd_mod 29239 7
    pata_jmicron 2480 0
    pata_acpi 3408 0
    ata_piix 23160 5
    ata_generic 3295 0
    uhci_hcd 23404 0
    crc32c_intel 1987 1
    ahci 20549 0
    libahci 20023 1 ahci
    libata 167611 6 ahci,pata_acpi,libahci,ata_generic,ata_piix,pata_jmicron
    xhci_hcd 81472 0
    ehci_hcd 41026 0
    scsi_mod 132974 4 usb_storage,libata,sd_mod,sr_mod
    usbcore 147565 8 btusb,uhci_hcd,usb_storage,ehci_hcd,usbhid,xhci_hcd
    usb_common 954 1 usbcore
    floppy 58615 0
    nouveau 784321 3
    button 4502 1 nouveau
    video 11307 1 nouveau
    mxm_wmi 1425 1 nouveau
    wmi 8475 2 mxm_wmi,nouveau
    i2c_algo_bit 5391 1 nouveau
    drm_kms_helper 33051 1 nouveau
    ttm 64320 1 nouveau
    drm 208958 5 ttm,drm_kms_helper,nouveau
    i2c_core 20369 5 drm,i2c_i801,drm_kms_helper,i2c_algo_bit,nouveau
    total used free shared buffers cached
    Mem: 8173500 884060 7289440 0 3764 405872
    -/+ buffers/cache: 474424 7699076
    Swap: 8386556 0 8386556
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub suspend suspend:
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
    Running hook /etc/pm/sleep.d/90alsa suspend suspend:
    /etc/pm/sleep.d/90alsa suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock suspend suspend:
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led suspend suspend:
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:
    Kernel modesetting video driver detected, not using quirks.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/99video suspend suspend:
    kernel.acpi_video_flags = 0
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
    Tue Jul 17 11:21:18 CEST 2012: performing suspend
    This seems to be a kernel bug. Any input?
    Harvey
    Last edited by Harey (2012-08-06 13:51:49)

    Another life-sign. The issue is still unsolved but I've come a little further. It seems to be a combination of more failures. The first one is USB hardware. I have a usb keyboard-mouse combo from Logitech (comfort cordless desktop). The USB bus does not wake up correctly when resuming from suspend. So my keyboard is unsuable. I put in a file /etc/pm/sleep.d/20_custom-ehci_hcd with the following content:
    BUSES="0000:00:1a.7 0000:00:1d.7"
    case "${1}" in
    hibernate|suspend)
    # Switch USB buses off
    for bus in $BUSES; do
    echo -n $bus | tee /sys/bus/pci/drivers/ehci_hcd/unbind
    done
    resume|thaw)
    # Switch USB buses back on
    for bus in $BUSES; do
    echo -n $bus | tee /sys/bus/pci/drivers/ehci_hcd/bind
    done
    esac
    The bus IDs were taken from /sys/bus/pci/drivers/ehci_hcd
    When I start pm-suspend from a console (no X started) this seems to reanimate my keyboard while the screen stays black (with backlight on). I can type and reboot. Also I can ssh into the machine from my laptop.
    Concerning the blank screen there seems to be a bug in both the proprietary nvidia modules as well as the nouveau driver. The nvidia folks have issued a new beta driver which seems to at least minimize the failures. This all concerns the nv50-family of nvidias cards. I have a GF8600GT which is one of these
    I'll wait for this driver and then restart my testing. Until then - no suspend/hibernate
    EDIT: Today's nvidia 304.32 is solving my issues - I can sleep again
    Harvey
    Last edited by Harey (2012-08-06 13:52:51)

  • [Solved] ar9170usb loaded but WIFI not working

    Hi,
    I bought today my new USB WIFI adapter (TP-Link TL-WN822N), but its not working.
    ar9170usb module is loaded correctly, but wlan0 doesnt.
    dmesg| grep ar9170usb
    [ 3.007214] usbcore: registered new interface driver ar9170usb
    lsmod | grep ar9170usb
    ar9170usb 49413 0
    mac80211 211662 5 ar9170usb,carl9170,rt2800lib,rt2x00usb,rt2x00lib
    ath 14355 2 ar9170usb,carl9170
    cfg80211 146369 5 ar9170usb,carl9170,rt2x00lib,mac80211,ath
    usbcore 142192 9 ar9170usb,carl9170,rt2800usb,rt2x00usb,rt2870sta,usbhid,xhci_hcd,ehci_hcd
    lsusb
    Bus 001 Device 003: ID 0cf3:1002 Atheros Communications, Inc. TP-Link TL-WN821N v2 [Atheros AR9001U-(2)NG]
    Any ideas?
    Last edited by nexxx (2011-08-08 07:23:16)

    Solved my problem by blacklisting "carl9170", so only "ar9170usb" module is loaded.
    Blacklisting "ar9170usb" did not work here!
    Thanks
    EDIT:
    After update to Kernel 3.0 the ar9170usb module was removed. Now its not working anymore.
    When i load the carl9170 module,  it says
    [    2.979833] usb 3-1: firmware not found.
    Do I need any additional firmware?
    Last edited by nexxx (2011-08-08 07:19:49)

  • 'Sort by last name' not working in Address Book

    In Address book, the 'sort' function (under preferences-General) does not work for half my contacts (all people rather than companies). This does not work for 'by first name', nor 'by last name'. This random list appears at the top of address book, followed by properly sorted entries.
    Curiously, the most recently inputted entries do sort properly, as do all company entries.
    On MobileMe, everything sorts properly
    On my iPhone address book, the same problem, except the random unsorted list now appears after the properly sorted entries (under the category #)
    Is there any reason why this is happening, and any fix for this?

    Curiously, the most recently inputted entries do sort properly, as do all company entries.
    Does that mean "most recently inputted" AFTER you upgraded to Snow Leopard?
    If that is true, it would mean that something about your existing records before the upgrade, for the records that are people contacts (with first and last names) instead of business contacts, do not agree with Snow Leopard and/or Snow Leopard's version of Address Book.
    This may not be feasible, but if you exported the records with this problems and then imported them, maybe they will be re-inputted so that are properly sorted.
    If you use Time Machine, maybe you can use the +flying through space+ interface to restore one of the records with this problem to see if the restore process makes the record sort properly.

  • [SOLVED] search just package name (not description) with yaourt

    Is there a way to search just package names (not package descriptions) with yaourt or pacman?  I'm imagining something like this:
    $ yaourt  -Ss  --pkgname-only  xterm
    Thanks!
    Last edited by partner55083777 (2010-02-03 16:30:43)

    My question still stands as to how I can search just package names.  If it is using another program other than yaourt or pacman, that is okay.
    "yaourt -Ss SEARCH_STRING" has been working as stated in the documentation for me (with yaourt-0.9.2.6).  It will return all packages that have SEARCH_STRING in either the package name or package description.
    Here are the first three results when running this command:
    $ yaourt -Ss emacs
    extra/emacs 23.1-3 [installed]
         The Emacs Editor
    extra/snd 10.1-1
         Snd is the emacs of sound editor
    extra/texmacs 1.0.7-3
         GNU TeXmacs is a free scientific text editor, which was both inspired by TeX
         and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, GTybalt,
         Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one.
    $
    It looks like it works as specified in the man pages:
    -s, --search <'regexp'>
               This will search each package in the sync databases for names or descriptions that match regexp.
               When you include multiple search terms, only packages with descriptions matching ALL of those terms will be returned.
    Last edited by partner55083777 (2010-02-02 22:10:24)

  • I have webcam and screen names not working on certain sites but OK on Explorer what can it be on Firefox.All worked up till Decembeber 2011 ...Thanks

    Question
    I have webcam not working and screen names not remembered on certain sites but OK on Internet Explorer.
    What can it be on Firefox?
    It's like cookies are turned off or something blocking.
    Even banking online is affected.
    All worked up until December 2011 ...Thanks
    Don
    [email protected]

    Okay- this is getting more fun-- I just system restored to a
    month ago because my computer froze up 5 times withing 15 minutes
    earlier today. Then I uninstalled and reinstalled Firefox because I
    noticed it was listed twice in my add and remove programs area. Now
    I go to youtube to see if by some miracle the beta page is
    working-- well not only did it not work, but now, even if I disable
    Norton, it STILL doesn't work, where as before that did make the
    videos show up. I'd really appreciate some help...

  • DocRef.name not working in Snow Leopard

    I have been using this script fot sometime to add the Image Name/number to my images, so customers can see them on the images. But today, i noticed that my numbers are not working.
    all of the sudden it will take the image name and leave off the last number, so it should show the document name/number and its wrong.
    like the images are named..
    8290-020.jpg and it shows 8290-020.jpg
    8290-021.jpg and it shows 8290-021.jpg
    8290-022.jpg and it shows 8290-02.jpg
    8290-023.jpg and it shows 8290-02.jpg
    8290-024.jpg and it shows 8290-02.jpg
    then next time i will run it and get different results...
    Can anyone look at this script and tell me why it doesn't work now and how to fix it? i'm using the latest version of Snow Leopard and PS CS3.  thanks in advance...
    if ( documents.length > 0 )
    This script will add copyright information and filename on a text layer
    // set units to pixels
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    try
    // add art layer
    var docRef = activeDocument;
    var artLayerRef = docRef.artLayers.add();
    artLayerRef.kind = LayerKind.TEXT;
    // ============= Personalize your values in the section below ============
    // Copyright info © Leif Photography
    var myCopyrightText = " ";
    // select opacity
    artLayerRef.opacity = 100;
    // select the text colour
    var newColour = new SolidColor();
    if (docRef.mode == DocumentMode.CMYK)
    newColour.cmyk.cyan = 255;
    newColour.cmyk.magenta = 255;
    newColour.cmyk.yellow = 255;
    newColour.cmyk.black = 0;
    if (docRef.mode == DocumentMode.RGB)
    newColour.rgb.red = 255;
    newColour.rgb.green = 255;
    newColour.rgb.blue = 255;
    artLayerRef.textItem.color = newColour;
    // select the font name
    artLayerRef.textItem.font = "ArialMT";
    // select the font size
    artLayerRef.textItem.size = 10;
    // select the text position - this can be an absolute value too, eg. (10,20)
    artLayerRef.textItem.position = new Array(docRef.width / 2, docRef.height *0.05);
    // select the text justification
    artLayerRef.textItem.justification = Justification.CENTER;
    // ============= Personalize your values in the section above ============
    // add text item on the art layer
    var textItemRef = artLayerRef.textItem;
    // text contents is copyright info + filename
    textItemRef.contents = myCopyrightText + docRef.name;
    // dereference pointers
    docRef = null;
    artLayerRef = null;
    textItemRef = null;
    myCopyrightText = null;
    newColour = null;
    catch( e )
    // received and error ... throw it back to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "Open a document first." );

    This isn't quite correct! The 'booklet printing' facility was present (and worked - I've just checked it!) in Leopard (10.5); but, as with some other useful functionality, was lost on installing Snow Leopard (10.6).
    I suspect that it is a print driver function and that (since I'm using an HP laserjet) it will be up to HP as to when, or even if, they choose to reinstate this very useful function.
    Come on HP: let's have it please!

  • Ctrl-K check names not work working

    I am running an Outlook 2013 client against a Ex2010 server. 
    One really annoying thing, is that the Check Names  (Ctrl+K) keyboard shortcut is not working. If I manually click the icon it works. Any idea of why this is not Working?

    Hi,
    Did the keyboard shortcut (Ctrl+K) work via OWA?
    In addition, I recommend you refer to the following article and check if there is any helps:
    https://pangea.zendesk.com/entries/22857333-Outlook-Ctrl-K-Helpful-shortcut
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled
    by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best regards,
    Niko
    Niko Cheng
    TechNet Community Support

  • [SOLVED] Lightdm theming (GTK) does not work?

    Hi,
    Silly maybe, but in trying out lightdm(-GTK) to replace gdm, I am unable to change the GTK-theme in /etc/lightdm/lightdm-gtk-greeter.conf.
    I was able to change the background and the font, but the theme, the icon (and maybe cursor) remain the default grey. I have tried using Adwaita, which should be installed together with gnome 3 and I have installed gnome-shell-theme-faience from AUR to try it out. None of them are working.
    Maybe this is related:
    I do seem to have another problem with the user-theme-extension: it was outdated according to extensions.gnome.org, so I removed it with pacman and I installed it via the gnome website. But gnome-tweak-tool keeps telling me there is an error with the extension and I'm not able to set a user theme with that tool...
    Anybody have a clue? The wiki nor the AUR hold much info on this and the web is talking about the unity-greeter mostly...
    Last edited by zenlord (2012-06-18 17:18:07)

    The lack of responses seem to indicate two possibilities:
    1. I'm the only one having a problem, or
    2. This is not a bug - I should theme lightdm-gtk manually.
    In either case: the extension-problem is solved now, so that should not interfere (anymore), and upgrading to the latest lightdm(-gtk-greeter) has not solved the problem...
    Last edited by zenlord (2012-06-05 08:02:40)

  • EPM 11122 to 11123 upgrade issue: Links in Workspace does not work

    Hi John & All,
    We have an existing EPM 11.1.2.2 installed on Linux & windows platforms. This is a planning & HFR domain. Except FDM, Dimension server, HFR all other services are out of Linux server.
    Linux - ServerA (Physical server). However we access all URLs using a different DNS alias ServerC which points to ServerA
    Windows - ServerB
    Followed  http://docs.oracle.com/cd/E40248_01/epm.1112/epm_install/frameset.htm?ch10s05.html for upgrade.
    Installation and configuration went well. We are using Embedded http server. In the final step of web server configuration
    - Did the configure web server with Embedded ( port 28080). It was successful.
    - Then in WL console changed the Listening address to ServerC for all managed servers including Admin server
    - Then using configtool ran the step "configure logical web addresses"
              - Here selected set logical addresses for services individually & then for all services running on ServerA
      (workspace/shared services/aif/aps/datasync/planning/eas/calc)
    set them to ServerC:28080 (DNS alias)
    And for services running on Windows BPMA & FDM set to ServerB:80
    This went through well.
    Started all the services. All WL services came up without issues. CAn login to Workspace & shared services. I can see the look and feel changes and can see all new EPM 11123 icons under "Navigate-->Administer". But when I click on any of the links (Dimension lib/Application lib/planning/Data management etc) all fail with similar error
    "A Not found error occured while communication with server". In show details it says for example...
    URI: http://ServerC:28080/awb/conf/AwbConfig.xml - status 404 not found"
    For each application the error is similar http://ServerC:28080/<context> - status 404 not found
    Obviously the Logical web address set to 28080 is not working. But all the below URLS work fine
    http://serverC:9365/aps/APS
    http://serverC:8300/HyperionPlanning/conf/HspJSConfig.xml
    http://serverC:19091/awb/conf/AwbConfig.xml
    http://serverC:8500/calcmgr/conf/CalcMgrConfig.xml
    http://serverC:19091/awb/conf/AwbConfig.xml
    http://serverC:28080/workspace
    To fix this issues, tried reconfiguring Logical web address to all individual application, this time to correct respective ports where they are listening instead of 28080. As I can see only workspace is working on 28080.
    I can see this new configuration updated in registry. Bounced the domain including Admin server. But the issue persists. For each link, it is still looking for old Logical web URL "http:serverc:28080/<context> instead of picking up new Logical addresses configured.
    Please suggest ways to fix the issue.
    Reagrds
    vara
    HHee

    Issue got resolved after installing OHS instead of using embedded http server. In OHA it gives the flexibility to point to DNS alias.

  • [SOLVED] left column hyperlinks do not work in Firefox

    I created a web page where all the links work perfectly in Dreamweaver viewer, IE, Chrome. In Firefox the links in the left column do not work. Here are the codes and the link:<br />
    <br />
    <pre><nowiki> <p><img src="images/envel.jpg" width="11" height="11" alt="email"/> <a href="mailto:[email protected]" class="emailtext">[email protected]</a> </p>
    <p>&nbsp;</p>
    <p><a href="board.html" title="Our board" >Our board</a></p>
    <p>&nbsp;</p>
    <p><a href="contact.html" title="Contact us" target="_blank">Contact us</a></p>
    <p><a href="membership.html" title="Become a member" target="_blank">Become a member</a></p>
    <p><a href="sponsors.html" title="Donate" target="_blank">Donate</a></p><br />
    </nowiki></pre>
    see www.thatcherteam.com/afg

    Thank you for your answer. I solved he problem last night. The right column was hiding the left column, in giving a smaller width the problem solved.

  • [SOLVED} Suspend to ram does not work (with sleep, s2ram, pm-utils)

    Hi.
    I would like to ask for one thing: i can't suspend to ram or resume from suspend to ram.
    I treid to check over www in order to find some help, some solutions, and how to fix that. Unfortunately, i found these:
    https://forums.opensuse.org/showthread. … 13-2/page2
    https://bugzilla.opensuse.org/show_bug.cgi?id=913105
    https://forums.opensuse.org/showthread. … S-13-1-x64
    Bug 91921 - WD 2TB Caviar black causes hard lock on resume S2RAM
    https://bugzilla.kernel.org/show_bug.cgi?id=91921
    In fact, when i was researching of this problem i wanted to check if my graphic card and memory are failing so a did few changes (removed memory stick and so one) but in doing this i removed almost all of my hard disk drives because i didn't want to hurt them with many reboots or resets.
    What did i find? It is strange, kernel version is not important because i checked most of them.
    I removed 2x2TB Seagate F14 series along with 4x3TB WD Green. Then i checked s2ram, it went to suspend, and resumes correctly. Everything works. I put it to sleep with s2ram -f -a 1. Works
    I attached my 4x3TB WD Green drives. I put computer to sleep with s2ram...it causes hard lock, black screen, i could do only poweroff by powerbutton. s2ram -f -a 1 causes freez. Sometimes, but not constantly, s2ram -f -a 3 -p is being able to suspend...(mostly it does a freez, hard lock computer) but sometimes it is able to put it to a sleep, but resume just freezes everyting - no blinking cursor, no blinking num lock led and so on.
    I know that you would suggest me to check logs - this is the main problem. Logs for pm-suspend works when i suspend or resume without WD drives attached. When i have them connected, i'm not able to check pm-logs because computer hangs, freezes and logs are not being stored/writed to pm-suspend.log and pm-powersave.log.
    Could somebody help? Point me to a solution? I can't check logs because there are not any when freezing occurs. I checked openSuse thread and many others and for other systems there were some kernel fixex, patches.
    They wrote that WD blacks are at fault because they don't have APM. Well, in fact my WD Green have APM with very aggresive factory settings: they park heads over 8 seconds not being used. I disabled it in firmware but disabling it is not the point and not the problem. People have the same problem even with APM and parking heads on other WD drives, i found it that some have it with WD Red's drives and even with very old 320GB WD Blue series - what is more funny, i have 640GB AAKS blue from WD and with this drive i can suspend or resume - APM on this drive is also unavilable, like in Green series because i changed it with wdidle with prebootable cd. I can't  supend or resume with 3TB WD Greens.
    BTW - suspend to disk, with pm-utils and uswsusp works ok, in 100% every time. (i had to add "shutdown method = shutdown" to /etc/suspend.conf from uswsusp package).
    On Windows machine it works. Can suspend, can resume, can hibernate.
    Last edited by firekage (2015-03-07 03:27:28)

    Hm, sometimes i found myself astonished because some things just does not work at all on one machine, while the other one has no problem at all. I was trying to find why suspend to ram won't work at all...and while i was searching i found one topic that was leading to upower dbus. Similar problem with upower i found, by coincidence, on Manjaro forum.
    dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
    this command above returns all the time:
    Error org.freedesktop.DBus.Error.UnknownMethod: Method "Suspend" with signature "" on interface "org.freedesktop.UPower" doesn't exist
    I tried this:
    sudo systemctl enable acpid.service
    sudo systemctl --system daemon-reload
    sudo systemctl restart systemd-logind
    As soon as i enabled and started acpid.service...my supend to ram, from kde, works like a charm, without graphic problem, or freezing.
    There is few question: why on my desktop suspend doesen't work out of the box, when even archwiki says it should? Why on my netbook machine (Acer AOD270) that has the same package installed it works out of the box? Why on my desktop machine acpid.service was not enabled, was not started and was not running while on the notebook it does?
    Anyway...i fixed it by a big coincidence because on Fedora forum somebody has problem with suspend to ram with nvidia GTX750 and this card was new like my card (GTX660). He posted the same problem with upower that i posted in quotes and because of this i found another thing on Manjaro forum and that was it!
    BTW - this problem, i now think, is not related to my WD drives because it works with them. I think that there was another one ugly thing that broke my suspend to ram ability - bios of my motherboard (so called uefi bios with support for old one) has no option for S1-S5 stated (like the previous motherboards had) and only have ASPM...and ASPM is in my opinion broken but i will try to veryfi it one again later.
    Last edited by firekage (2015-03-07 03:29:20)

Maybe you are looking for