Segmentation fail in gtk/gnome programms

When I start a GTK application, it doesn't run well and when I execute it from terminal, this error appears (example with mahjongg, from the package gnome-games)
2$ mahjongg
(mahjongg:21263): GLib-GObject-WARNING **: specified class size for type `Mahjongg' is smaller than the parent type's `GtkApplication' class size
(mahjongg:21263): GLib-CRITICAL **: g_once_init_leave: assertion `result != 0' failed
(mahjongg:21263): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed
Falha de segmentação
example with gnomine, Minesweeper game (from gnome-games either)
(gnomine:21338): GLib-GObject-WARNING **: specified class size for type `GnoMine' is smaller than the parent type's `GtkApplication' class size
(gnomine:21338): GLib-CRITICAL **: g_once_init_leave: assertion `result != 0' failed
(gnomine:21338): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed
(gnomine:21338): GLib-GIO-CRITICAL **: g_application_run: assertion `G_IS_APPLICATION (application)' failed
These errors happens and the games doesn't run.
Does anybody know how to solve this promblem?
Thanks

When I start a GTK application, it doesn't run well and when I execute it from terminal, this error appears (example with mahjongg, from the package gnome-games)
2$ mahjongg
(mahjongg:21263): GLib-GObject-WARNING **: specified class size for type `Mahjongg' is smaller than the parent type's `GtkApplication' class size
(mahjongg:21263): GLib-CRITICAL **: g_once_init_leave: assertion `result != 0' failed
(mahjongg:21263): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed
Falha de segmentação
example with gnomine, Minesweeper game (from gnome-games either)
(gnomine:21338): GLib-GObject-WARNING **: specified class size for type `GnoMine' is smaller than the parent type's `GtkApplication' class size
(gnomine:21338): GLib-CRITICAL **: g_once_init_leave: assertion `result != 0' failed
(gnomine:21338): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed
(gnomine:21338): GLib-GIO-CRITICAL **: g_application_run: assertion `G_IS_APPLICATION (application)' failed
These errors happens and the games doesn't run.
Does anybody know how to solve this promblem?
Thanks

