SOLVED:Dmenu not launching correctly in Xmonad

I am running xmonad and I am having issues getting the dmenu_run to execute properly. It was working fine before but now it just launches with a white bar and nothing autocompletes. I am running Xmonad 0.9.2-2.1 and dmenu 4.4-1. Here is my entry in xmonad.hs:
, ((modMask, xK_p ), spawn "dmenu_run | dmenu -b")
Also, here is my entire xmonad.hs:
import XMonad hiding (Tall)
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.ManageHelpers
import XMonad.Layout.HintedTile
import XMonad.Layout.LayoutHints (layoutHints)
import XMonad.Prompt
import XMonad.Prompt.Shell
import XMonad.Util.Run(spawnPipe)
import System.Exit
import System.IO
import Data.Monoid
import qualified XMonad.StackSet as W
import qualified Data.Map as M
myBorderWidth = 1
main = do
xmproc <- spawnPipe "/usr/bin/xmobar /home/comhack/.xmobarcc"
xmonad $ defaultConfig {
terminal = "urxvt",
modMask = mod1Mask,
workspaces = ["Net", "Chat", "Work", "4", "5", "6", "7", "8", "9"],
normalBorderColor = "#000000",
focusedBorderColor = "#838B8B",
manageHook = composeOne [isFullscreen -?> doFullFloat],
borderWidth = myBorderWidth,
keys = myKeys,
focusFollowsMouse = True,
layoutHook = myLayout,
logHook = dynamicLogWithPP $ xmobarPP
{ ppOutput = hPutStrLn xmproc,
ppTitle = xmobarColor "green" "" . shorten 60,
ppHiddenNoWindows = xmobarColor "grey" ""
myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
[ ((modMask , xK_Return ), spawn $ XMonad.terminal conf)
, ((modm , xK_backslash ), spawn “amixer -q set Master toggle”)
, ((modm , xK_minus ), spawn “amixer -q set Master 3- unmute”)
, ((modm , xK_equal ), spawn “amixer -q set Master 3+ unmute”)
, ((modMask .|. shiftMask, xK_c ), kill)
, ((modMask , xK_space ), sendMessage NextLayout)
, ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
, ((modMask , xK_n ), refresh)
, ((modMask, xK_p ), spawn "dmenu_run | dmenu -b")
, ((modMask , xK_Tab ), windows W.focusDown)
, ((modMask , xK_j ), windows W.focusDown)
, ((modMask , xK_k ), windows W.focusUp)
, ((modMask , xK_m ), windows W.focusMaster)
, ((modMask .|. shiftMask, xK_Return ), windows W.swapMaster)
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown)
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp)
, ((modMask , xK_h ), sendMessage Shrink)
, ((modMask , xK_l ), sendMessage Expand)
, ((modMask , xK_t ), withFocused $ windows . W.sink)
, ((modMask , xK_comma ), sendMessage (IncMasterN 1))
, ((modMask , xK_period ), sendMessage (IncMasterN (-1)))
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
, ((modMask , xK_q ), spawn "xmonad --recompile")
, ((modMask , xK_F2 ), shellPrompt defaultXPConfig)
, ((0 , 0x1008ff30 ), shellPrompt defaultXPConfig)
, ((0 , 0x1008ff13 ), spawn "amixer -q set Master 2dB+")
, ((0 , 0x1008ff11 ), spawn "amixer -q set Master 2dB-")
, ((0 , 0x1008ff12 ), spawn "amixer -q set Master toggle")
, ((0 , 0x1008ff16 ), spawn "cmus-remote --prev")
, ((0 , 0x1008ff17 ), spawn "cmus-remote --next")
, ((0 , 0x1008ff14 ), spawn "cmus-remote --pause")
, ((0 , 0x1008ff5b ), spawn "urxvt -e screen -rd cmus")
, ((modMask , xK_Print ), spawn "scrot -e 'mv $f ~/Screenshots'")
++
[((m .|. modMask, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9]
, (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
++
[((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
| (key, sc) <- zip [xK_w, xK_e, xK_r] [0..]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
myLayout = avoidStruts $ tiled ||| wideTiled ||| Full
where
tiled = HintedTile nmaster delta ratio Center Tall
wideTiled = HintedTile nmaster delta ratio Center Wide
nmaster = 1
ratio = 1/2
delta = 3/100
It was working fine before so I am thinking that it must of been an update or something. If I run the command in a terminal, it works just fine. So it has to be the syntax or something. This works perfectly:
dmenu_run | dmenu -b
Any ideas?
Last edited by securitybreach (2011-08-08 03:07:25)

Obscaenvs wrote:
I don't think it's an actual bug; it's just updated syntax. For me, this solved the issue:
In my xmonad.hs, I _had_ the line
, ((modm, xK_p ), spawn "exe=`dmenu_path | dmenu` && eval \"exec $exe\"")
I changed this to use dmenu_run instead and not piping to dmenu:
, ((modm, xK_p ), spawn "exe=`dmenu_run` && eval \"exec $exe\"")
A recompile is necessary for this to take effect. One of you did not have to recompile, but that was most likely because the downgraded dmenu understood the old syntax.
Now it works...YMMV.
EDIT: I see now that user "securitybreach" uses "dmenu_run" already... Try not piping the command; when I did this, I got two instances of Dmenu running: one with all the executables in path as usual, and one blank.
There are people having issues with dmenu using other window managers besides XMonad, so that is not the same issue.  Not to mention, that my spawn of dmenu is WAY less complicated than that, and I am still getting the issue (before downgrade).

Similar Messages

  • [SOLVED] Vilidia Not Launching Browser

    Hello
    I have recently installed tor and privoxy and after using this as the config file [https://trac.torproject.org/projects/to … voxyConfig] I still can't get it to start.
    I have used
    sudo /etc/rc.d/tor start
    I have tried from systemd as well. Maybe I'm in the wrong directory? I have tried from /usr/sbin specifically.
    Any help would be greatly appreciated.
    Thanks.
    [EDIT] After Installing tor browser bundle I was able to connect to tor but the browser did not launch, I also checked with check.torproject and it said I am not using tor. Please see bottom post.
    Last edited by RiotSquad (2013-11-06 07:51:22)

    After Installing tor browser bundle I was able to connect to tor but the browser did not launch, I also checked with check.torproject and it said I am not using tor. Below are the log files from validia.
    Nov 06 00:26:41.020 [Debug] conn_read_callback(): socket 9 wants to read.
    Nov 06 00:26:43.654 [Info] Monitored process 1651 is still alive.
    Nov 06 00:26:48.640 [Debug] conn_read_callback(): socket 9 wants to read.
    Nov 06 00:26:48.641 [Debug] conn_read_callback(): socket 9 wants to read.
    Nov 06 00:26:50.978 [Notice] Tor v0.2.3.25 (git-17c24b3118224d65) running on Linux.
    Nov 06 00:26:50.979 [Notice] Tor can't help you if you use it wrong! Learn how to be safe at https://www.torproject.org/download/download#warning
    Nov 06 00:26:50.983 [Notice] Read configuration file "/home/wolf/.vidalia/torrc".
    Nov 06 00:26:50.984 [Notice] Initialized libevent version 2.0.21-stable using method epoll (with changelist). Good.
    Nov 06 00:26:50.985 [Notice] Opening Socks listener on 127.0.0.1:9050
    Nov 06 00:26:50.986 [Notice] Opening Control listener on 127.0.0.1:9051
    Nov 06 00:26:50.990 [Notice] Parsing GEOIP file /usr/share/tor/geoip.
    Nov 06 00:26:51.155 [Notice] This version of OpenSSL has a known-good EVP counter-mode implementation. Using it.
    Nov 06 00:26:51.206 [Notice] OpenSSL OpenSSL 1.0.1e 11 Feb 2013 looks like version 0.9.8m or later; I will try SSL_OP to enable renegotiation
    Nov 06 00:26:51.720 [Notice] Reloaded microdescriptor cache. Found 4483 descriptors.
    Nov 06 00:26:51.766 [Notice] We now have enough directory information to build circuits.
    Nov 06 00:26:51.770 [Notice] Bootstrapped 80%: Connecting to the Tor network.
    Nov 06 00:26:52.778 [Notice] Heartbeat: Tor's uptime is 0:00 hours, with 1 circuits open. I've sent 0 kB and received 0 kB.
    Nov 06 00:26:52.921 [Notice] Bootstrapped 85%: Finishing handshake with first hop.
    Nov 06 00:26:53.287 [Notice] New control connection opened.
    Nov 06 00:26:53.374 [Notice] Bootstrapped 90%: Establishing a Tor circuit.
    Nov 06 00:26:54.452 [Notice] Tor has successfully opened a circuit. Looks like client functionality is working.
    Nov 06 00:26:54.455 [Notice] Bootstrapped 100%: Done.
    Nov 06 00:27:50.393 [Debug] conn_read_callback(): socket 10 wants to read.
    Nov 06 00:27:50.403 [Debug] conn_read_callback(): socket 10 wants to read.
    Nov 06 00:27:50.403 [Debug] tor_version_is_obsolete(): Checking whether version '0.2.3.25' is in '0.2.2.39,0.2.3.24-rc,0.2.3.25,0.2.4.5-alpha,0.2.4.6-alpha,0.2.4.7-alpha,0.2.4.8-alpha,0.2.4.9-alpha,0.2.4.10-alpha,0.2.4.11-alpha,0.2.4.12-alpha,0.2.4.13-alpha,0.2.4.14-alpha,0.2.4.15-rc,0.2.4.16-rc,0.2.4.17-rc,0.2.5.1-alpha'
    Nov 06 00:27:50.403 [Debug] conn_read_callback(): socket 10 wants to read.
    Nov 06 00:27:50.403 [Debug] conn_read_callback(): socket 10 wants to read.
    Nov 06 00:27:50.406 [Info] handle_control_takeownership(): Control connection 10 has taken ownership of this Tor instance.
    Nov 06 00:27:50.976 [Info] Monitored process 1651 is still alive.
    Nov 06 00:27:53.775 [Info] routerlist_remove_old_routers(): We have 0 live routers and 0 old router descriptors.
    Nov 06 00:28:05.974 [Info] Monitored process 1651 is still alive.
    Nov 06 00:28:20.974 [Info] Monitored process 1651 is still alive.
    Nov 06 00:28:35.976 [Info] Monitored process 1651 is still alive.
    I don't know if this will be much help but here it is.
    After entering this command
    LD_DEBUG=files firefox > firefox.log 2>&1
    I recieved this logfile
    1688:
    1688: file=libpthread.so.0 [0]; needed by firefox [0]
    1688: file=libpthread.so.0 [0]; generating link map
    1688: dynamic: 0xb7747e98 base: 0xb772f000 size: 0x0001b2ac
    1688: entry: 0xb7734d70 phdr: 0xb772f034 phnum: 9
    1688:
    1688:
    1688: file=libdl.so.2 [0]; needed by firefox [0]
    1688: file=libdl.so.2 [0]; generating link map
    1688: dynamic: 0xb772dec4 base: 0xb772a000 size: 0x00004080
    1688: entry: 0xb772aad0 phdr: 0xb772a034 phnum: 9
    1688:
    1688:
    1688: file=libstdc++.so.6 [0]; needed by firefox [0]
    1688: file=libstdc++.so.6 [0]; generating link map
    1688: dynamic: 0xb772197c base: 0xb7641000 size: 0x000e8620
    1688: entry: 0xb7687790 phdr: 0xb7641034 phnum: 8
    1688:
    1688:
    1688: file=libm.so.6 [0]; needed by firefox [0]
    1688: file=libm.so.6 [0]; generating link map
    1688: dynamic: 0xb763fe94 base: 0xb75fb000 size: 0x000450a0
    1688: entry: 0xb75ff660 phdr: 0xb75fb034 phnum: 9
    1688:
    1688:
    1688: file=libgcc_s.so.1 [0]; needed by firefox [0]
    1688: file=libgcc_s.so.1 [0]; generating link map
    1688: dynamic: 0xb75f9068 base: 0xb75de000 size: 0x0001b3b4
    1688: entry: 0xb75e00b0 phdr: 0xb75de034 phnum: 6
    1688:
    1688:
    1688: file=libc.so.6 [0]; needed by firefox [0]
    1688: file=libc.so.6 [0]; generating link map
    1688: dynamic: 0xb75d9d88 base: 0xb742e000 size: 0x001afa84
    1688: entry: 0xb7447b30 phdr: 0xb742e034 phnum: 10
    1688:
    1688:
    1688: calling init: /usr/lib/libpthread.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libc.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libgcc_s.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libm.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libstdc++.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libdl.so.2
    1688:
    1688:
    1688: initialize program: firefox
    1688:
    1688:
    1688: transferring control: firefox
    1688:
    1688:
    1688: file=/usr/lib/firefox/libmozalloc.so [0]; dynamically loaded by firefox [0]
    1688: file=/usr/lib/firefox/libmozalloc.so [0]; generating link map
    1688: dynamic: 0xb7758ef0 base: 0xb7756000 size: 0x00003064
    1688: entry: 0xb7756ad0 phdr: 0xb7756034 phnum: 7
    1688:
    1688:
    1688: calling init: /usr/lib/firefox/libmozalloc.so
    1688:
    1688: opening file=/usr/lib/firefox/libmozalloc.so [0]; direct_opencount=1
    1688:
    1688:
    1688: file=/usr/lib/firefox/libxul.so [0]; dynamically loaded by firefox [0]
    1688: file=/usr/lib/firefox/libxul.so [0]; generating link map
    1688: dynamic: 0xb6ffea30 base: 0xb47ff000 size: 0x02a00fb4
    1688: entry: 0xb4ad0b00 phdr: 0xb47ff034 phnum: 8
    1688:
    1688:
    1688: file=libffi.so.6 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libffi.so.6 [0]; generating link map
    1688: dynamic: 0xb7754ef4 base: 0xb774f000 size: 0x00006310
    1688: entry: 0xb7750040 phdr: 0xb774f034 phnum: 7
    1688:
    1688:
    1688: file=libssl3.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libssl3.so [0]; generating link map
    1688: dynamic: 0xb47fddd0 base: 0xb47b8000 size: 0x00046c6c
    1688: entry: 0xb47beaf0 phdr: 0xb47b8034 phnum: 7
    1688:
    1688:
    1688: file=libsmime3.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libsmime3.so [0]; generating link map
    1688: dynamic: 0xb47b6db0 base: 0xb478c000 size: 0x0002b6c4
    1688: entry: 0xb4793320 phdr: 0xb478c034 phnum: 7
    1688:
    1688:
    1688: file=libnss3.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libnss3.so [0]; generating link map
    1688: dynamic: 0xb4789a60 base: 0xb4647000 size: 0x00144ef8
    1688: entry: 0xb4659640 phdr: 0xb4647034 phnum: 7
    1688:
    1688:
    1688: file=libnssutil3.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libnssutil3.so [0]; generating link map
    1688: dynamic: 0xb4645e30 base: 0xb4622000 size: 0x000247f0
    1688: entry: 0xb4628a20 phdr: 0xb4622034 phnum: 7
    1688:
    1688:
    1688: file=libXrender.so.1 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libXrender.so.1 [0]; generating link map
    1688: dynamic: 0xb7319ee8 base: 0xb7310000 size: 0x0000a190
    1688: entry: 0xb73114f0 phdr: 0xb7310034 phnum: 7
    1688:
    1688:
    1688: file=libsqlite3.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libsqlite3.so.0 [0]; generating link map
    1688: dynamic: 0xb461fec0 base: 0xb4568000 size: 0x000b95fc
    1688: entry: 0xb456e270 phdr: 0xb4568034 phnum: 7
    1688:
    1688:
    1688: file=libjpeg.so.8 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libjpeg.so.8 [0]; generating link map
    1688: dynamic: 0xb4556ce0 base: 0xb450d000 size: 0x0005a1a0
    1688: entry: 0xb450fdd0 phdr: 0xb450d034 phnum: 7
    1688:
    1688:
    1688: file=libpng16.so.16 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libpng16.so.16 [0]; generating link map
    1688: dynamic: 0xb450beb0 base: 0xb44d4000 size: 0x00038264
    1688: entry: 0xb44d8aa0 phdr: 0xb44d4034 phnum: 7
    1688:
    1688:
    1688: file=libz.so.1 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libz.so.1 [0]; generating link map
    1688: dynamic: 0xb44d2ee8 base: 0xb44bd000 size: 0x00016104
    1688: entry: 0xb44bea10 phdr: 0xb44bd034 phnum: 7
    1688:
    1688:
    1688: file=libhunspell-1.3.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libhunspell-1.3.so.0 [0]; generating link map
    1688: dynamic: 0xb44b8ed0 base: 0xb4466000 size: 0x00056b0c
    1688: entry: 0xb446d6a0 phdr: 0xb4466034 phnum: 7
    1688:
    1688:
    1688: file=libevent-2.0.so.5 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libevent-2.0.so.5 [0]; generating link map
    1688: dynamic: 0xb4464ec4 base: 0xb441d000 size: 0x00048cb4
    1688: entry: 0xb4426df0 phdr: 0xb441d034 phnum: 7
    1688:
    1688:
    1688: file=libvpx.so.1 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libvpx.so.1 [0]; generating link map
    1688: dynamic: 0xb441b82c base: 0xb4391000 size: 0x0008b31c
    1688: entry: 0xb4393280 phdr: 0xb4391034 phnum: 7
    1688:
    1688:
    1688: file=libpixman-1.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libpixman-1.so.0 [0]; generating link map
    1688: dynamic: 0xb438fee0 base: 0xb42e7000 size: 0x000a92a4
    1688: entry: 0xb42ec3b0 phdr: 0xb42e7034 phnum: 8
    1688:
    1688:
    1688: file=libasound.so.2 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libasound.so.2 [0]; generating link map
    1688: dynamic: 0xb42e5e38 base: 0xb41ee000 size: 0x000f8cd0
    1688: entry: 0xb420d050 phdr: 0xb41ee034 phnum: 8
    1688:
    1688:
    1688: file=libplds4.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libplds4.so [0]; generating link map
    1688: dynamic: 0xb730eefc base: 0xb730b000 size: 0x000040dc
    1688: entry: 0xb730bc20 phdr: 0xb730b034 phnum: 7
    1688:
    1688:
    1688: file=libplc4.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libplc4.so [0]; generating link map
    1688: dynamic: 0xb7309efc base: 0xb7305000 size: 0x00005104
    1688: entry: 0xb7305f90 phdr: 0xb7305034 phnum: 7
    1688:
    1688:
    1688: file=libnspr4.so [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libnspr4.so [0]; generating link map
    1688: dynamic: 0xb41eae08 base: 0xb41b0000 size: 0x0003d8e0
    1688: entry: 0xb41b9080 phdr: 0xb41b0034 phnum: 7
    1688:
    1688:
    1688: file=libdbus-glib-1.so.2 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libdbus-glib-1.so.2 [0]; generating link map
    1688: dynamic: 0xb41aee60 base: 0xb418a000 size: 0x00025708
    1688: entry: 0xb4191740 phdr: 0xb418a034 phnum: 7
    1688:
    1688:
    1688: file=libdbus-1.so.3 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libdbus-1.so.3 [0]; generating link map
    1688: dynamic: 0xb4188e78 base: 0xb413e000 size: 0x0004b4d4
    1688: entry: 0xb4143e00 phdr: 0xb413e034 phnum: 7
    1688:
    1688:
    1688: file=libgobject-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgobject-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb413cd00 base: 0xb40ed000 size: 0x000507f0
    1688: entry: 0xb40f5670 phdr: 0xb40ed034 phnum: 7
    1688:
    1688:
    1688: file=libglib-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libglib-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb40ebe70 base: 0xb3fe9000 size: 0x00103d34
    1688: entry: 0xb3ffe4b0 phdr: 0xb3fe9034 phnum: 7
    1688:
    1688:
    1688: file=libgtk-x11-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgtk-x11-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3fe4c44 base: 0xb3b83000 size: 0x00465778
    1688: entry: 0xb3bd38d0 phdr: 0xb3b83034 phnum: 7
    1688:
    1688:
    1688: file=libatk-1.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libatk-1.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3b81eb8 base: 0xb3b61000 size: 0x00021610
    1688: entry: 0xb3b68070 phdr: 0xb3b61034 phnum: 7
    1688:
    1688:
    1688: file=libgio-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgio-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3b5ecc0 base: 0xb39f2000 size: 0x0016ed60
    1688: entry: 0xb3a178d0 phdr: 0xb39f2034 phnum: 7
    1688:
    1688:
    1688: file=libfontconfig.so.1 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libfontconfig.so.1 [0]; generating link map
    1688: dynamic: 0xb39f0ed0 base: 0xb39b7000 size: 0x0003a408
    1688: entry: 0xb39bbce0 phdr: 0xb39b7034 phnum: 7
    1688:
    1688:
    1688: file=libfreetype.so.6 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libfreetype.so.6 [0]; generating link map
    1688: dynamic: 0xb39b5e90 base: 0xb3917000 size: 0x0009f3c8
    1688: entry: 0xb391f2f0 phdr: 0xb3917034 phnum: 7
    1688:
    1688:
    1688: file=libgdk-x11-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgdk-x11-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3915db8 base: 0xb3868000 size: 0x000aedd0
    1688: entry: 0xb387d420 phdr: 0xb3868034 phnum: 7
    1688:
    1688:
    1688: file=libpango-1.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libpango-1.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3866e40 base: 0xb381e000 size: 0x000494ac
    1688: entry: 0xb3827850 phdr: 0xb381e034 phnum: 7
    1688:
    1688:
    1688: file=libcairo.so.2 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libcairo.so.2 [0]; generating link map
    1688: dynamic: 0xb381be48 base: 0xb36e5000 size: 0x0013869c
    1688: entry: 0xb36f27d0 phdr: 0xb36e5034 phnum: 7
    1688:
    1688:
    1688: file=libgdk_pixbuf-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgdk_pixbuf-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb36e3e64 base: 0xb36bf000 size: 0x00025444
    1688: entry: 0xb36c41e0 phdr: 0xb36bf034 phnum: 7
    1688:
    1688:
    1688: file=libstartup-notification-1.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libstartup-notification-1.so.0 [0]; generating link map
    1688: dynamic: 0xb36bdee0 base: 0xb36b4000 size: 0x0000a300
    1688: entry: 0xb36b6820 phdr: 0xb36b4034 phnum: 7
    1688:
    1688:
    1688: file=libX11.so.6 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libX11.so.6 [0]; generating link map
    1688: dynamic: 0xb36b0d88 base: 0xb357d000 size: 0x00136b10
    1688: entry: 0xb35912b0 phdr: 0xb357d034 phnum: 7
    1688:
    1688:
    1688: file=libXext.so.6 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libXext.so.6 [0]; generating link map
    1688: dynamic: 0xb357bee0 base: 0xb356a000 size: 0x0001256c
    1688: entry: 0xb356cad0 phdr: 0xb356a034 phnum: 7
    1688:
    1688:
    1688: file=libXt.so.6 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libXt.so.6 [0]; generating link map
    1688: dynamic: 0xb3566da0 base: 0xb350d000 size: 0x0005cf10
    1688: entry: 0xb3519500 phdr: 0xb350d034 phnum: 7
    1688:
    1688:
    1688: file=libgthread-2.0.so.0 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=libgthread-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb774deec base: 0xb774c000 size: 0x00002024
    1688: entry: 0xb774c4e0 phdr: 0xb774c034 phnum: 7
    1688:
    1688:
    1688: file=librt.so.1 [0]; needed by /usr/lib/firefox/libxul.so [0]
    1688: file=librt.so.1 [0]; generating link map
    1688: dynamic: 0xb350beb4 base: 0xb3504000 size: 0x00008244
    1688: entry: 0xb3505980 phdr: 0xb3504034 phnum: 9
    1688:
    1688:
    1688: file=libpcre.so.1 [0]; needed by /usr/lib/libgobject-2.0.so.0 [0]
    1688: file=libpcre.so.1 [0]; generating link map
    1688: dynamic: 0xb3502ea8 base: 0xb349b000 size: 0x00068158
    1688: entry: 0xb349c020 phdr: 0xb349b034 phnum: 7
    1688:
    1688:
    1688: file=libgmodule-2.0.so.0 [0]; needed by /usr/lib/libgtk-x11-2.0.so.0 [0]
    1688: file=libgmodule-2.0.so.0 [0]; generating link map
    1688: dynamic: 0xb7303ee4 base: 0xb7300000 size: 0x000040c4
    1688: entry: 0xb7300ce0 phdr: 0xb7300034 phnum: 7
    1688:
    1688:
    1688: file=libpangocairo-1.0.so.0 [0]; needed by /usr/lib/libgtk-x11-2.0.so.0 [0]
    1688: file=libpangocairo-1.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3499e9c base: 0xb348e000 size: 0x0000c308
    1688: entry: 0xb3491680 phdr: 0xb348e034 phnum: 7
    1688:
    1688:
    1688: file=libXfixes.so.3 [0]; needed by /usr/lib/libgtk-x11-2.0.so.0 [0]
    1688: file=libXfixes.so.3 [0]; generating link map
    1688: dynamic: 0xb348cee8 base: 0xb3488000 size: 0x00005084
    1688: entry: 0xb3489040 phdr: 0xb3488034 phnum: 7
    1688:
    1688:
    1688: file=libpangoft2-1.0.so.0 [0]; needed by /usr/lib/libgtk-x11-2.0.so.0 [0]
    1688: file=libpangoft2-1.0.so.0 [0]; generating link map
    1688: dynamic: 0xb3486e8c base: 0xb3472000 size: 0x00015514
    1688: entry: 0xb34776d0 phdr: 0xb3472034 phnum: 7
    1688:
    1688:
    1688: file=libresolv.so.2 [0]; needed by /usr/lib/libgio-2.0.so.0 [0]
    1688: file=libresolv.so.2 [0]; generating link map
    1688: dynamic: 0xb346eeb4 base: 0xb345a000 size: 0x00017808
    1688: entry: 0xb345c720 phdr: 0xb345a034 phnum: 9
    1688:
    1688:
    1688: file=libexpat.so.1 [0]; needed by /usr/lib/libfontconfig.so.1 [0]
    1688: file=libexpat.so.1 [0]; generating link map
    1688: dynamic: 0xb3458ee0 base: 0xb3431000 size: 0x00028074
    1688: entry: 0xb3433300 phdr: 0xb3431034 phnum: 7
    1688:
    1688:
    1688: file=libbz2.so.1.0 [0]; needed by /usr/lib/libfreetype.so.6 [0]
    1688: file=libbz2.so.1.0 [0]; generating link map
    1688: dynamic: 0xb3430060 base: 0xb3420000 size: 0x00010e44
    1688: entry: 0xb3421010 phdr: 0xb3420034 phnum: 6
    1688:
    1688:
    1688: file=libXinerama.so.1 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXinerama.so.1 [0]; generating link map
    1688: dynamic: 0xb341eef4 base: 0xb341c000 size: 0x000030c0
    1688: entry: 0xb341c870 phdr: 0xb341c034 phnum: 7
    1688:
    1688:
    1688: file=libXi.so.6 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXi.so.6 [0]; generating link map
    1688: dynamic: 0xb341aef0 base: 0xb340b000 size: 0x00010184
    1688: entry: 0xb340cb50 phdr: 0xb340b034 phnum: 7
    1688:
    1688:
    1688: file=libXrandr.so.2 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXrandr.so.2 [0]; generating link map
    1688: dynamic: 0xb3409ee4 base: 0xb3400000 size: 0x0000a0dc
    1688: entry: 0xb34015e0 phdr: 0xb3400034 phnum: 7
    1688:
    1688:
    1688: file=libXcursor.so.1 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXcursor.so.1 [0]; generating link map
    1688: dynamic: 0xb33feedc base: 0xb33f5000 size: 0x0000a19c
    1688: entry: 0xb33f7020 phdr: 0xb33f5034 phnum: 7
    1688:
    1688:
    1688: file=libXcomposite.so.1 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXcomposite.so.1 [0]; generating link map
    1688: dynamic: 0xb33f3ee8 base: 0xb33f1000 size: 0x0000304c
    1688: entry: 0xb33f1940 phdr: 0xb33f1034 phnum: 7
    1688:
    1688:
    1688: file=libXdamage.so.1 [0]; needed by /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688: file=libXdamage.so.1 [0]; generating link map
    1688: dynamic: 0xb33efee0 base: 0xb33ed000 size: 0x00003058
    1688: entry: 0xb33ed8b0 phdr: 0xb33ed034 phnum: 7
    1688:
    1688:
    1688: file=libEGL.so.1 [0]; needed by /usr/lib/libcairo.so.2 [0]
    1688: file=libEGL.so.1 [0]; generating link map
    1688: dynamic: 0xb33ebdec base: 0xb33cb000 size: 0x000219f0
    1688: entry: 0xb33cf000 phdr: 0xb33cb034 phnum: 8
    1688:
    1688:
    1688: file=libxcb-shm.so.0 [0]; needed by /usr/lib/libcairo.so.2 [0]
    1688: file=libxcb-shm.so.0 [0]; generating link map
    1688: dynamic: 0xb33c9eec base: 0xb33c7000 size: 0x0000302c
    1688: entry: 0xb33c7810 phdr: 0xb33c7034 phnum: 7
    1688:
    1688:
    1688: file=libxcb-render.so.0 [0]; needed by /usr/lib/libcairo.so.2 [0]
    1688: file=libxcb-render.so.0 [0]; generating link map
    1688: dynamic: 0xb33c5eec base: 0xb33bc000 size: 0x0000a058
    1688: entry: 0xb33bec50 phdr: 0xb33bc034 phnum: 7
    1688:
    1688:
    1688: file=libxcb.so.1 [0]; needed by /usr/lib/libcairo.so.2 [0]
    1688: file=libxcb.so.1 [0]; generating link map
    1688: dynamic: 0xb33baee4 base: 0xb339a000 size: 0x000211d8
    1688: entry: 0xb33a26c0 phdr: 0xb339a034 phnum: 7
    1688:
    1688:
    1688: file=libGL.so.1 [0]; needed by /usr/lib/libcairo.so.2 [0]
    1688: file=libGL.so.1 [0]; generating link map
    1688: dynamic: 0xb3394e44 base: 0xb3341000 size: 0x00058648
    1688: entry: 0xb3352b00 phdr: 0xb3341034 phnum: 8
    1688:
    1688:
    1688: file=libxcb-util.so.1 [0]; needed by /usr/lib/libstartup-notification-1.so.0 [0]
    1688: file=libxcb-util.so.1 [0]; generating link map
    1688: dynamic: 0xb333fee0 base: 0xb333b000 size: 0x0000507c
    1688: entry: 0xb333c590 phdr: 0xb333b034 phnum: 7
    1688:
    1688:
    1688: file=libX11-xcb.so.1 [0]; needed by /usr/lib/libstartup-notification-1.so.0 [0]
    1688: file=libX11-xcb.so.1 [0]; generating link map
    1688: dynamic: 0xb3339eec base: 0xb3338000 size: 0x0000201c
    1688: entry: 0xb3338450 phdr: 0xb3338034 phnum: 7
    1688:
    1688:
    1688: file=libSM.so.6 [0]; needed by /usr/lib/libXt.so.6 [0]
    1688: file=libSM.so.6 [0]; generating link map
    1688: dynamic: 0xb3336ec0 base: 0xb332f000 size: 0x000080bc
    1688: entry: 0xb3330560 phdr: 0xb332f034 phnum: 7
    1688:
    1688:
    1688: file=libICE.so.6 [0]; needed by /usr/lib/libXt.so.6 [0]
    1688: file=libICE.so.6 [0]; generating link map
    1688: dynamic: 0xb332bea8 base: 0xb3315000 size: 0x00019150
    1688: entry: 0xb33187f0 phdr: 0xb3315034 phnum: 7
    1688:
    1688:
    1688: file=libharfbuzz.so.0 [0]; needed by /usr/lib/libpangocairo-1.0.so.0 [0]
    1688: file=libharfbuzz.so.0 [0]; generating link map
    1688: dynamic: 0xb3313ebc base: 0xb32c0000 size: 0x00054484
    1688: entry: 0xb32c5630 phdr: 0xb32c0034 phnum: 7
    1688:
    1688:
    1688: file=libxcb-dri2.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libxcb-dri2.so.0 [0]; generating link map
    1688: dynamic: 0xb32beeec base: 0xb32ba000 size: 0x00005034
    1688: entry: 0xb32bb3f0 phdr: 0xb32ba034 phnum: 7
    1688:
    1688:
    1688: file=libxcb-xfixes.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libxcb-xfixes.so.0 [0]; generating link map
    1688: dynamic: 0xb32b8eec base: 0xb32b2000 size: 0x00007030
    1688: entry: 0xb32b3e10 phdr: 0xb32b2034 phnum: 7
    1688:
    1688:
    1688: file=libxcb-shape.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libxcb-shape.so.0 [0]; generating link map
    1688: dynamic: 0xb32b0eec base: 0xb32ae000 size: 0x0000302c
    1688: entry: 0xb32aebe0 phdr: 0xb32ae034 phnum: 7
    1688:
    1688:
    1688: file=libgbm.so.1 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libgbm.so.1 [0]; generating link map
    1688: dynamic: 0xb32aceb0 base: 0xb32a6000 size: 0x00007260
    1688: entry: 0xb32a7640 phdr: 0xb32a6034 phnum: 7
    1688:
    1688:
    1688: file=libwayland-client.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libwayland-client.so.0 [0]; generating link map
    1688: dynamic: 0xb32a4ec8 base: 0xb329b000 size: 0x0000a2e0
    1688: entry: 0xb329da50 phdr: 0xb329b034 phnum: 7
    1688:
    1688:
    1688: file=libwayland-server.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libwayland-server.so.0 [0]; generating link map
    1688: dynamic: 0xb3299eb0 base: 0xb328d000 size: 0x0000d35c
    1688: entry: 0xb32907c0 phdr: 0xb328d034 phnum: 7
    1688:
    1688:
    1688: file=libglapi.so.0 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libglapi.so.0 [0]; generating link map
    1688: dynamic: 0xb3287ed0 base: 0xb3276000 size: 0x00016dc8
    1688: entry: 0xb3279770 phdr: 0xb3276034 phnum: 8
    1688:
    1688:
    1688: file=libudev.so.1 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libudev.so.1 [0]; generating link map
    1688: dynamic: 0xb3274d38 base: 0xb3263000 size: 0x0001284c
    1688: entry: 0xb32658d0 phdr: 0xb3263034 phnum: 7
    1688:
    1688:
    1688: file=libdrm.so.2 [0]; needed by /usr/lib/libEGL.so.1 [0]
    1688: file=libdrm.so.2 [0]; generating link map
    1688: dynamic: 0xb3261ed0 base: 0xb3256000 size: 0x0000c5d8
    1688: entry: 0xb3256000 phdr: 0xb3256034 phnum: 7
    1688:
    1688:
    1688: file=libXau.so.6 [0]; needed by /usr/lib/libxcb-shm.so.0 [0]
    1688: file=libXau.so.6 [0]; generating link map
    1688: dynamic: 0xb3254f00 base: 0xb3252000 size: 0x00003098
    1688: entry: 0xb3252ab0 phdr: 0xb3252034 phnum: 7
    1688:
    1688:
    1688: file=libXdmcp.so.6 [0]; needed by /usr/lib/libxcb-shm.so.0 [0]
    1688: file=libXdmcp.so.6 [0]; generating link map
    1688: dynamic: 0xb3250f20 base: 0xb324b000 size: 0x00006078
    1688: entry: 0xb324bf10 phdr: 0xb324b034 phnum: 7
    1688:
    1688:
    1688: file=libxcb-glx.so.0 [0]; needed by /usr/lib/libGL.so.1 [0]
    1688: file=libxcb-glx.so.0 [0]; generating link map
    1688: dynamic: 0xb3249eec base: 0xb3232000 size: 0x0001802c
    1688: entry: 0xb323a8c0 phdr: 0xb3232034 phnum: 7
    1688:
    1688:
    1688: file=libXxf86vm.so.1 [0]; needed by /usr/lib/libGL.so.1 [0]
    1688: file=libXxf86vm.so.1 [0]; generating link map
    1688: dynamic: 0xb3230ef4 base: 0xb322c000 size: 0x000050c0
    1688: entry: 0xb322cc40 phdr: 0xb322c034 phnum: 7
    1688:
    1688:
    1688: file=libuuid.so.1 [0]; needed by /usr/lib/libSM.so.6 [0]
    1688: file=libuuid.so.1 [0]; generating link map
    1688: dynamic: 0xb322aedc base: 0xb3226000 size: 0x000050cc
    1688: entry: 0xb3226f70 phdr: 0xb3226034 phnum: 8
    1688:
    1688:
    1688: file=libgraphite2.so.3 [0]; needed by /usr/lib/libharfbuzz.so.0 [0]
    1688: file=libgraphite2.so.3 [0]; generating link map
    1688: dynamic: 0xb3224eec base: 0xb320a000 size: 0x0001b108
    1688: entry: 0xb320ba90 phdr: 0xb320a034 phnum: 7
    1688:
    1688:
    1688: file=/usr/lib/libwayland-client.so.0 [0]; needed by /usr/lib/libwayland-server.so.0 [0] (relocation dependency)
    1688:
    1688:
    1688: file=/usr/lib/libEGL.so.1 [0]; needed by /usr/lib/libgbm.so.1 [0] (relocation dependency)
    1688:
    1688:
    1688: calling init: /usr/lib/libgraphite2.so.3
    1688:
    1688:
    1688: calling init: /usr/lib/libuuid.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXau.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libXdmcp.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libX11.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libXext.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libXxf86vm.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-glx.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libdrm.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/librt.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libudev.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libglapi.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libffi.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libwayland-server.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libwayland-client.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgbm.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-shape.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-xfixes.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-dri2.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libpcre.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libglib-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libz.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libpng16.so.16
    1688:
    1688:
    1688: calling init: /usr/lib/libbz2.so.1.0
    1688:
    1688:
    1688: calling init: /usr/lib/libfreetype.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libharfbuzz.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libICE.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libSM.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libX11-xcb.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-util.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXfixes.so.3
    1688:
    1688:
    1688: calling init: /usr/lib/libXdamage.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libGL.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-render.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libxcb-shm.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libEGL.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXcomposite.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXrender.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXcursor.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libXrandr.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/libXi.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libXinerama.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libexpat.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libresolv.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/libgobject-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libfontconfig.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libgthread-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgmodule-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libpango-1.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libpangoft2-1.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libpixman-1.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libcairo.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/libpangocairo-1.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libXt.so.6
    1688:
    1688:
    1688: calling init: /usr/lib/libstartup-notification-1.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgio-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgdk_pixbuf-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgdk-x11-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libatk-1.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libgtk-x11-2.0.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libdbus-1.so.3
    1688:
    1688:
    1688: calling init: /usr/lib/libdbus-glib-1.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/libnspr4.so
    1688:
    1688:
    1688: calling init: /usr/lib/libplc4.so
    1688:
    1688:
    1688: calling init: /usr/lib/libplds4.so
    1688:
    1688:
    1688: calling init: /usr/lib/libasound.so.2
    1688:
    1688:
    1688: calling init: /usr/lib/libvpx.so.1
    1688:
    1688:
    1688: calling init: /usr/lib/libevent-2.0.so.5
    1688:
    1688:
    1688: calling init: /usr/lib/libhunspell-1.3.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libjpeg.so.8
    1688:
    1688:
    1688: calling init: /usr/lib/libsqlite3.so.0
    1688:
    1688:
    1688: calling init: /usr/lib/libnssutil3.so
    1688:
    1688:
    1688: calling init: /usr/lib/libnss3.so
    1688:
    1688:
    1688: calling init: /usr/lib/libsmime3.so
    1688:
    1688:
    1688: calling init: /usr/lib/libssl3.so
    1688:
    1688:
    1688: calling init: /usr/lib/firefox/libxul.so
    1688:
    1688: opening file= [0]; direct_opencount=2
    1688:
    1688: firefox: error: symbol lookup error: undefined symbol: nspr_use_zone_allocator (fatal)
    1688:
    1688: closing file=; direct_opencount=1
    1688: opening file= [0]; direct_opencount=2
    1688:
    1688: opening file=/usr/lib/firefox/libxul.so [0]; direct_opencount=1
    1688:
    1688:
    1688: file=/usr/lib/gconv/UTF-16.so [0]; dynamically loaded by /usr/lib/libc.so.6 [0]
    1688: file=/usr/lib/gconv/UTF-16.so [0]; generating link map
    1688: dynamic: 0xb7329f04 base: 0xb7326000 size: 0x00004030
    1688: entry: 0xb73264d0 phdr: 0xb7326034 phnum: 7
    1688:
    1688:
    1688: calling init: /usr/lib/gconv/UTF-16.so
    1688:
    1688: opening file=/usr/lib/gconv/UTF-16.so [0]; direct_opencount=1
    1688:
    (process:1688): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
    1688: opening file= [0]; direct_opencount=3
    1688:
    1688: firefox: error: symbol lookup error: undefined symbol: gtk_widget_device_is_shadowed (fatal)
    1688:
    1688: calling fini: firefox [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/firefox/libxul.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/firefox/libmozalloc.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libssl3.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libsmime3.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libnss3.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libnssutil3.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libsqlite3.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libjpeg.so.8 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libhunspell-1.3.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libstdc++.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgcc_s.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libevent-2.0.so.5 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libvpx.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libasound.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libplds4.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libplc4.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libnspr4.so [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libdbus-glib-1.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libdbus-1.so.3 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgtk-x11-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libatk-1.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgdk-x11-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgdk_pixbuf-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgio-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libstartup-notification-1.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXt.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpangocairo-1.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libcairo.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpixman-1.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpangoft2-1.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpango-1.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgmodule-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgthread-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libfontconfig.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgobject-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libresolv.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libexpat.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXinerama.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXi.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXrandr.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXcursor.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXrender.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXcomposite.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libEGL.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-shm.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-render.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libGL.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXdamage.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXfixes.so.3 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-util.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libX11-xcb.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libSM.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libICE.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libharfbuzz.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libfreetype.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libbz2.so.1.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpng16.so.16 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libz.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libglib-2.0.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpcre.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-dri2.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-xfixes.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-shape.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgbm.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libwayland-server.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libwayland-client.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libffi.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libm.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libglapi.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libudev.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/librt.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libpthread.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libdrm.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb-glx.so.0 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXxf86vm.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXext.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libX11.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libdl.so.2 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libxcb.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXdmcp.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libXau.so.6 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libuuid.so.1 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/libgraphite2.so.3 [0]
    1688:
    1688:
    1688: calling fini: /usr/lib/gconv/UTF-16.so [0]
    1688:
    Last edited by RiotSquad (2013-11-06 05:37:52)

  • [solved] keyboard not working correctly on vc/1

    the behaviour is quite odd.
    when i hit ctrl-alt-f1, and switch to the first virtual console, trying to login, or even type doesnt work quite as it should.
    example, i try to login: this is what i get:
    lappy login: elragn
    password:
    when the user name should be eldragon, if i type each letter at a time, until i get it to work, i can type correctly, and its not always the same letters that dont work. of course, the password comes in blank, and sometimes, when i get it all right, i can login, and the effect contiues
    this is not a hardware issue, other virtual consoles work ok, and the keyboard works fine under Xorg.
    so, what could be wrong with this vc? anyone got a clue? ive searched the wiki, bug reports, google, and the forums (not in this order) for an answer but i came up empty.
    PD. if im posting in the wrong forum, please move it where it should go
    Last edited by eldragon (2009-03-22 18:08:54)

    Hi,
    Since the problem is in the vc's, and the keymap is loaded "pre Xorg", I'd start by doing some tests there.
    I'm still a learner myself, so this might not work, or it might, either way, you've got nothing to loose
    First of all check logs for errors, maybe something pops out.
    If no errors on logs, than here's what I would do if I were you:
    (backup /etc/rc.conf , /etc/inittab , /etc/locale.gen to some directory)
    1. Let's start by isolating the problem by not going to gdm->gnome automatically, so you can test vc's themselfs more efficiently and quicker.
    take out gdm from the DAEMONS line in /etc/rc.conf (something like this)
    DAEMONS=(syslog-ng network netfs crond alsa hal fam)
    2. let your /etc/inittab be like you have in this section (id:3)
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    id:3:initdefault:
    # Boot to X11
    #id:5:initdefault:
    and comment everything here:
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    3. do you use a non-us keyboard?
    check your rc.conf for the 1st lines, mainly your KEYMAP
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="your.timezone.here"
    KEYMAP="your.keymap.here"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    confirm that your keymap exists in /usr/share/kbd/keymaps and double confirm the name is right, example:
    for US keyboard the file is 'us.map.gz' so KEYMAP="us" (take out .map.gz); in case your keyboard is not US, check the name, as some have more letters than others
    (usually /usr/share/kbd/keymaps/i386/qwerty unless your pc is not i386 or qwerty ofc )
    4. reboot pc.
       You'll be in vc/1.   
       Now, instead of jumping in consoles with ctr-alt-Fx, try jumping just with Alt+Fx. (if it doesn't work, go ctrl+alt+fx ofc)
       Do Alt+F2 and start typing as normal, anything and manything at any speed and confirm is good. Don't press enter. Just testing keystrokes.
       Do Alt+F3, Alt+F4, Alt+F5 and test the same for each vc.
       Now for the final and problematic one, go Alt+F1 and test.
       If it's good, then probably your problem is on X/gdm/gnome or anything that is loading after vc, or if you changed your keymap, then that was the faulty thing.
       If it's not good, keep on reading
    5. don't enter in vc/1, rather jump to vc/2 or 3 or something and enter as root, let's edit your /etc/rc.conf again.
    copy to a piece of paper your 1st options in case they are different from below:
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="your.timezone.here"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    basicly is trying to put it to a default state. Put your options just like they are above, except TIMEZONE, you can put yours, I don't remember default one.
    Reboot and test again just like in step 4.
    If it doesn't work, you might give a look at /etc/locale.gen and just uncomment these 2 lines:
    #en_SG.UTF-8 UTF-8
    #en_SG ISO-8859-1
    en_US.UTF-8 UTF-8
    en_US ISO-8859-1
    #en_ZA.UTF-8 UTF-8
    #en_ZA ISO-8859-1
    leave every other line commented. in case you had some of your own uncommented, copy to a paper wich ones were, and comment them.
    write in console
    locale-gen
    let it end generating the locales, reboot, and step 4 again.
    6. Still not working, let's try to put things bad proposedly! Change your KEYMAP to another one, if qwerty, just choose another qwerty language, all letters should be on same place, except for punctuation ofc.
      Reboot and try again as step 4.
      Still not working? Change the LOCALE and keep your wrong qwerty keyboard. (LOCALE will probably change some words, like password to it's LOCALE language, etc).
      Reboot and try again as step 4.
      Still not working? ok, final attempt, change back your LOCALE and your KEYMAP to the values you had before, the correct ones.
      Reboot and try again as step 4.
    7. If still not working, well, for now I don't know much more. Take in consideration that the boot process goes through several steps, the error might be in one of those steps. One last thing you can try, altho I think it works just in DE/WM modes, I've read in some posts (here or not, can't remember) that by pressing Ctrl-Alt-K you can change your keyboard layout, assuming you have a second one, and use them for different things, I think the example I read on the post was something like, you wanna code in english but talk in irc in russian for example.
    I kinda doubt it works, but if it also activates in vc's mode, then you could have pressed it accidently (like when doing ctrl-alt-fx, your finger slipped ).
    press ctrl-alt-k, type a few letters, press ctrl-alt-k again, type more letters, and you'll see if it does something or not.
    Again, just try, you got nothing to loose
    One thing I noticed, is that when trying to put some characters on vc as username, it acts as delete, some even erase the all line in one go and some don't do nothing, some of the characters were # @ £ §.
    8. Since it didn't work, let's put everything as it was.
    8.1. go to /etc/inittab and put like this:
    (comment id:3, uncomment id:5 // uncomment x:5:...gdm...)
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    #id:3:initdefault:
    # Boot to X11
    id:5:initdefault:
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    8.2. edit /etc/rc.conf and DON'T put back the gdm on daemons line.
      Alter the 1st lines ranging from LOCALE to USECOLOR to the ones you copied to a paper.
    8.3. comment/uncomment the locales on /etc/locale.gen as you have on paper and run in console
    locale-gen
    8.4. you're set, reboot and you're on gdm->gnome again. (still no vc/1 working tho )
    note: in your initial /etc/iniitab you had id:3 uncommented and gdm on daemons, so you would go automatically to gdm as you started your pc, but, what if something happens and you need to go to another mode before gdm runs? you couldn't do it easily with gdm on daemons.
    If you put it like I wrote above, when you turn on the pc, it's the same, you go automatically to the gdm, but, in case something happens, you can always go to another mode before gdm runs, by doing the following (read here on wiki or foruns, will put link when I find it)
    Pc reboots and you're on GRUB, press 'e', choose the kernel and press 'e' again, go to the end of the line where it says 'ro', and add a 3 to the end, to look like this 'ro 3', press 'b' (boot) and you're on mode 3 without going to gdm
      But ofc, this is just a choice, if you prefer to have as you had it, by all means, just put gdm on daemons line, and your /etc/inittab as initially, that's the beauty of Linux, it's to your fit
    Good Luck!

  • Logisim not loading correctly in Xmonad

    I am having a bit of trouble trying to get logisim running in Xmonad. It's a jar file, so I open it with java -jar logisim. The loading screen shows up correctly, and the window is made, but it is completely filled in with white.
    If I randomly click around the white mass I can sometimes select menus and whatnot, which popup correctly, but the main screen still shows only white when I close that menu.
    Currently, I need to start another X session with another WM (Openbox is what I am using) in order to use the program.
    Anyone have any clues as to what I need to do to fix this?

    Are you running jdk7? Try switching to openjdk6. The same thing happens to me if I try to run Logisim in Xmonad using jdk7.
    edit: If you want to use jdk7, the following work-around might interest you: http://www.haskell.org/haskellwiki/Xmon … va_console
    Last edited by stewSquared (2012-10-27 13:29:28)

  • Motion 5 Not Launching Correctly

    Purchased, for the first time, FCPx, Compressor 4 and Motion 5 from the Mac App Store. Both FCPx and Compressor launches and works fine. Motion worked upon the first initial launch after installation. Every subsequent launch of Motion comes up with the menus. Project Browser sometimes, but not always, displays. Most options in the menu drop-downs (things like New... and Preferences) and buttons in the Project Browser (you have to leave the app and then return to it to have the Project Browser appear) do not work. Even the buttons located on the Splash Screen (Apple Menu...About Motion) do not work. I have deleted the user preferences: com.apple.motionapp.plist I have also uninstalled, re-downloaded and reinstalled Motion from the Mac App Store. Any assistance in getting this program working, will be greatly appreciated.
    No previous versions of Final Cut (anything). Updated to OSX 10.6.8. Machine info: Mac Pro 2,1 8-core 3GHz, 8GB RAM, 1900XT and 7300GT

    This issue has been resolved.
    It seems there was an issue with the System and not the Application or User space.  I tried to restore 10.6.7 (with M5, FCPX and C4) installed.  (I installed these apps prior to 10.6.8.)  This resulted in kernel panics after restores from different dates and OS numbers.
    Re-installed SL on a clean partition and updated to 10.6.8 with the Combo download.  Ran Software Update once. Restarted to verify the system was working properly and then used Migration Assistant to restore the Apps and Users from TM.  Everything in these spaces restored except for Motion.  (It was not in the Application Folder in TM but the Application Support and User prefs were.)  I copied Motion from the 10.6.7 version of the TM backup to the now clean and fully migrated OS.  Motion works now as expected.  I don't know what was going on with this but am happy to report this resolution.  (I really don't want to go digging through Console to find out what really was causing this.)

  • [Solved] Characters not displaying correctly in some applications

    When I read things in applications like Firefox I've noticed that sometimes the " symbol is displayed wrong. Sometimes it is shown as what I can only describe as two forward-ticks stuck together (it won't let me paste it), and other times as two back-ticks ``. When I try to paste code over to the rxvt-unicode terminal the forward-tick symbol is displayed as a question mark, as are some other special symbols like maths characters. So I have two questions: are there any terminals that support such special characters? And is my character display problem related to setting up my locales correctly (which I think I already have)?
    I followed the steps on the wiki for setting up locales. I uncommented "en_GB.UTF-8 UTF-8" and "en_GB ISO-8859-1" in /etc/locale.gen, ran locale-gen as root, and added  LOCALE="en_GB.utf8" to /etc/rc.conf and "export LANG=en_GB.utf8" to my .zshrc. locale -a shows that the correct locales are installed.
    Last edited by slyson (2009-06-16 15:20:18)

    See this pdf for fixes: unix.derkeiler.com/pdf/Mailing-Lists/Fr … g00564.pdf.
    Type 'locale' on the console to find out your locale. Mine is en_GB.utf8.
    Now add the following to your shell profile or ~/.xinitrc.
    I already had this in my .zshrc:
    export LANG=en_GB.utf−8
    But I think the LC variable was overriding it. I Changed my LC_ALL to:
    export LC_ALL=en_GB.utf8
    (It was set to LC_ALL=C before).
    The above fixes copy/paste to most terminal apps, but some still misbehave. For example, I had to add this to ~/.emacs:
    ;; Set language environment for MULE.
    (set−language−environment 'UTF−8)
    ;; My customization for text modes
    (defun my−text−mode−hook ()
    (auto−fill−mode 1)
    (show−paren−mode t)
    (activate−input−method 'rfc1345) ; Good input method for UTF−8
    (add−hook 'text−mode−hook 'my−text−mode−hook)
    More examples are given on page 3 of the pdf.
    Last edited by slyson (2009-06-16 15:26:31)

  • [SOLVED] dmenu not working in i3

    I decided to give i3 a try, but pressing $mod+d doesn't do anything.
    Running dmenu-desktop from a terminal gives me:
    open2: exec of dmenu -i failed at /usr/bin/i3-dmenu-desktop line 315.
    Running dmenu failed. Is dmenu installed at all? Try running dmenu -v
    There is no binary called dmenu, but running i3-dmenu-desktop -v just printed 'dmenu-desktop 1.5 © 2012-2013 Michael Stapelberg'.
    What do I need to do to get dmenu working?
    Last edited by ThePacman (2014-10-10 13:54:07)

    i3-dmenu-desktop wrote:Is dmenu installed at all?
    ThePacman wrote:There is no binary called dmenu...
    Interesting....

  • (SOLVED)Xorg not functioning correctly.

    So, I've set up Arch systems before, but I am at wit's end with this problem.
    I've installed all the xorg packages as recommended by the installation guide, but unfortunately, every time I enter "startx" in the command line, I'm met with an black X environment, which makes my screen "blink" everytime I try to switch the tty. I'm able to see a mouse icon, but it changes from an "X" to an "arrow". When I AM able to get to another tty command line, I kill X, and look at the /var/log/Xorg.0.log, and this is what I find:
    http://pastebin.ca/2169475
    The "EQ Overflow" bit is a bit worrying.
    Video Card Information:
    Sapphire Radeon HD 6790 1GB 256-bit GDDR5 PCI Express 2.1 x16 HDCP Ready CrossFireX Support.
    If one could help, it would be much appreciated.
    EDIT: Forgot to mention that I am using the open source radeon driver, "xf86-video-ati". Thanks again!
    UPDATE 07/11/12: OK, so after much deliberation and suffering, I switched over to the catalyst driver. It worked, initially. It defaulted to the twm clock and terminals, as expected. HOWEVER. When I try to open my openbox session with tint2 with startx, the screen goes dark, and comes up to a frozen picture of the Arch Linux boot screen. I am, as of yet, unable to comprehend as to why Xorg is doing this. I'm going to look into my Xorg log file to see what went wrong. If any of you know anything, please tell me! Thanks.
    Last edited by CFlandre (2012-07-24 01:35:49)

    Hi,
    if you read and test this step by step it should be OK
    https://wiki.archlinux.org/index.php/Be … _Interface

  • TS3212 I have now installed and uninstalled iTunes 10.7.0.21 about 5 times and still iTunes app will not launch.  I have uninstalled my Norton AV and still nothing seems to work.  Any suggestions would be appreciated.

    I'm having problems installing iTunes on a Win 7 machine.  The app will not launch correctly.  It was working at one time, but now I have no idea why it would not work.  I tried uninstalling some applications and still nothing.  I did have to delete the Quicktime folders because it did not show up as being installed. Should I reinstall it since it doesnot look like iTunes reinstalled it?

    Are you getting an error message when you try to launch iTunes? If so, what does it say? (Precise text, please.)

  • TS1717 I am on Windows 7. Yesterday I ran an update on iTunes, today when I try to launch iTunes I get the following message: This copy of iTunes is corrupted or not installed correctly. Please re-install iTunes. I am worried that I have now lost my music

    I am on Windows 7. Yesterday I ran an iTunes update and today I receive this message when I try to launch iTunes: This copy of iTunes is corrupted and not installed correctly. Please re-install iTunes. I am woried that I have already lost my music and don't want to re-install.

    I found this on another discussion board and it really helped, I didn't have to uninstall anything and didn't lose any music
    Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair".

  • Updating my Win7 to 12.1, I get 'iTunes was not installed correctly Error 7 (Windows error 127). If I try to launch, I get 'The procedure entry point "CMBlockBufferCopyDataBytes" could not be located in the dynamic link library CoreMedia.dll'. Help!

    Windows version 7. Auto update of iTunes to version 12.1 from 12.0.1.
    At end of install process, message 'iTunes was not installed correctly. Error 7 (Windows error 127).
    Tried to launch iTunes, anyway, but immediately got message 'The procedure entry point "CMBlockBufferCopyDataBytes" could not be located in the dynamic link library CoreMedia.dll'.
    Tried downloading iTunes and updating manually - get exactly the same result.
    No problem using iTunes before this.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The error hints at a similar pattern to those discussed in the first and third boxes of the user tip, suggesting that you've got an outdated .dll file that needs replacing. You should find CoreMedia.dll in the one of the following folders:
         C:\Program Files\Common Files\Apple\Mobile Device Support
         C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    Delete it and then repair Apple Mobile Device Support from the Programs and Features control panel. If that doesn't work go for the full tear down and rebuild.
    tt2

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • Transaction launcher not rendering correctly in ECC6

    We're moving to ECC6 and have found that when our CRM5 Web IC launches a transaction in ECC6, it does not render correctly. It works ok in 4.7 Enterprise but in ECC6, the transaction (transaction PIQSTM) is displayed half way down the screen, the buttons appear twice and the main part of the transaction is pushed right down to the bottom of the screen.
    Is there something different we need to do in ECC6 that we did not need to do in 4.7 Enterprise ?
    thanks,
    Malcolm.

    anyone ?

  • [solved] NFS client will not work correctly

    I have all my $HOME on an NFS Server. So long I used suse and debian, now I want switch to arch but the nfs-client ist not working correctly:
    I start "portmap nfslock nfsd netfs" over rc.conf. When I do a "rpcinfo -p <ip-arch-system>" I got the following
    stefan:/home/stefan # rpcinfo -p 192.168.123.3
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100003    2   udp   2049  nfs
        100003    3   udp   2049  nfs
        100003    4   udp   2049  nfs
        100021    1   tcp  48988  nlockmgr
        100021    3   tcp  48988  nlockmgr
        100021    4   tcp  48988  nlockmgr
        100003    2   tcp   2049  nfs
        100003    3   tcp   2049  nfs
        100003    4   tcp   2049  nfs
        100005    3   udp    891  mountd
        100005    3   tcp    894  mountd
    As you see "status" is missing, so the statd is not running. It sould look like the result on my suse box:
    stefan:/home/stefan # rpcinfo -p 192.168.123.2
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100024    1   udp  32768  status
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100024    1   tcp  35804  status
        100021    1   tcp  35804  nlockmgr
        100021    3   tcp  35804  nlockmgr
        100021    4   tcp  35804  nlockmgr
    There is the "status" line and so the statd is running.
    How can I fix that problem, so that statd ist running on my arch box too?
    Last edited by stka (2007-06-10 15:59:48)

    The Problem ist solved.
    I use ldap for authentication. During the setup of the ldapclient I copied the nsswitch.ldap to nsswitch.conf. But the line for "hosts:" was:
    hosts:          dns ldap
    but in my dns ist no localhost entry. After I changed this line to:
    hosts:          files dns ldap
    everything was ok. The statd is now running and I can start to migrate to archlinux ;-)

  • My iTunes is not opening it says this version of iTunes has not been correctly localized for this language.Please run the english version, what can i do to solve it, this problem occurs in all user accounts.

    My iTunes is not working, it says This version of iTunes has not been correctly localized for this language.Please run the english version. But it is already the english version, and this problem occurs in all the user accounts. What can I do?

    Let's try a repair install of iTunes.
    Restart the PC first.
    If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair".
    If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", and click "Change". Select "Repair" and click "Next" as per the following screenshot:
    Can you launch your iTunes now?

Maybe you are looking for

  • My blackberry app world wont work!:S

    i put the rigth email and password in and click login and it says 'authenticating..... t'hen says 'an error gass occurred. please try again later.' it has been like this for  2 weeks now! what should i do thank xoxo

  • COM Component problem with BPC Excel

    Hi! We are using BPC MS 7.5 service pack 3 version. Microsoft Office 2007 On one of our client machines we got problem when trying to enter BPC for excel,nothing appears and something is downloading showing Installing COM Component from http://active

  • JDev 10.1.3 lookup error

    Hello everybody. I'm trying get session bean in JDev 10.1.3 debug: Context context = new InitialContext(); Object obj = context.lookup("ManageRecords"); ManageRecordsHome home = (ManageRecordsHome)PortableRemoteObject.narrow( obj, ManageRecordsHome.c

  • LaserJet P2055dn is not printing the last page

    Hello! Our LaserJet P2055dn prints all pages in a multipage document but not the last one. When a new document is sent to the printer, it first prints the final page of the previous document, then the new document (again without the last page). If a

  • Where do the deleted files go?

    My server was recently hosed, so I totally reinstalled the server. Now I've noticed that users are losing files all over the place when there laptops try to sync to the server. Where do the deleted files go?