Similar Messages

  • Qmaster Segments Fail

    I have set up Qmaster on my Intel Quad-Core as QuickCluster with services sharing 4 instances (for 4 cores).
    When I export my job in Compressor 3 using the cluster, it segments my project into 9 parts, as seen in the batch monitor window. The process begins exporting 4 segments, and 3 of the 4 segments fail instantly leaving only 1 segment running.
    What's the beef?

    If you click the Info button, what does the log say?

  • How to solve about rollback segment fail to extend?

    I've a transaction about 50,000 records, then process fail in script. the error code is ORA-01562 FAIL TO EXTEND ROLLBACK SEGMENT = num. I'm use oracle database 7.3.4., form 4.5

    It would be better to have several small transactions instead of one huge transaction of 50000 records, like you say. You may use an additional log table to keep the log of how far you've got in processing those 50000 records, and pick up from where you've left in case something goes wrong.
    Anyway, one thing that may help would be to use:
    alter tablespace your_rbs_tablespace
    add datafile ...;
    to have more space for your rollback segment(s).
    Eventually, you may have a large rollback segment and set transaction use huge_rbs, in order to have your huge transaction use that huge rollback segment.
    null

  • Move lob segment fails with invalid identifier

    Why does this fail:
    SQL> desc APPLSYS.WF_INBOUND_TABLE
    Name Null? Type
    Q_NAME VARCHAR2(30)
    MSGID NOT NULL RAW(16)
    CORRID VARCHAR2(128)
    PRIORITY NUMBER
    STATE NUMBER
    DELAY TIMESTAMP(6)
    EXPIRATION NUMBER
    TIME_MANAGER_INFO TIMESTAMP(6)
    LOCAL_ORDER_NO NUMBER
    CHAIN_NO NUMBER
    CSCN NUMBER
    DSCN NUMBER
    ENQ_TIME TIMESTAMP(6)
    ENQ_UID NUMBER
    ENQ_TID VARCHAR2(30)
    DEQ_TIME TIMESTAMP(6)
    DEQ_UID NUMBER
    DEQ_TID VARCHAR2(30)
    RETRY_COUNT NUMBER
    EXCEPTION_QSCHEMA VARCHAR2(30)
    EXCEPTION_QUEUE VARCHAR2(30)
    STEP_NO NUMBER
    RECIPIENT_KEY NUMBER
    DEQUEUE_MSGID RAW(16)
    USER_DATA SYSTEM.WF_PAYLOAD_T
    SENDER_NAME VARCHAR2(30)
    SENDER_ADDRESS VARCHAR2(1024)
    SENDER_PROTOCOL NUMBER
    USER_PROP ANYDATA
    SQL> alter table APPLSYS.WF_INBOUND_TABLE move TABLESPACE APPS_TS_TX_DATA;
    Table altered.
    SQL> ALTER TABLE APPLSYS.WF_INBOUND_TABLE MOVE LOB(USER_PROP) STORE AS (TABLESPACE APPS_TS_TX_DATA);
    ERROR at line 1:
    ORA-00904: "USER_PROP": invalid identifier

    user600570 wrote:
    Well, whatever the type happens to be, how to I move this segment?Doesn't the segment move when the corresponding table is moved to new tablespace?
    At least that is what I see.
    SQL> select * from v$version ;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> create table t nologging as select * from applsys.wf_inbound_table where 1 = 2 ;
    Table created.
    SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
    DBMS_METADATA.GET_DDL('TABLE','T')
      CREATE TABLE "APPS"."T"
       (     "Q_NAME" VARCHAR2(30),
         "MSGID" RAW(16),
         "CORRID" VARCHAR2(128),
         "PRIORITY" NUMBER,
         "STATE" NUMBER,
         "DELAY" TIMESTAMP (6),
         "EXPIRATION" NUMBER,
         "TIME_MANAGER_INFO" TIMESTAMP (6),
         "LOCAL_ORDER_NO" NUMBER,
         "CHAIN_NO" NUMBER,
         "CSCN" NUMBER,
         "DSCN" NUMBER,
         "ENQ_TIME" TIMESTAMP (6),
         "ENQ_UID" NUMBER,
         "ENQ_TID" VARCHAR2(30),
         "DEQ_TIME" TIMESTAMP (6),
         "DEQ_UID" NUMBER,
         "DEQ_TID" VARCHAR2(30),
         "RETRY_COUNT" NUMBER,
         "EXCEPTION_QSCHEMA" VARCHAR2(30),
         "EXCEPTION_QUEUE" VARCHAR2(30),
         "STEP_NO" NUMBER,
         "RECIPIENT_KEY" NUMBER,
         "DEQUEUE_MSGID" RAW(16),
         "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
         "SENDER_NAME" VARCHAR2(30),
         "SENDER_ADDRESS" VARCHAR2(1024),
         "SENDER_PROTOCOL" NUMBER,
         "USER_PROP" "SYS"."ANYDATA"
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "APPLSYSD"
    OPAQUE TYPE "USER_PROP" STORE AS LOB (
      ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
      CACHE
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
    SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
      2  where table_name = 'T' ;
    OWNER                          TABLE_NAME
    COLUMN_NAME
    SEGMENT_NAME                   TABLESPACE_NAME
    APPS                           T
    USER_PROP
    SYS_LOB0000365381C00035$$      APPLSYSD
    SQL> alter table t move tablespace APPLSYSX ;
    Table altered.
    SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
    DBMS_METADATA.GET_DDL('TABLE','T')
      CREATE TABLE "APPS"."T"
       (     "Q_NAME" VARCHAR2(30),
         "MSGID" RAW(16),
         "CORRID" VARCHAR2(128),
         "PRIORITY" NUMBER,
         "STATE" NUMBER,
         "DELAY" TIMESTAMP (6),
         "EXPIRATION" NUMBER,
         "TIME_MANAGER_INFO" TIMESTAMP (6),
         "LOCAL_ORDER_NO" NUMBER,
         "CHAIN_NO" NUMBER,
         "CSCN" NUMBER,
         "DSCN" NUMBER,
         "ENQ_TIME" TIMESTAMP (6),
         "ENQ_UID" NUMBER,
         "ENQ_TID" VARCHAR2(30),
         "DEQ_TIME" TIMESTAMP (6),
         "DEQ_UID" NUMBER,
         "DEQ_TID" VARCHAR2(30),
         "RETRY_COUNT" NUMBER,
         "EXCEPTION_QSCHEMA" VARCHAR2(30),
         "EXCEPTION_QUEUE" VARCHAR2(30),
         "STEP_NO" NUMBER,
         "RECIPIENT_KEY" NUMBER,
         "DEQUEUE_MSGID" RAW(16),
         "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
         "SENDER_NAME" VARCHAR2(30),
         "SENDER_ADDRESS" VARCHAR2(1024),
         "SENDER_PROTOCOL" NUMBER,
         "USER_PROP" "SYS"."ANYDATA"
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "APPLSYSX"
    OPAQUE TYPE "USER_PROP" STORE AS LOB (
      ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
      CACHE
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
    SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
      2  where table_name = 'T' ;
    OWNER                          TABLE_NAME
    COLUMN_NAME
    SEGMENT_NAME                   TABLESPACE_NAME
    APPS                           T
    USER_PROP
    SYS_LOB0000365381C00035$$      APPLSYSX
    SQL> drop table t purge ;
    Table dropped.If you want to be able to move the segment to a different tablespace than the table, I guess that is not possible. Oracle only allows LOBs to be stored in separate tablespace than the corresponding table provided they are defined as LOBs explcitly during table creation, unlike the LOB created by oracle internally as a result of column datatype being ANYDATA as in this case.

  • Failed my Java 2 Programmer certification by one QUESTION!!!

    Hi there ppl,
    now that I'm over feeling sorry for myself for failing my exam by ONE QUESTION lol, I would like to get some feedback (WITHOUT BREAKING THE SUN AGREEMENT) from others that have also taken this exam and whether or not you failed or passed, how you found the exam, and more importantly what did you find the best certification book to use and/or methodolgy for preparation? I've been using the Sybex Java 2 Programmer cert exam book (1.4 edition), but did find quite a contrast between the simplicity of the mock exams (of which I scored 74%, 82%, 82% and 88% through the numerous exams supplied with the book) and the complexity of the actual exam questions. I know this is due to my lack of experience and being self taught but I'm determined to pass this exam next and would happily buy another book to help me achieve this.
    Any feedback would be much appreciated.
    Thanks ppl.

    Thanks Sscotties,
    Was it the 1.4 exam you took? The reason I ask is that there's no java.io required for the 1.4 cert exam, which means that the exam should even be easier. lol. Doesn't make me feel any better, but I really don't want to fail this exam again. Yes I've failed before but I basically screwed up the whole thing as I was thrown off by this "true reflection thang" from these mocks to the real thing. I have to say that even on the second time around I still found it confusing. Generally I should know enough to get around 60-65% on a bad day regarding the real exam, but the way its structured and laid out in the exam is like walking into another dimension for me. I guess you're right when you say just focus on taking more mocks, improve wherever my weaknesses may be. I really just don't wanna feel like I did walking out of a 2 hour exam after a week of revising for it, feeling drained and with my head in the gutter and of course �240 worse off!!! lmao.
    Thanks for the advice mate. I'd better pass this next time or I don't think I could go through with all this again.

  • Patch Fails: 119907-13 Gnome 2.6.0_x86: Virtual File System Framework patch

    When I try to use my Sun(TM)Update Manager, I get:
    119907-13 Gnome 2.6.0_x86: Virtual File System Framework patch Failed.
    Utility used to install the update failed with exit code 997. Patch is not available in the patch directory.
    It is the only patch left to be installed and I tried rebooting several times with no luck. There is no 119907-13 directory or 119907-13.jar in my /var/sadm/spool either. Thanks for any hints.
    --Bob                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thanks.
    I have the free version of Solaris for the x86/x64 platform on my workstation at home. I did register the OS when I installed it, but I do not have a support contract.
    I am curious as to why this has never been an issue before with the hundreds of patches I've installed previously.
    If I do not wish to purchase a support contract, there ought to be a way to get the patch out of my Sun(TM) Update Manager so that the green indicator in my
    systray doesn't drive me nuts.
    Thanks for your help and any further suggestions.
    --Bob                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • [SOLVED]Failed to build gnome-settings-daemon-nopulse

    Hello,
    i hope its the right place and somebody can help me.
    I tried to install "gnome-settings-daemon-nopulse" from the aur and shortly after the build begins it stopped with a build failure.
    The Full log is:
    patching file plugins/common/Makefile.am
    patching file plugins/common/gsd-power-helper.c
    patching file plugins/common/gsd-power-helper.h
    patching file plugins/media-keys/gsd-media-keys-manager.c
    patching file plugins/power/gsd-power-manager.c
    Hunk #14 succeeded at 3444 (offset 2 lines).
    Hunk #15 succeeded at 3685 (offset 2 lines).
    Hunk #16 succeeded at 3975 (offset 2 lines).
    Hunk #17 succeeded at 4008 (offset 2 lines).
    Hunk #18 succeeded at 4121 (offset 2 lines).
    Hunk #19 succeeded at 4155 (offset 1 line).
    Hunk #20 succeeded at 4171 (offset 1 line).
    Hunk #21 succeeded at 4178 (offset 1 line).
    Hunk #22 succeeded at 4224 (offset 1 line).
    gnome-settings-daemon/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
    parallel-tests: error: required file './test-driver' not found
    parallel-tests: 'automake --add-missing' can install 'test-driver'
    plugins/media-keys/cut-n-paste/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
    Has someone an idea how to fix it?
    greets
    odin89
    Last edited by odin89 (2013-01-30 14:41:41)

    One way is to add the "--add-missing" flag the automake line in the PKGBUILD.
    But as far as why it happens, maybe someone else can chime in. When I try it in a clean chroot, the PKGBUILD "just works" as is. On my live systems, I get the same error unless I add "--add-missing."
    Last edited by tdy (2013-01-30 13:36:18)

  • Text on right in GNOME/GTK apps in Openbox

    On the toolbars of my GTK/GNOME apps, the toolbar has text underneath the icons, I was wondering if this could be changed to be on the right, alongside the icon.
    I know this can be done in GNOME, but I'm running in Openbox, so I'm guessing the configuration might be hidden somewhere, I'm looking to gconf, could be wrong...
    I know this is just a minor thing, but im a bit of a perfectionist

    Thanks SamC, just used lxappearance (though I quickly reinstated my method of doing things) from it I found that you can just add this to .gtkrc.mine:
    gtk-toolbar-style=3
    I've also just found this:
    http://awesome.naquadah.org/wiki/index. … g_GTK_Apps
    Which also helps

  • Most recent gnome-shell update (3.2.0-2) is eating my cpu alive!

    Ever since I updated to the 3.2.0-2 gnome-shell, my cpu sits at around 60% idle.  This slows down a lot of things including overlay mode.  Is anyone else experiencing this?
    There was also the kernel update (3.0.6-1), not sure if this would contribute...
    Here is my ~/.xsession-errors.  I'm not sure what to parse for though... well besides errors...
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    gnome-session[2282]: EggSMClient-WARNING: Desktop file '/home/rick/.config/autostart/dropbox.desktop' has malformed Icon key 'dropbox.png'(should not include extension)
    GNOME_KEYRING_CONTROL=/tmp/keyring-ttZ6ma
    GNOME_KEYRING_CONTROL=/tmp/keyring-ttZ6ma
    GPG_AGENT_INFO=/tmp/keyring-ttZ6ma/gpg:0:1
    SSH_AUTH_SOCK=/tmp/keyring-ttZ6ma/ssh
    GNOME_KEYRING_CONTROL=/tmp/keyring-ttZ6ma
    GPG_AGENT_INFO=/tmp/keyring-ttZ6ma/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-ttZ6ma
    (gnome-settings-daemon:2315): keybindings-plugin-WARNING **: Key binding (screenreader) is incomplete
    (gnome-settings-daemon:2315): keybindings-plugin-WARNING **: Key binding (magnifier) is incomplete
    (gnome-settings-daemon:2315): keybindings-plugin-WARNING **: Key binding (onscreenkeyboard) is incomplete
    Xlib: extension "RECORD" missing on display ":0".
    Use of XRecord requested, but failed to initialize.
    ** Message: applet now removed from the notification area
    Initializing tracker-miner-fs...
    Tracker-Message: Setting up monitor for changes to config file:'/home/rick/.config/tracker/tracker-miner-fs.cfg'
    Starting log:
    File:'/home/rick/.local/share/tracker/tracker-miner-fs.log'
    Initializing tracker-store...
    Tracker-Message: Setting up monitor for changes to config file:'/home/rick/.config/tracker/tracker-store.cfg'
    Tracker-Message: Setting up monitor for changes to config file:'/home/rick/.config/tracker/tracker-store.cfg'
    Starting log:
    File:'/home/rick/.local/share/tracker/tracker-store.log'
    (nautilus:2365): Tracker-DEBUG: Initializing tracker-tags extension
    Initializing nautilus-dropbox 0.6.9
    Initializing nautilus-open-terminal extension
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): color-plugin-WARNING **: failed to create directory on startup: Error creating directory: File exists
    (gnome-settings-daemon:2315): GnomeDesktop-CRITICAL **: gnome_rr_crtc_get_gamma: assertion `crtc != NULL' failed
    (gnome-settings-daemon:2315): color-plugin-WARNING **: failed to reset xrandr-Lenovo Group Limited gamma tables: no data in the CLUT array
    (gnome-settings-daemon:2315): GnomeDesktop-CRITICAL **: gnome_rr_crtc_get_gamma: assertion `crtc != NULL' failed
    (gnome-settings-daemon:2315): color-plugin-WARNING **: failed to reset xrandr-Lenovo Group Limited gamma tables: no data in the CLUT array
    JS LOG: System monitor applet init from /usr/share/gnome-shell/extensions/[email protected]
    JS LOG: System monitor applet enabling
    glibtop: Non-standard uts for running kernel:
    release 3.0-ARCH=3.0.0 gives version code 196608
    JS LOG: System monitor applet enabling done
    (gnome-shell:2351): Clutter-WARNING **: Attempting to add actor of type 'ShellGenericContainer' to a container of type 'StBoxLayout', but the actor has already a parent of type 'StBoxLayout'.
    (gnome-shell:2351): St-WARNING **: Actor of type 'ShellGenericContainer' is not a child of the StBoxLayout container
    JS ERROR: !!! WARNING: 'assignment to undeclared variable idx'
    JS ERROR: !!! WARNING: file '/usr/share/gnome-shell/extensions/[email protected]/extension.js' line 4 exception 0 number 156
    JS LOG: GNOME Shell started at Wed Oct 05 2011 09:11:46 GMT-0400 (EDT)
    failed to create drawable
    ** Message: applet now embedded in the notification area
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_editable: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_text: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_set_text: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_editable: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_text: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_set_text: assertion `CLUTTER_IS_TEXT (self)' failed
    Window manager warning: Log level 16: STACK_OP_ADD: window 0x2600185 already in stack
    Window manager warning: Log level 16: STACK_OP_ADD: window 0x2600185 already in stack
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///usr/share/applications/NeXpose%20Security%20Console.desktop': 'Couldn't load desktop file:'/usr/share/applications/NeXpose Security Console.desktop''
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///usr/share/applications/brasero-nautilus.desktop': 'Desktop file doesn't contain type'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/kde4-nepomukcontroller.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/sun-javaws.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/java-policy-settings.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/sun_java.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/Java.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnome-font-viewer.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/notification-daemon.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/opera-widget-installer.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/session-properties.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/qtconfig.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/vinagre-file.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/nm-applet.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/nm-vpnc-auth-dialog.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/mutter.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/metacity.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gmenu-simple-editor.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gkbd-indicator-plugins-capplet.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnome-keyring-prompt.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/kde4-kmailservice.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/eclipse.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/kde4-ktelnetservice.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/seahorse-pgp-keys.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/PlayOnLinux.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/bluetooth-sendto.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/bluetooth-wizard.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Thunderbird-29NL2V.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/etherape.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/math.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/ooo-extension-manager.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/nautilus-autorun-software.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gkbd-keyboard-display.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/android-sdk.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnome-nettool.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnome-panel.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/cairo-dock.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/wireshark.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnomecc.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gstreamer-properties.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gcr-viewer.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/wine.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/seahorse-pgp-signature.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/sun-java.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/hamster-applet.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/Firewall%20Configuration.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Thunderbird-GW78ZV.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-packettracer-HMA2MV.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/moonlight3d.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/rhythmbox-device.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/seahorse-pgp-encrypted.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-packettracer-3OFJLV.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/zenmap.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-acroread-NPCHLV.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gsynaptics.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/avant-window-navigator.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/VirtualBox.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gok.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/kde4-kdbg.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/ettercap.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/kde4-knetattach.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/tracker-preferences.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/alacarte-made.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Thunderbird-IVN00V.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Evolution-6AL8VV.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/alacarte-made-3.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/vmware-player.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/users.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Thunderbird-KF070V.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/pdfedit.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/hplip.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/alacarte-made-1.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/r.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/userapp-Thunderbird-GZGR2V.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/alacarte-made-6.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gufw.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/alacarte.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/nm-connection-editor.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/network.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/flash-player-properties.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/seahorse-pgp-preferences.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gnome-user-share-properties.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/system-config-printer.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/shares.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/gksu-properties.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/paprefs.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/pavumeter.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/time.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/empathy-accounts.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/opera-widget-manager.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    (tracker-miner-fs:2357): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///home/rick/.local/share/applications/Firewall%20Configuration-1.desktop': 'Desktop file is 'hidden', not gathering metadata for it'
    Window manager warning: Log level 16: STACK_OP_RAISE_ABOVE: sibling window 0x22007e9 not in stack
    Window manager warning: Log level 16: STACK_OP_LOWER_BELOW: sibling window 0x22007e9 not in stack
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_editable: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_get_text: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-CRITICAL **: clutter_text_set_text: assertion `CLUTTER_IS_TEXT (self)' failed
    (gnome-shell:2351): Clutter-WARNING **: The actor 'uiGroup' is currently inside an allocation cycle; calling clutter_actor_queue_relayout() is not recommended
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    Window manager warning: Log level 8: g_signal_handler_disconnect: assertion `handler_id > 0' failed
    Window manager warning: Log level 8: g_signal_handler_disconnect: assertion `handler_id > 0' failed
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    Window manager warning: Log level 8: g_signal_handler_disconnect: assertion `handler_id > 0' failed
    Window manager warning: Log level 16: STACK_OP_RAISE_ABOVE: sibling window 0x2201aae not in stack
    Window manager warning: Log level 16: STACK_OP_LOWER_BELOW: sibling window 0x2201aae not in stack
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    Created new window in existing browser session.
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-shell:2351): Clutter-WARNING **: The actor 'uiGroup' is currently inside an allocation cycle; calling clutter_actor_queue_relayout() is not recommended
    Created new window in existing browser session.
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    JS ERROR: !!! Exception was: TypeError: apObj is null
    JS ERROR: !!! lineNumber = '1306'
    JS ERROR: !!! fileName = '"/usr/share/gnome-shell/js/ui/status/network.js"'
    JS ERROR: !!! stack = '"([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1306
    JS ERROR: !!! message = '"apObj is null"'
    Window manager warning: Log level 8: g_signal_handler_disconnect: assertion `handler_id > 0' failed
    Window manager warning: Log level 8: g_signal_handler_disconnect: assertion `handler_id > 0' failed
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    JS ERROR: !!! Exception in callback for signal: destroy
    JS ERROR: !!! message = '"No signal connection 4 found"'
    JS ERROR: !!! lineNumber = '74'
    JS ERROR: !!! fileName = '"/usr/share/gjs-1.0/signals.js"'
    JS ERROR: !!! stack = '"_disconnect(4)@/usr/share/gjs-1.0/signals.js:74
    ([object Object])@/usr/share/gnome-shell/js/ui/popupMenu.js:962
    _emit("destroy")@/usr/share/gjs-1.0/signals.js:124
    ()@/usr/share/gnome-shell/js/ui/popupMenu.js:144
    ()@/usr/share/gnome-shell/js/ui/status/network.js:188
    ([object _private_NMClient_DeviceWifi],[object _private_NMClient_AccessPoint])@/usr/share/gnome-shell/js/ui/status/network.js:1298
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    Created new window in existing browser session.
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    Window manager warning: Log level 16: STACK_OP_RAISE_ABOVE: sibling window 0x2215e32 not in stack
    Window manager warning: Log level 16: STACK_OP_LOWER_BELOW: sibling window 0x2215e32 not in stack
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    [2619:5521:12043149874:ERROR:x509_certificate_nss.cc(797)] CERT_PKIXVerifyCert for 10.16.4.10 failed err=-8179
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (gnome-settings-daemon:2315): power-plugin-WARNING **: failed to restore backlight to 100: out of brightness range: 100, has to be 15 -> 0
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_type_hint: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_decorated: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GtkWidget'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_widget_get_toplevel: assertion `GTK_IS_WIDGET (widget)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `<invalid>' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_type_hint: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `<invalid>' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_decorated: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `<invalid>' in cast to `GtkWidget'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_widget_get_toplevel: assertion `GTK_IS_WIDGET (widget)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_type_hint: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_decorated: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_widget_get_toplevel: assertion `GTK_IS_WIDGET (widget)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_type_hint: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_decorated: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_widget_get_toplevel: assertion `GTK_IS_WIDGET (widget)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_type_hint: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_qdata: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWindow'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_window_get_decorated: assertion `GTK_IS_WINDOW (window)' failed
    (exe:5603): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget'
    (exe:5603): Gtk-CRITICAL **: IA__gtk_widget_get_toplevel: assertion `GTK_IS_WIDGET (widget)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (exe:5603): GLib-GObject-CRITICAL **: g_object_get_q

    I have had problems where more than one instance of gnome-shell was running, and that took a lot of CPU.
    Killing the excess gnome-shell processes fixed the problem.
    Last edited by ajbader (2011-10-05 17:30:54)

  • Gnome-java Widget question (sorry if this is the wrong section)

    I have created three files, yes i know naming conventions and spelling is an issue, but bare with me. I plan to clean all this up as soon as I get this issue figured out. right now I am flinging mud like a howler monkey.
    File One is a test file that calls everything together:
    package test_window_creation;
    import org.gnome.gtk.*;
    import window_creation.*;
    * @author adam
    public class Create_Window_test1
          * @param args
         public static void main(String[] args)
              Gtk.init(args);
              new Create_Window();
              Gtk.main();
    }File Two is the Create_Window Class
    package window_creation;
    import org.gnome.gtk.*;
    * Very simple class to create the window construct.
    * @author adam
    * @since version 1.0.0
    public class Create_Window
         public Create_Window()
              final Window window;
              Navagation n = new Navagation();
              window = new Window();
              window.add(n.Navagation_Bar());
              //add window components here
              window.setDefaultSize(800, 600);
              window.showAll();
    }and finally File three is the Navagation (menu) class that has a private method that contains all the core componets of a menu bar, while the public method Navagation_Bar() is used to tie all those into one.
    package window_creation;
    import org.gnome.gtk.Gtk;
    import org.gnome.gtk.Label;
    import org.gnome.gtk.Menu;
    import org.gnome.gtk.MenuBar;
    import org.gnome.gtk.MenuItem;
    import org.gnome.gtk.SeparatorMenuItem;
    import org.gnome.gtk.Widget;
    * This Class is used with {@link Create_Window} to add a menu to the window.
    * This Class also hold basic information about each method involved.
    * This class contains File, View and Edit menus.
    * @author adam
    * @since version 1.0.0
    public class Navagation
          * Create the navigation (also known as Menu) for the window.
          * This Navigation method can be reused in all sorts of classes
          * that require a navigation method to be used.
          * This method is private to protect the core
          * components of the navigation bar.
         private final static Widget Navagation()
              final Menu fileMenu, editMenu, viewMenu;
              final MenuItem file, edit, view;
              final MenuItem save, copy, paste, close, help;
              final Label label;
              label = new Label ("hello World");
              fileMenu = new Menu();
              editMenu = new Menu();
              viewMenu = new Menu();
              save = new MenuItem("save");
              copy = new MenuItem("copy");
              paste = new MenuItem("paste");
              help = new MenuItem("help");
              close = new MenuItem("close");
              fileMenu.append(save);
              fileMenu.append(new SeparatorMenuItem());
              fileMenu.append(close);
              editMenu.append(copy);
              editMenu.append(paste);
              viewMenu.append(help);
              //close will close the window.
              close.connect(new MenuItem.Activate()
                   @Override
                   public void onActivate(MenuItem source)
                        Gtk.mainQuit();     
              //Help Should display a label right now until I can show a window
              help.connect(new MenuItem.Activate()
                   @Override
                   public void onActivate(MenuItem arg0)
                        label.setLabel("This is the sample help. replace this with a window.");     
              return label;
         public Widget Navagation_Bar()
              final MenuBar bar;
              bar = new MenuBar();
              bar.append(Navagation());
              return bar;
    }Now from what I understand everything has to be a widget in order to be used or added or append to other methods, classes and so on. but for those familar with gnome-java for gtk+ could some one help me out? I am getting this error on run:
    Exception in thread "main" org.gnome.glib.FatalError: Gtk-CRITICAL
    gtk_menu_shell_insert: assertion `GTK_IS_MENU_ITEM (child)' failed
         at org.gnome.gtk.GtkMenuShell.gtk_menu_shell_append(Native Method)
         at org.gnome.gtk.GtkMenuShell.append(GtkMenuShell.java:63)
         at org.gnome.gtk.MenuShell.append(MenuShell.java:79)
         at window_creation.Navagation.Navagation_Bar(Navagation.java:93)
         at window_creation.Create_Window.<init>(Create_Window.java:23)
         at test_window_creation.Create_Window_test1.main(Create_Window_test1.java:24)
    Which I know deals with the navigation bar to be precise. but what am I doing wrong to get this error thrown?

    Disclaimer: I've done no GTK programming at all.
    A naive reading of both the code and the exception stack trace suggests that Navagation.Navagation() is returning the wrong thing.
    The exception says that an assertoin that chile is a menu item failed.
    Is a Label a MenuItem?
    Unless I missed it,you are not doing anything with the menu items you create in Navagation.Navagation().

  • [REDHAT] Newb, rpm, Failed dependencies ...

    People,
    I'm trying to install Oracle on my RH box.
    The Oracle installer complained about some missing rpms:
    Checking for compat-libstdc++-296-2.96-132.7.2; found Not found. Failed <<<<
    Checking for libstdc++devel-3.4.3-22.1; found Not found. Failed <<<<
    Checking for openmotif-21-2.1.30-11; found Not found. Failed <<<<
    Checking for pdksh-5.2.14-30; found Not found. Failed <<<<
    Checking for gnome-libs-1.4.1.2.90-44.1; found Not found. Failed <<<<
    Checking for sysstat-5.0.5-1; found Not found. Failed <<<<
    Checking for compat-db-4.1.25-9; found Not found. Failed <<<<
    Checking for control-center-2.8.0-12; found Not found. Failed <<<<
    Checking for xscreensaver-4.18-5.rhel4.2; found Not found. Failed <<<<
    I found some close matches on my DVD and installed them with this script:
    #! /bin/sh
    rpm -Uvh compat-db-4.1.25-9.i386.rpm
    rpm -Uvh compat-libstdc++-296-2.96-132.7.2.i386.rpm
    rpm -Uvh control-center-2.8.0-12.rhel4.2.i386.rpm
    rpm -Uvh gnome-libs-1.4.1.2.90-44.1.i386.rpm
    rpm -Uvh libstdc++-devel-3.4.5-2.i386.rpm
    rpm -Uvh openmotif21-2.1.30-11.RHEL4.4.i386.rpm
    rpm -Uvh pdksh-5.2.14-30.3.i386.rpm
    rpm -Uvh sysstat-5.0.5-7.rhel4.i386.rpm
    rpm -Uvh xscreensaver-4.18-5.rhel4.10.i386.rpm
    Now redhat is complaining:
    [root@ow2 software]# sh -x rpm4ow2.sh
    + rpm -Uvh compat-db-4.1.25-9.i386.rpm
    warning: compat-db-4.1.25-9.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    Preparing... ########################################### [100%]
    1:compat-db ########################################### [100%]
    + rpm -Uvh compat-libstdc++-296-2.96-132.7.2.i386.rpm
    warning: compat-libstdc++-296-2.96-132.7.2.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    Preparing... ########################################### [100%]
    package compat-libstdc++-296-2.96-135 (which is newer than compat-libstdc++-296-2.96-132.7.2) is already installed
    + rpm -Uvh control-center-2.8.0-12.rhel4.2.i386.rpm
    warning: control-center-2.8.0-12.rhel4.2.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    gnome-icon-theme is needed by control-center-2.8.0-12.rhel4.2.i386
    libeel-2.so.2 is needed by control-center-2.8.0-12.rhel4.2.i386
    libgail-gnome is needed by control-center-2.8.0-12.rhel4.2.i386
    libgailutil.so.17 is needed by control-center-2.8.0-12.rhel4.2.i386
    libmetacity-private.so.0 is needed by control-center-2.8.0-12.rhel4.2.i386
    libnautilus.so.2 is needed by control-center-2.8.0-12.rhel4.2.i386
    libxklavier >= 1.02 is needed by control-center-2.8.0-12.rhel4.2.i386
    libxklavier.so.8 is needed by control-center-2.8.0-12.rhel4.2.i386
    xscreensaver is needed by control-center-2.8.0-12.rhel4.2.i386
    + rpm -Uvh gnome-libs-1.4.1.2.90-44.1.i386.rpm
    warning: gnome-libs-1.4.1.2.90-44.1.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    ORBit is needed by gnome-libs-1.4.1.2.90-44.1.i386
    gtk+ >= 1:1.2.5 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    imlib is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libIIOP.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libORBit.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libORBitCosNaming.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libORBitutil.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libgdk-1.2.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libgdk_imlib.so.1 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libglib-1.2.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libgmodule-1.2.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libgtk-1.2.so.0 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    libpng.so.2 is needed by gnome-libs-1.4.1.2.90-44.1.i386
    + rpm -Uvh libstdc++-devel-3.4.5-2.i386.rpm
    warning: libstdc++-devel-3.4.5-2.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    libstdc++ = 3.4.5-2 is needed by libstdc++-devel-3.4.5-2.i386
    libstdc++-devel = 4.1.1-1.fc5 is needed by (installed) gcc-c++-4.1.1-1.fc5.i386
    libstdc++-devel >= 4.1.0 is needed by (installed) libstdc++so7-devel-4.2.0-0.3.20060428.fc5.3.i386
    + rpm -Uvh openmotif21-2.1.30-11.RHEL4.4.i386.rpm
    warning: openmotif21-2.1.30-11.RHEL4.4.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    Preparing... ########################################### [100%]
    1:openmotif21 ########################################### [100%]
    + rpm -Uvh pdksh-5.2.14-30.3.i386.rpm
    warning: pdksh-5.2.14-30.3.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    pdksh conflicts with ksh-20060124-3.i386
    + rpm -Uvh sysstat-5.0.5-7.rhel4.i386.rpm
    warning: sysstat-5.0.5-7.rhel4.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    Preparing... ########################################### [100%]
    1:sysstat ########################################### [100%]
    + rpm -Uvh xscreensaver-4.18-5.rhel4.10.i386.rpm
    warning: xscreensaver-4.18-5.rhel4.10.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    xloadimage is needed by xscreensaver-4.18-5.rhel4.10.i386
    [root@ow2 software]#
    I have some basic questions.
    Q: What is the best way to deal with this?
    I'm a bit short on common sense when it comes to using rpm to install
    Linux software. I'm worried that if I try to force something in,
    something else, somewhere else will break.
    Now I have some more specific questions.
    I see this:
    + rpm -Uvh control-center-2.8.0-12.rhel4.2.i386.rpm
    warning: control-center-2.8.0-12.rhel4.2.i386.rpm: Header V3 DSA signature: NOKEY, key ID 443e1821
    error: Failed dependencies:
    gnome-icon-theme is needed by control-center-2.8.0-12.rhel4.2.i386
    libeel-2.so.2 is needed by control-center-2.8.0-12.rhel4.2.i386
    libgail-gnome is needed by control-center-2.8.0-12.rhel4.2.i386
    libgailutil.so.17 is needed by control-center-2.8.0-12.rhel4.2.i386
    libmetacity-private.so.0 is needed by control-center-2.8.0-12.rhel4.2.i386
    libnautilus.so.2 is needed by control-center-2.8.0-12.rhel4.2.i386
    libxklavier >= 1.02 is needed by control-center-2.8.0-12.rhel4.2.i386
    libxklavier.so.8 is needed by control-center-2.8.0-12.rhel4.2.i386
    xscreensaver is needed by control-center-2.8.0-12.rhel4.2.i386
    I assume the proper way to deal with this is to search around on my DVD for 9
    rpms which correspond to the 9 lines above spit out by the error handler.
    True??
    -Peter
    [email protected]
    http://GoodJobFastCar.com

    I assume the proper way to deal with this is to search around on my DVD for 9
    rpms which correspond to the 9 lines above spit out by the error handler.
    True??True. Message tells you that packages depends on another package or file which is part of other package. All you need to do is to solve all dependencies (install dependent packages).

  • [SOLVED] DWM running with gnome difficulties - cracked leaving GNOME!

    UPDATE: concept as a perceived requirement has been scrubed. No longer needing Gnome's environment ... just some gtk/gnome libraries here and there though, obviously. See last post of mine here if ya like and you're rushed a bit.
    Having problems getting gnome to live with DWM though I can compile myself as i just learned how from the wiki.
    OBJECTIVE: retain at least the bottom menu bar of gnome (and program access) for a while yet ....  while using DWM.
    Hi... having the most amazing time with Xmonad, awesome, stumpwm, dmenu etc.
    At this point I've realized that Xmonad and DWM have basically the same keybinding.
    For how it work WELL, as it's an originator, and keeping it simple ummm.... was it 18k or 180k?  hehehe  (see other posts about dwm) I'm going to go with dwm for the forseeable future. they're all great though having done the studying it's really a simple decision.... If I wanted to swap to something else later I'd have the skill to know how simple that would be... dwm does cover ALL of what I sensibly need to work quickly and SIMPLY/manageably...
    DUE TO UPDATE COMMENT AT TOP  - SOME OF THE NEXT COUPLE OF POST IS REDUNDANT a BIT though maybe not:
    So... I'm wishing to be able to access my folders and programs through the gnome menu as a fail-safe until I figure out how to get around any gottcha before I reinstall WITHOUT gnome (just some of the libraries obviously for packages that need them)
    I really need to get going immediately with DWM and having had lots of fun with Xmonad (works easily with gnome though i like the simplicity of default DWM) ...
    ALL I really need is what I now have left of gnome's desktop visibility which is the bottom bar with a menu applet embeded in it...
    Actually.... IF there's a way to GRAPHICALLY see folders ie. boot programs without having to find the binary though would be cool.
    Gnome can do it's thing in the background.... though right now ALL I can get by adding DWM WITH metacity in the gnome sessions properties leaves me WITHOUT the bootom bar that gets me to my programs...
    yep, duh.
    any assistance apreciated as I can't stand working without dwm (or similar tiling wm) though I'm too new at it and generally not skilled enough at this move to get to my program's ICONS...  using dmenu for all booting just isn't practical for me today..  then again who knows what the next hour will bring! hehehe
    So..... ANYONE have DWM code that'll work??? .... I think I'd prefer it to be stock otherwise...
    whatver happens thanks and everything's so cool.... have learned SO much....
    Last edited by yvonney (2009-02-03 09:44:22)

    well as i remember, my own path was something like this...
    Windozes -> PCLinuxOS -> (K-X)Ubuntu -> Arch(XFCE4(desktop environment)) -> Arch(Fluxbox(no DE)) -> Arch(wmii+gnu/screen) -> Arch(dwm+gnu/screen)
    not talking about GNU/screen its like not talking about breathing to me right now at the beggining (like all i pass throught in GNU/linux) i can barely understand something "as complex" to understand like screen, but using it, showed me that EVERYTHING is a matter of understanding throught direct experience
    so i'll recommend to you that you start looking to gnu/screen, is so damn easy to configure/use once you understand it, but difficult when you start reading about it, like dwm is in first place
    what i do for file assosiations and such is using midnight commander (cli-file manager) and i edited a menu (F2 on a dir/file) and it popups showing the list of apps that i configured to open that file extension, i configured tuxcmd in the past but i didnt used it for months now...
    here's the ~/.mc/menu i did... (i use urxvt as a daemon starting "urxvtd -q -f -o &" in .xinit, you may change "urxvtc" with your terminal emulator of choice... (i hope it will be urxvt(c) and not something like gnome-terminal )
    shell_patterns=0
    + ! t t
    @ Do something on the current file
    CMD=%{Enter command}
    $CMD %f
    7 compress to 7zip (dir27z)
    urxvtc -e dir27z %f &
    @ compress file to zip (file2zip)
    urxvtc -e file2zip %f &
    @ compress dir to zip (dir2zip)
    urxvtc -e dir2zip %f &
    @ dir to iso (mkisofs -V volume_name -J -r -o isoimage.iso)
    urxvtc -e mkisofs -V NEW -J -r -o isoimage.iso %f &
    s make symlink in /tmp/burn (mksym)
    mksym %f &
    x make executable (chmod 755)
    chmod 755 %f
    r chown -cR root:root
    sudo chown -cR root:root %f
    a chown -cR aleyscha:users
    sudo chown -cR aleyscha:users %f
    u mount /dev/cdrom
    mount /dev/cdrom
    u umount /dev/cdrom
    umount /dev/cdrom
    u wodim -v dev=/dev/cdrom -blank=fast
    urxvtc -e wodim -v dev=/dev/cdrom -blank=fast &
    u dd if=/dev/cdrom of=/downloads/New/isoimage.iso
    urxvtc -e dd if=/dev/cdrom of=/downloads/New/isoimage.iso &
    u unmount ISO Image (fusermount -u /mnt/cdrom)
    fusermount -u /mnt/cdrom
    u unmount ISO Image (fusermount -u /mnt/iso1)
    fusermount -u /mnt/iso1
    u unmount ISO Image (fusermount -u /mnt/iso2)
    fusermount -u /mnt/iso2
    g edit file in gvim as root (sudo gvim %f &)
    sudo gvim %f &
    c copy (fui %f)
    urxvtc -e fui %f &
    p paste (fui --copy)
    urxvtc -e fui --copy &
    p paste (fui --move)
    urxvtc -e fui --move &
    c clamscan (clamscan --recursive --infected --bell --remove)
    urxvtc -e clamscan --recursive --infected --bell --remove %f &
    b Send via Bluetooth to device (obexftp -b 00:17:D5:85:0D:6F -p)
    obexftp -b 00:17:D5:85:0D:6F -p %f &
    + t t
    d Do something on the tagged files
    set %t; CMD=%{Enter command}
    while [ -n "$1" ]; do
    $CMD "$1"
    shift
    done
    + t t
    @ Make symlink in /tmp/burn
    while [ -n "$1" ]; do
    mksym "$1"
    shift
    done
    0 Edit a bug report and send it to root
    I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
    ${EDITOR-vi} $I
    test -r $I && mail root < $I
    rm -f $I
    =+ f \.1$ | f \.3$ | f \.4$ | f \.5$ | f \.6$ | f \.7$ | f \.8$ | f \.man$ & t r
    1 Display the file with roff -man
    nroff -man %f | less
    2 Call the info hypertext browser
    info
    = t d
    3 Compress the current subdirectory (tar.gz)
    Pwd=`basename "%d" /`
    echo -n "Name of the compressed file (without extension) [$Pwd]: "
    read tar
    if [ "$tar"x = x ]; then tar="$Pwd"; fi
    cd .. && \
    tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
    echo "../$tar.tar.gz created."
    4 Compress the current subdirectory (tar.bz2)
    Pwd=`basename %d /`
    echo -n "Name of the compressed file (without extension) [$Pwd]: "
    read tar
    if [ "$tar"x = x ]; then tar="$Pwd"; fi
    cd .. && \
    tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
    echo "../$tar.tar.bz2 created."
    = f \.c$ & t r
    + f \.c$ & t r & ! t t
    5 Compile and link current .c file
    make `basename %f .c` 2>/dev/null || cc -O -o `basename %f .c` %f
    + t r & ! t t
    a Append file to opposite
    cat %f >>%D/%f
    + t t
    A Append files to opposite files
    set %t
    while [ -n "$1" ]; do
    cat $1 >>%D/$1
    shift
    done
    + t r & ! t t
    d Delete file if a copy exists in the other directory.
    if [ "%d" = "%D" ]; then
    echo "The two directores must be different"
    exit 1
    fi
    if [ -f %D/%f ]; then # if two of them, then
    if cmp -s %D/%f %f; then
    rm %f && echo %f: DELETED
    else
    echo "%f and %D/%f differ: NOT deleted"
    echo -n "Press RETURN "
    read key
    fi
    else
    echo %f: No copy in %D/%f: NOT deleted.
    fi
    + t t
    D Delete tagged files if a copy exists in the other directory.
    if [ "%d" = "%D" ]; then
    echo "The two directores must be different"
    exit 1
    fi
    for i in %t
    do
    if [ -f %D/$i ]; then
    SUM1="`sum $i`"
    SUM2="`sum %D/$i`"
    if [ "$SUM1" = "$SUM2" ]; then
    rm $i && echo ${i}: DELETED
    else
    echo $i and %D/$i differ: NOT deleted.
    fi
    else
    echo %f has no copy in %D/%f: NOT deleted.
    fi
    done
    m View manual page
    MAN=%{Enter manual name}
    %view man -P cat $MAN
    = f \.gz$ & t r
    + ! t t
    n Inspect gzip'ed newsbatch file
    dd if=%f bs=1 skip=12|zcat|${PAGER-more}
    # assuming the cunbatch header is 12 bytes long.
    = t r &
    + ! t t
    h Strip headers from current newsarticle
    CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
    case $CHECK in
    Newsgroups:|Path:)
    I=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
    cp %f $I && sed '/^'"$CHECK"' /,/^$/d' $I > %f
    [ "$?" = "0" ] && rm $I
    echo %f: header removed
    echo %f is not a news article.
    esac
    + t t
    H Strip headers from the marked newsarticles
    set %t
    while [ -n "$1" ]; do
    CHECK=`awk '{print $1 ; exit}' $1` 2>/dev/null
    WFILE=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
    case $CHECK in
    Newsgroups:|Path:)
    cp $1 $WFILE && sed '/^'"$CHECK"' /,/^$/d' $WFILE > $1
    if [ "$?" = "0" ]; then
    rm $WFILE; echo $1 header removed. OK.
    else
    echo "Oops! Please check $1 against $WFILE"
    fi
    echo $1 skipped: Not a news article.
    esac
    shift
    done
    = t r
    + ! t t
    r Copy file to remote host
    echo -n "To which host?: "
    read Host
    echo -n "To which directory on $Host?: "
    read Dir
    rcp -p %f ${Host}:$Dir
    + t t
    R Copy files to remote host (no error checking)
    echo -n "Copy files to which host?: "
    read Host
    echo -n "To which directory on $Host? :"
    read Dir
    rcp -pr %u ${Host}:$Dir
    = f \.tex$ & t r
    + f \.tex$ & t r & ! t t
    t Run latex on file and show it with xdvi
    latex %f && xdvi `basename %f .tex`.dvi
    =+ f ^part | f ^Part | f uue & t r
    + t t
    U Uudecode marked news articles (needs work)
    set %t
    while [ -n "$1" ]; do # strip headers
    FIRST=`awk '{print $1 ; exit}' $1`
    cat $1 | sed '/^'"$FIRST"' /,/^$/d'; shift
    done
    ) |sed '/^$/d' |sed -n '/^begin 6/,/^end$/p' | uudecode
    if [ "$?" != "0" ]; then
    echo "Cannot decode %t"
    fi
    echo "Please test the output file before deleting anything"
    =+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.Z$| f \.tar\.bz2$ & t r
    x Extract the contents of a compressed tar file
    unset EXT
    case %f in
    *.tar.bz2) EXT=tar_bz2;;
    esac
    if [ "$EXT" = "tar_bz2" ]; then
    bunzip2 -c %f | tar xvf -
    else
    gzip -dc %f | tar xvf -
    fi
    = t r
    + ! t t
    y Gzip or gunzip current file
    unset DECOMP
    case %f in
    *.gz) DECOMP=-d;;
    *.[zZ]) DECOMP=-d;;
    esac
    gzip $DECOMP -v %f
    + t t
    Y Gzip or gunzip tagged files
    for i in %t
    do
    unset DECOMP
    case $i in
    *.gz) DECOMP=-d;;
    *.[zZ]) DECOMP=-d;;
    esac
    gzip $DECOMP -v $i
    done
    + ! t t
    b Bzip2 or bunzip2 current file
    unset DECOMP
    case %f in
    *.bz2) DECOMP=-d;;
    esac
    bzip2 $DECOMP -v %f
    + t t
    B Bzip2 or bunzip2 tagged files
    for i in %t
    do
    unset DECOMP
    case $i in
    *.bz2) DECOMP=-d;;
    esac
    bzip2 $DECOMP -v $i
    done
    + f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
    z Extract compressed tar file to subdirectory
    unset D
    set gzip -cd
    case %f in
    *.tar.gz) D="`basename %f .tar.gz`";;
    *.tgz) D="`basename %f .tgz`";;
    *.tpz) D="`basename %f .tpz`";;
    *.tar.Z) D="`basename %f .tar.Z`";;
    *.tar.z) D="`basename %f .tar.z`";;
    *.tar.bz2) D="`basename %f .tar.bz2`"; set bunzip2 -c ;;
    *.tar.F) D="`basename %f .tar.F`"; set freeze -dc;
    esac
    mkdir $D; cd $D && ($1 $2 ../%f | tar xvf -)
    + t t
    Z Extract compressed tar files to subdirectories
    for i in %t
    do
    set gzip -dc
    unset D
    case $i in
    *.tar.gz) D="`basename $i .tar.gz`";;
    *.tgz) D="`basename $i .tgz`";;
    *.tpz) D="`basename $i .tpz`";;
    *.tar.Z) D="`basename $i .tar.Z`";;
    *.tar.z) D="`basename $i .tar.z`";;
    *.tar.F) D="`basename $i .tar.F`"; set freeze -dc;;
    *.tar.bz2) D="`basename $i .tar.bz2`"; set bunzip2 -c;;
    esac
    mkdir $D; (cd $D && $1 $2 ../$i | tar xvf -)
    done
    + f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
    c Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
    unset D
    unset EXT
    case %f in
    *.tgz) EXT=tgz;;
    *.tpz) EXT=tpz;;
    *.Z) EXT=Z;;
    *.z) EXT=z;;
    *.gz) EXT=gz;;
    *.bz2) EXT=bz2;;
    esac
    case $EXT in
    tgz|tpz) D="`basename %f .$EXT`.tar";;
    gz|Z|z) D="`basename %f .$EXT`";;
    bz2) D="`basename %f .bz2`";;
    esac
    if [ "$EXT" = "bz2" ]; then
    bunzip2 -v %f ; gzip -f9 -v $D
    else
    gunzip -v %f ; bzip2 -v $D
    fi
    + t t
    C Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
    set %t
    while [ -n "$1" ]
    do
    unset D
    unset EXT
    case $1 in
    *.tgz) EXT=tgz;;
    *.tpz) EXT=tpz;;
    *.Z) EXT=Z;;
    *.z) EXT=z;;
    *.gz) EXT=gz;;
    *.bz2) EXT=bz2;;
    esac
    case $EXT in
    tgz) D="`basename $1 .tgz`.tar";;
    tpz) D="`basename $1 .tpz`.tar";;
    gz|Z|z) D="`basename $1 .$EXT`";;
    bz2) D="`basename $1 .bz2`";;
    esac
    if [ "$EXT" = "bz2" ]; then
    bunzip2 -v $1
    gzip -f9 -v $D
    else
    gunzip -v $1
    bzip2 -v $D
    fi
    shift
    done
    + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
    o Open next a free console
    open -s -- sh
    #### Added by me ####
    #### Video File Menu ####
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    p mplayer
    mplayer %f
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    i ffmpeg -i (show audio/video info)
    ffmpeg -i %f
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    i mediainfo (show audio/video info)
    mediainfo %f
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    v vlc
    vlc %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Edit with AviDemux (avidemux2_gtk %f)
    avidemux2_gtk %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Encode to h264 vhq 96 700 (enc2h264 vhq 96 700 %f)
    urxvtc -e enc2h264 vhq 96 700 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Encode to h264 hq 64 500 (enc2h264 hq 64 500 %f)
    urxvtc -e enc2h264 hq 64 500 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Encode to h264 wmv 17fps 500 64 (enc2h264 wmv17 %f)
    urxvtc -e enc2h264 wmv17 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Encode to h264 wmv 25fps 500 64 (enc2h264 wmv25 %f)
    urxvtc -e enc2h264 wmv25 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    @ Encode to -oac mp3_abr_96 (enc2h264 audio 96)
    urxvtc -e enc2h264 audio 96 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    @ Encode to vhq 140 1000 (scale to 624x352, enc2h264 series %f)
    urxvtc -e enc2h264 series %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    e Encode to mpg 160 1152 (enc2mpg mpg 160 1152 %f)
    urxvtc -e enc2mpg mpg 160 1152 %f &
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
    f mplayer framebuffer (mplayer -vo fbdev -fs)
    mplayer -vo fbdev -fs %f
    + f \.mkv$ & t r & ! t t
    e Extract mkv file (video-audio-subtitle, extractmkv %f)
    urxvtc -e extractmkv %f &
    #### Audio File Menu ####
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
    p mplayer
    urxvtc -e mplayer %f &
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
    i ffmpeg -i (show audio/video info)
    ffmpeg -i %f &
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
    i mediainfo (show audio/video info)
    mediainfo %f &
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
    a audacity
    audacity %f
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
    e Encode to ABR MP3 (enc2mp3)
    urxvtc -e enc2mp3 %f &
    #### Disk Image File Menu ####
    + f \.iso$ | f \.ccd$ | f \.img$ | f \.nrg$ | f \.mdf$ | f \.cue$ | f \.bin$ | f \.daa$ | f \.b6t$ | f \.b6i$ & t r & ! t t
    i isomaster
    isomaster %f
    + f \.cue$ | f \.bin$ & t r & ! t t
    3 Convert BIN to ISO (bin2iso)
    urxvtc -e bin2iso %f &
    + f \.iso$ | f \.ccd$ | f \.img$ | f \.nrg$ | f \.mdf$ | f \.cue$ | f \.bin$ | f \.daa$ | f \.b6t$ | f \.b6i$ & t r & ! t t
    c Poweriso convert image to ISO (all2iso)
    urxvtc -e all2iso %f &
    + f \.ccd$ & t r & ! t t
    5 Convert CCD to ISO (myccd2iso)
    urxvtc -e myccd2iso %f &
    + f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
    5 Fuseiso mount image /mnt/cdrom (fuseiso %f /mnt/cdrom)
    fuseiso %f /mnt/cdrom
    + f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
    5 Fuseiso mount image /mnt/iso1 (fuseiso %f /mnt/iso1)
    fuseiso %f /mnt/iso1
    + f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
    5 Fuseiso mount image /mnt/iso2 (fuseiso %f /mnt/iso2)
    fuseiso %f /mnt/iso2
    + f \.cue$ & t r & ! t t
    5 Burn BIN/CUE image (cdrdao write --device /dev/cdrom %f)
    urxvtc -e cdrdao write --device /dev/cdrom %f &
    + f \.iso$ | f \.bin$ & t r & ! t t
    5 Burn ISO image (burn-cd -m)
    urxvtc -e burn-cd -m %f &
    + f \.iso$ & t r & ! t t
    5 Burn ISO image (wodim -v dev=/dev/cdrom)
    urxvtc -e wodim -v dev=/dev/cdrom %f &
    #### Image File Menu ####
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    v xv
    xv %f &
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    v feh
    feh %f &
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    f feh --scale-down
    feh --scale-down %f &
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    g gimp
    gimp %f &
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    3 geeqie
    geeqie %f &
    #### PDF File Menu ####
    + f \.pdf$ & t r & ! t t
    v epdfview
    epdfview %f &
    + f \.pdf$ & t r & ! t t
    x xpdf
    xpdf %f
    + f \.pdf$ & t r & ! t t
    x viewpdf
    urxvtc -e viewpdf %f &
    #### Text File Menu ####
    + f \.txt$ | f \.nfo$ | f \.cfg$ | f \.log$ | f \.srt$ | f \.sub$ | f \.ssa$ & t r & ! t t
    v leafpad
    leafpad %f &
    + f \.txt$ | f \.nfo$ | f \.cfg$ | f \.log$ | f \.srt$ | f \.sub$ | f \.ssa$ & t r & ! t t
    g gvim
    gvim %f &
    #### Archive File Menu ####
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    l List file contents (7z l)
    urxvtc -e 7z l %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    1 xarchiver
    xarchiver %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    2 Extract *.tar.gz (tar -xzvf)
    urxvtc -e tar -xzvf %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    3 Extract *.tar.bz2 (tar -xjvf)
    urxvtc -e tar -xjvf %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
    4 Extract *.rar Full Path (unrar x)
    urxvtc -e unrar x %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
    5 Extract *.rar Current Dir (unrar e)
    urxvtc -e unrar e %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
    5 Extract broken *.rar Full Path (unrar x -kb)
    urxvtc -e unrar x -kb %f &
    + f \.zip$ & t r & ! t t
    6 Extract *.zip (unzip)
    urxvtc -e unzip %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    6 Extract *.zip with bsdtar (bsdtar -xvf)
    urxvtc -e bsdtar -xvf %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    7 Extract *.7z Full Path (7z x)
    urxvtc -e 7z x %f &
    + f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    8 Extract *.7z Current Dir (7z e)
    urxvtc -e 7z e %f &
    + f \.ace$ & t r & ! t t
    9 Extract *.ace Full Path (unace x)
    urxvtc -e unace x %f &
    + f \.ace$ & t r & ! t t
    a Extract *.ace Current Dir (unace e)
    urxvtc -e unace e %f &
    + f \.rar$ | f \.cbz$ & t r & ! t t
    b Extract *.rar in *.rar_dir directory (unrar2dir)
    urxvtc -e unrar2dir %f &
    + f \.zip$ & t r & ! t t
    c Extract *.zip in *.zip_dir directory (unzip2dir)
    urxvtc -e unzip2dir %f &
    + f \.tar.gz$ | f \.bz2$ | f \.tgz$ & t r & ! t t
    e yaourt Install/Upgrade Package (yaourt -U)
    yaourt -U %f
    #### Windows Executable File Menu ####
    + f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ & t r & ! t t
    r wine
    urxvtc -e wine %f &
    + f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
    r Dosbox (Dosbox normal)
    Dosbox normal %f &
    + f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
    r Dosbox (Dosbox normal3x)
    Dosbox normal3x %f &
    + f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
    r Dosbox (Dosbox advmame3x)
    Dosbox advmame3x %f &
    #### Internet File Menu ####
    + f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
    k kazehakase
    kazehakase %f
    + f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
    s swiftweasel
    swiftweasel %f
    + f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
    s elinks
    urxvtc -e elinks %f &
    + f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
    s links -g
    links -g %f
    #### Document File Menu ####
    + f \.doc$ | f \.rtf$ & t r & ! t t
    a abiword
    abiword %f
    + f \.doc$ | f \.rtf$ & t r & ! t t
    o OpenOffice Writer
    soffice -writer %f
    + f \.doc$ | f \.rtf$ & t r & ! t t
    o antiword
    urxvtc -e antiword %f &
    + f \.doc$ | f \.rtf$ & t r & ! t t
    o viewword (antiword -f %f > vi)
    urxvtc -e viewword %f &
    + f \.lit$ & t r & ! t t
    o c-lit
    c-lit %f
    #### Spread Sheet File Menu ####
    + f \.xls$ | f \.csv$ & t r & ! t t
    g gnumeric
    gnumeric %f
    #### Presentation File Menu ####
    + f \.ppt$ | f \.pps$ & t r & ! t t
    v OpenOffice Impress (soffice -impress)
    soffice -impress %f
    #### Java File Menu ####
    + f \.jar$ & t r & ! t t
    e Execute java program (java -jar)
    java -jar %f
    #### Help/Manual File Menu ####
    + f \.chm$ & t r & ! t t
    v xchm
    xchm %f
    #### Emulator Roms ####
    + f \.smc$ & t r & ! t t
    v zsnes
    zsnes %f
    + f \.smc$ & t r & ! t t
    v snes9x (snes9x -tr -dfr -y2)
    snes9x -tr -dfr -y2 %f
    + f \.smd$ & t r & ! t t
    v dgen (dgen -G 1280x960)
    dgen -G 1280x960 %f
    + f \.v64$ | f \.z64$ & t r & ! t t
    v mupen64_nogui
    mupen64_nogui %f
    + f \.nes$ & t r & ! t t
    v tuxnes
    tuxnes %f
    + f \.nes$ & t r & ! t t
    v fceu
    fceu -input1 gamepad %f
    + f \.nes$ & t r & ! t t
    v ines
    ines %f
    + f \.int$ & t r & ! t t
    v intellivission
    int %f
    + f \.gb$ | f \.gba$ & t r & ! t t
    v VisualBoyAdvance
    VisualBoyAdvance -4 %f
    + f \.gb$ | f \.gba$ & t r & ! t t
    v gvba
    gvba %f
    + f \.gba$ & t r & ! t t
    v vgba
    vgba %f
    + f \.gb$ & t r & ! t t
    v vgb
    vgb %f
    + f \.adf$ & t r & ! t t
    v amigacomputer
    e-uae %f
    + f \.gcm$ & t r & ! t t
    v tuxcube
    tuxcube %f
    + f \.st$ & t r & ! t t
    v hatari
    hatari %f
    + f \.a26$ & t r & ! t t
    v stella
    stella %f
    + f \.col$ & t r & ! t t
    v colem32
    colem32 %f
    #### Source-Code File Menu ####
    + f \.c$ & t r & ! t t
    c compile source file (gcc -O2 -Wall -pedantic)
    urxvtc -e gcc -O2 -Wall -pedantic %f
    + f \.cpp$ & t r & ! t t
    c compile source file (gcc -O2 -Wall -pedantic)
    urxvtc -e g++ -O2 -Wall -pedantic %f

  • Gnome-control-center crashes 3.14.1

    Hello!
    I just updated to gnome 3.14.1, and now the gnome-shell background is plain blue, and gnome-control-center segfaults when I go to the 'background' menu with the following output in the terminal:
    (gnome-control-center:12357): Grilo-WARNING **: [registry] grl-registry.c:472: Could not open plugins' info directory '/usr/lib/grilo-0.2': Error opening directory '/usr/lib/grilo-0.2': No such file or directory
    (gnome-control-center:12357): Grilo-WARNING **: [registry] grl-registry.c:1138: Plugin 'grl-flickr' not available
    (gnome-control-center:12357): background-cc-panel-WARNING **: Plugin 'grl-flickr' not available
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_file_new_for_path: assertion 'path != NULL' failed
    (gnome-control-center:12357): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_task_return_error: assertion 'error != NULL' failed
    (gnome-control-center:12357): GLib-GIO-CRITICAL **: g_task_propagate_pointer: assertion 'task->result_set == TRUE' failed
    zsh: segmentation fault (core dumped) gnome-control-center
    journalctl says exactly the same thing, and everything.log says "segfault at 8 ip 0000000000456ac8 sp 00007fff8bce7370 error 4 in gnome-control-center[400000+376000]"
    I've also tried doing a stack trace, if this is useful:
    Program received signal SIGSEGV, Segmentation fault.
    0x0000000000456ac8 in ?? ()
    (gdb) bt
    #0 0x0000000000456ac8 in ?? ()
    #1 0x00007ffff08e62eb in g_task_return_now () from /usr/lib/libgio-2.0.so.0
    #2 0x00007ffff08e6309 in complete_in_idle_cb () from /usr/lib/libgio-2.0.so.0
    #3 0x00007ffff034e91d in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
    #4 0x00007ffff034ecf8 in g_main_context_iterate.isra () from /usr/lib/libglib-2.0.so.0
    #5 0x00007ffff034edac in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0
    #6 0x00007ffff090901c in g_application_run () from /usr/lib/libgio-2.0.so.0
    #7 0x000000000044c3eb in main ()
    At the moment of the crash it appears to have a bunch of threads looking through the images in my home dir, though this may be unrelated.
    Does anyone have any ideas?
    Last edited by gonr (2014-11-09 05:36:00)

    This is a known issue to be fixed with nautilus-3.14.1. This happens when you enable "show desktop icons" from gnome tweak tools.
    A workaround is to kill the nautilis from terminal and it starts working. Do like this from terminal:
    $ nautilus -q
    Now nautilus (Files) opens properly and desktop icons are also visible.

  • [SOLVED] Gray Boxes in GTK3/Gnome 3.4/Gnome Shell

    Greetings,
    I have googled for this, but maybe my lack of ablility to exactly describe the issue as a search term is why I can't find anything. But I hve a problem that is just driving me crazy....
    I have gray boxes that are round menu items, tab names, the clock and user name when screen is locked, etc... that is really throwing off the look of my desktop and driving me crazy.
    Here are some screenshots to hopefully show what I mean.
    The first two are with the adawita theme. The least one is with the evolve theme to show it doesn't seem to matter what the gtk theme is.
    Here is what I've done:
    1.) This might be why it had happened: I tried out gnome-unstable for a few hours, to get a look at gnome shell 3.6. After deciding that I wasn't ready to move to it yet (some of the extensions that I'd still want for it aren't there yet), I removed the repository, did a pacman -Syy, did a pacman -Rcsn of gnome, then reinstalled gnome as per the wiki.
    2.) I have removed all of the stuff on /home to get a fresh start after seeing the boxes.
    3.) I have removed with Rcsn and reinstalled gnome.
    4.) I have made sure to install the gtk2 theme engines, just in case.
    5.) I read through the gtk+, gnome pages on our wiki.
    6.) I googled.
    And yet, I still have those damnable graphic glitches....
    So I am banging my head against a wall here, I do hope someone here can help, at least point me in the right direction. Thanks!
    UPDATE
    Ok, so I have fixed my issue. I ended up pretty much removing everything except the base system, xorg, video drivers, and such. Somehow or another, there were left behind traces of my brief experiment with 3.6 that was causing the issue.
    Once I got down to almost a fresh new start I was able to re-install gnome and the graphic mess-ups were gone.
    Last edited by mythus (2012-10-01 16:37:15)

    Is it a problem with some GNOME libraries? How can i downgrade GNOME to its 3.2 version? (or its "3.4.0" version?)
    This is the current output when i execute it:
    ** (process:2336): WARNING **: Trying to register gtype 'GMountMountFlags' as enum when in fact it is of type 'GFlags'
    ** (process:2336): WARNING **: Trying to register gtype 'GDriveStartFlags' as enum when in fact it is of type 'GFlags'
    ** (process:2336): WARNING **: Trying to register gtype 'GSocketMsgFlags' as enum when in fact it is of type 'GFlags'
    Traceback (most recent call last):
    File "/usr/lib/guake/guake.py", line 1353, in <module>
    if not main():
    File "/usr/lib/guake/guake.py", line 1343, in main
    remote_object.show_hide()
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 70, in __call__
    return self._proxy_method(*args, **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 145, in __call__
    **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
    dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    This is the dmesg's output:
    [ 80.561844] python2[1105]: segfault at 7fff00adafb8 ip 00007f5825ab217a sp 00007fff00adafc0 error 6 in libc-2.15.so[7f5825a49000+197000]
    Last edited by japenagosc (2012-05-05 12:50:45)

  • AAAHHH -- GNOME settings

    ok, i'm haveing trouble with kde... i've never had them b4 but here whats up.  i open lets say ark to decompress a tgz file and all i get is the window and the 'file options........' bar. nothing in the window, and that goes all they way down, and never stops(i can srink it from the top down then move it up for hours and it'll never fit on the screen), so i figure pfffff who likes kde any way! so i get gnome all installed nice and fine. i start it and i get 'could not look up address of yoohoo(the puters name)' so i'll add it to /etc/hosts later. but the i get a
    ' ther was an error starting the GNOME settings deamon
    Some thinks, such as themes, sounds, or background settings may now work correctly
    the last error message was:
    Failed to executer gnome-session-deamon: 2 (no such file or directory)
    GNOME will still try to restart the settins daemon. next time you log in.'
    so i say ok just let me in. and then i get that xfree defualt backround... and no gnome....

    You'll need to install the control-center package to get that one.  There's no real easy way to install all the gnome bits you need atm.
    For now, the best I can recommend is run these commands:
    pacman -S xfree86
    pacman -S pango
    pacman -S gconf
    abs
    cd /usr/src/abs/gnome
    pacman -S `ls`
    Anyways, assuming I got that path right (only have Redcrap/Debian machines at work), you should get a fully usable GNOME2.  The first three commands are for a phantom bug that only sometimes occurs in pacman - those packages need to be installed in that particular order, so doing it manually saves grief, for now.
    Also note that the last line has backticks around the ls - that's the key underneath the Escape key on most PC keyboards.

Maybe you are looking for