Cairo-dock starts in "maintenance mode"

Hi,
I've recently upgraded the cairo-dock, but since then it starts along with the <maintenance mode window>... When I try to close it, it reappears until the wifi connection settles down. I suspect that weather-dock is making troubles when it does not have connection to the internet.
I've looked through the cairo-dock options, and it has an option to force maintenance mode, but it does not have one to force disabling it unfortunately.
Anyone has any idea how to get rid of this?

probably an issue with your configuration. had this once, deleted my .config/cairo-doc ( at least i think thats where it was) folder and it worked again - with default settings.

Similar Messages

  • Cairo-dock doesn't work with cairo-dock-plugins

    I installed cairo-dock 3.1.2-2 and cairo-compmgr-git 20130209-1. It runs without any problem. After installing cairo-dock-plug-ins 3.1.2-1 cairo-dock opens in maintenance mode.
    When I try to start it in the console I get the following messages:
    [phnx4@002 ~]$ warning :  (/tmp/yaourt-tmp-phnx4/aur-cairo-dock/src/cairo-dock-3.1.2/src/gldit/cairo-dock-opengl.c:cairo_dock_initialize_opengl_backend:208) 
      couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
        Cairo-Dock version : 3.1.2
        Compiled date      : Feb  9 2013 09:45:00
        Built with GTK     : 3.6
        Running with OpenGL: 1
    ============================================================================
    warning :  (/tmp/yaourt-tmp-phnx4/aur-cairo-dock-plug-ins/src/cairo-dock-plugins-3.1.2/gvfs-integration/cairo-dock-gio-vfs.c:cairo_dock_gio_vfs_init:55) 
      VFS Deamon NOT found on DBus !
    warning :  (/tmp/yaourt-tmp-phnx4/aur-cairo-dock-plug-ins/src/cairo-dock-plugins-3.1.2/shortcuts/src/applet-drives.c:cd_shortcuts_list_drives:297) 
      couldn't detect any drives
    warning :  (/tmp/yaourt-tmp-phnx4/aur-cairo-dock/src/cairo-dock-3.1.2/src/cairo-dock.c:_cairo_dock_intercept_signal:156) 
      Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux 002 3.7.6-1-ARCH #1 SMP PREEMPT Mon Feb 4 10:21:12 CET 2013 i686 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -w 2 -q 1'...
    Traceback (most recent call last):
      File "/usr/lib/cairo-dock/cairo-dock-unity-bridge", line 25, in <module>
        import dbus, dbus.service
    ImportError: No module named dbus
    I don't know what this means.

    All the plugins seem to work more or less as long as the shortcuts plugin is unchecked. It still crashes every now an then. I removed cairo-dock and returned back to tint2.
    Although this is not solved should I mark this topic as solved? Or should I just leave as it is?

  • Looking for a Powershell Script which can put the scom servers in maintenance mode

    Looking for a Powershell Script which can put the scom servers in maintenance mode so that SCOM should not send an alert during planned task.
    Rahul

    1. Provide list of servers line-by-line in C:\ServerList.txt, make sure you provide limited no. of servers, do not exceed 20 - 25 per batch
    2. Save the script with suitable name (test.ps1)
    3. Open PowerShell cmd prompt
    4. Script accepts 3 params - TimeInMinutes, Reason and Comment
    **** Please note, this script will work for SCOM 2012 R2
    param([int32]$TimeMin, [string]$Reason, [string]$Comment)
    try
    $api = new-object -comObject 'MOM.ScriptAPI'
    Import-Module operationsmanager
    New-SCOMManagementGroupConnection
    $Servers = Get-Content "C:\ServerList.txt"
    $Time = (Get-Date).Addminutes($TimeMin)
    Foreach ($Server in $Servers)
    #Get Computer instance
    $ComputerClass = Get-SCOMClass -Name Microsoft.Windows.Computer
    $ComputerClassInstance = Get-SCOMClassInstance  -Class $ComputerClass | Where {$_.DisplayName -eq $Server}
    If ($ComputerClassInstance -ne $Null)
    $HealthServiceWatcherClass = Get-SCOMClass -name:Microsoft.SystemCenter.HealthServiceWatcher
    #Get Health Service Watcher Class instance of the server
    $HSWClass = Get-SCOMClass -Name Microsoft.SystemCenter.HealthServiceWatcher
    $HSWClassIns = Get-SCOMClassInstance  -Class $HSWClass | Where {$_.DisplayName -eq $Server}
    #Starting the maintenance mode
    Start-SCOMMaintenanceMode -Instance $HSWClassIns -EndTime $Time -Reason $Reason -Comment $Comment
    Start-SCOMMaintenanceMode -Instance $ComputerClassInstance -EndTime $Time  -Reason $Reason -Comment $Comment
    Write-Host "Health Service Watcher and Agent server "$Server " kept in maintenance mode"  -foregroundcolor "green"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance mode for $TimeMin minutes")
    Else
    Write-Host $Server" not found " -foregroundcolor "red"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server could not be found in domain")
    Catch [system.exception]
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, $_.Exception.Message)
    Faizan

  • How to place multiple servers in Maintenance Mode in SCOM 2012

    Hi All,
    I am trying to place multiple servers in Maintenance Mode in SCOM 2012 but i could not find any PoSh script or any other solution to do it.
    Could someone help me please?
    Regards, Srini

    Hi,
    Please find the script.
    need to have access and you can provide list of servers in text file.
     param([int32]$TimeMin, [string]$Reason, [string]$Comment)
                    $api = new-object -comObject 'MOM.ScriptAPI'
                    Import-Module operationsmanager
                    New-SCOMManagementGroupConnection
                    $Servers = Get-Content "ServerList.txt"
                    $Time = (Get-Date).Addminutes($TimeMin)
                    Foreach ($Server in $Servers)
                                    #Get Computer instance
                                    $ComputerClass = Get-SCOMClass -Name Microsoft.Windows.Computer
                                    $ComputerClassInstance = Get-SCOMClassInstance  -Class $ComputerClass | Where {$_.DisplayName -eq $Server}
                                    If ($ComputerClassInstance.InMaintenanceMode -eq $true)
                                    #Write-Host $Server " is in maintenance mode"
                                    Write-Host $Server" already under Maintenance Mode or not accessible by SCOM, skipped from script execution" -foregroundcolor "red"
                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server already found under MM, skipped from script execution")
                                    Else
                                    #Write-Host $Server " is NOT in maintenance mode, attempting to put in MM......."
                                    If ($ComputerClassInstance -ne $Null)
                                                    $HealthServiceWatcherClass = Get-SCOMClass -name:Microsoft.SystemCenter.HealthServiceWatcher
                                                    #Get Health Service Watcher Class instance of the server
                                                    $HSWClass = Get-SCOMClass -Name Microsoft.SystemCenter.HealthServiceWatcher
                                                    $HSWClassIns = Get-SCOMClassInstance  -Class $HSWClass | Where {$_.DisplayName -eq $Server}
                                                    #Starting the maintenance mode
                                                    Start-SCOMMaintenanceMode -Instance $HSWClassIns -EndTime $Time -Reason $Reason -Comment
    $Comment
                                                    Start-SCOMMaintenanceMode -Instance $ComputerClassInstance -EndTime $Time  -Reason $Reason
    -Comment $Comment
                                                    Write-Host "Health Service Watcher and Agent server "$Server " kept in maintenance
    mode for $TimeMin minutes"  -foregroundcolor "green"
                                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance
    mode for $TimeMin minutes")
                                    Else
                                                    Write-Host $Server" not found in Domain" -foregroundcolor "red"
                                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 202, 1, "$Server not found in domain")
    Regards
    sridhar v

  • SUNFIRE V880 in maintenance mode

    Hi,
    Sunfire V880 server start to maintenance mode and in run level 6.
    I have try to boot to solais DVD rfrom ok prompt and cannot boot.
    this is imposible to modify in runlevel 6 vfstab or inittab.
    wath can i do please help me.
    thank you

    Hi.
    Please describe current state and what you see on terminal
    Level init 6 - mean reboot the system. So it can not be stable state.
    What error messages you got when try boot from DVD ? What Solaris version you try boot ?
    What Solaris version was installed on server ?
    Regards.

  • Cairo-dock 3, use it only as a launchers bar?

    Is there a way to use cairo-dock as a launcher bar only? i only want to have the launchers there but i don't want it to take care of the windows.

    It is simple, right click on cairo-dock, switch to advanced mode and click on TaskBar icon in Behaviour group. Then uncheck the first option at the top.

  • Failed to get Monitor - Start Maintenance Mode

    Hi,
    Am struggling with a problem with Orchestrator R2 apparently not recognising output from a Monitor alert step in a run book.  I have Orchestrator 2012R2 and SCOM 2012R2 configured.  Orchestrator is co-located with VMM2012R2.
    Operating system for all is Windows server 2012
    I have installed and deployed the Orchestrator R2 Integration packs which in deployment manager state version 7.2
    I have checked to ensure that both Orchestrator, SCOM and VMM are all R2 (They are)
    I am looking to create a runbook that will start services as per the link here: (Thanks to Jakob for this)
    http://blog.coretech.dk/jgs/sco-2012-scom-2012-best-practice-monitor-alert-and-restart-a-service/
    I can test the connection to the SCOM server - fine
    I create the monitor alert step and test - fine
    I create the start maintenance mode step and get the following error:
    Filed to get Monitor.  The exception was "An object of class MonitoringObject with ID 00000000-0000-0000-0000-000000000000 was not found.".
    I have used the runbook tester and the monitoringobjectfullname is present in the output for the start maintenance mode step.
    However irrespective of the variable that I attempt to use in start maintenance mode step I continue to get the same error as above.
    The monitor alert step completes with no issues, but everytime on the start maint mode step it fails.
    I have validated the SCOM connection account has all the appropriate SCOM permissions.  I have also provided it with full domain admin rights, but with no success. 
    Any ideas on how to troubleshoot this would be welcomed
    Thanks in advance

    Hi Stefan,
    A little extension of your approach as this is only usable if you want to set a Windows Server into Maintenance Mode - but not e.g. for Distributed Apps
    I just required the "Start Maintenance Mode" Activity to set a distributed app and a websphere application server instance (which is not linked with the server itself). And I did not find any documentation how to fill the field - only for Windows
    Computer.
    So I'll post my result on how to get the value which needs to be entered within the "Monitor" field:
    (PowerShell - Use "Activities > System > Run .Net Script > Type: Powershell)
    Import-Module OperationsManager
    $object= Get-SCOMMonitoringObject -displayname "<desired object displayname";
    # or use the ID instead:
    # $object = Get-SCOMMonitoringObject -ID "<ID of object>";
    $name = $object.displayname;
    $fullname = $object.fullname;
    $monitor = $name + " : " + $fullname
    Then put $monitor within "published data" and you can use it directly in the "Start Maintenance Mode" Activity.
    This only works if the runbook is running on a SCOM management server as it requires the SCOM Powershell Module. But at least it somehow shows the syntax.
    Best Regards
    Klaus
    Austria

  • Cannot start cairo dock

    Hi,
    I installed cairo dock using pacman.
    Now, when i start cairo dock, the terminal throws an error such as:
    [anish@arch~]$ cairo-dock &
    [1] 12253
    [anish@arch~]$ cairo-dock: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory
    [1]+ Exit 127 cairo-dock
    [anish@arch~]$
    Kindly guide me what to do to setup cairo dock!
    Thanks

    glib2 from [testing] (2.36.1-3) fixed this issue for me, together with all gtk3 related errors and wm freezing.
    Last edited by herangr (2013-04-27 11:23:37)

  • Optimize Hosts and Start Maintenance Mode Not working with warning (23756)

    I have  a new 2012 Hyper-V3 cluster, with SCVMM 2012 SP1.
    Putting a Server into maintenance mode used to work, it would live migrate all the virtual servers off the host and pause in the cluster.
    Also the new Optimise Host Feature also used to work.
    Now all I get is this :-
    Warning (23756)
    Changes have been made which should be verified by running placement again.
    Recommended Action
    Use the Refresh Preview action to run placement again.
    you can manually live migrate all the VM's of the host then put it into maintenance mode and all works fine !.
    I do not understand what this "use the Refresh Preview Action" is. I cannot find any reference to this anywhere.
    hope someone can help
    many thanks
    Mark Green

    Hi Mark
    Firstly, the error text for this event is wrong, which is why it has a confusing recommended action. This error indicates that while planning an evacuation, something unexpected occurred when reading the underlying hosts and VMs.  It may be something
    transient, in which case you can attempt to manually the VMs off the host, and then see if this error resolves itself.
    If there is something more fundamentally wrong, you can find what the underlying error is by collecting traces. Search the traces for the error text, and you should see the underlying problem embedded in the trace right next to this error.
    Details of how to collect traces: http://blogs.technet.com/b/chengw/archive/2008/05/08/how-to-collect-scvmm.traces.aspx
    Apologies, this error is very confusing and does indicate an unanticipated problem in our product. We are working to improve this experience in future versions.
    I hope this helps!
    Cheers, Hilton

  • Cairo-dock bar icons are not being displaying correctly

    I have an intel HD4000 3rd generation (lvy bridge) and extra/xf86-video-intel 2.21.15-1 (xorg-drivers xorg) installed. My laptop is a i7-3630. When I launch cairo-dock using opengl the icons in the bar are not displayed until I move the mouse over and once displayed, the tooltips are not displayed correctly.  I mean, icons appear when the cursor passes over them. This is only happening in 3D panel and curve view. The rest of view, parabolic, static panel, etc... works perfectly.
    isn't intel HD4000 compatible with opengl?
    Terminal output is:
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-opengl.c:cairo_dock_initialize_opengl_backend:202)
    couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
    Cairo-Dock version : 3.2.1
    Compiled date : Apr 24 2013 23:16:20
    Built with GTK : 3.8
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-module-manager.c:cairo_dock_load_module:168)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-module-manager.c:cairo_dock_load_module:168)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-module-manager.c:cairo_dock_load_module:168)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-launcher-manager.c:cairo_dock_launch_command_sync_with_stderr:448)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-launcher-manager.c:cairo_dock_launch_command_sync_with_stderr:448)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    _cairo_dock_create_surface_from_desktop_bg: assertion 'iRootPixmapID != 0' failed
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.2.1/switcher/src/applet-load-icons.c:cd_switcher_load_desktop_bg_map_surface:197)
    couldn't get the wallpaper
    _cairo_dock_create_surface_from_desktop_bg: assertion 'iRootPixmapID != 0' failed
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.2.1/switcher/src/applet-load-icons.c:cd_switcher_load_desktop_bg_map_surface:197)
    couldn't get the wallpaper
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-launcher-manager.c:cairo_dock_launch_command_sync_with_stderr:448)
    No se ha establecido un valor para «/desktop/gnome/session/required_components/panel»
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-launcher-manager.c:cairo_dock_launch_command_sync_with_stderr:441)
    Falló al ejecutar el proceso hijo «compiz» (No existe el fichero o el directorio)
    g_key_file_set_string: assertion 'string != NULL' failed
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-gui-factory.c:_list_icon_theme_in_dir:1009)
    Falló al abrir la carpeta «/home/toni/.icons»: No existe el fichero o el directorio
    gtk_container_add: assertion 'GTK_IS_CONTAINER (container)' failed
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-gui-factory.c:cairo_dock_build_group_widget:3410)
    this conf file has an invalid combo list somewhere !
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-gui-factory.c:cairo_dock_build_group_widget:3410)
    this conf file has an invalid combo list somewhere !
    warning : (/build/src/cairo-dock-3.2.1/src/gldit/cairo-dock-launcher-manager.c:cairo_dock_launch_command_sync_with_stderr:448)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    g_ptr_array_free: assertion 'array' failed
    I have tried what is stated here: https://wiki.archlinux.org/index.php/In … ion_method
    but it does not work, using sna hardware acceleration instead of uxa:
    /etc/X11/xorg.conf.d/20-intel.conf
    Section "Device"
    Identifier "Intel Graphics"
    Driver "intel"
    Option "AccelMethod" "sna"
    EndSection
    If I launch cairo as:
    $ cairo-dock -c
    or
    $ env LIBGL_ALWAYS_SOFTWARE=1 cairo-dock -o
    then it works.
    Also, it seems to be a bug, see here:
    https://bugs.freedesktop.org/show_bug.cgi?id=55036
    UPDATED to cario-dock 3.3.1 :
    After updating cario-dock to last version 3.3.1 now it works even worse!!! tool bar does not appear, netiher panel 3d nor static panel nor parabolic nor curve, ..... and when switching from advanced mode to basic mode it seems to crash and it remains in advanced mode forever.
    Output:
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:main:744)
    showing the maintenance mode ...
    g_ptr_array_free: assertion 'array' failed
    g_ptr_array_free: assertion 'array' failed
    g_ptr_array_free: assertion 'array' failed
    g_object_get_data: assertion 'G_IS_OBJECT (object)' failed
    g_object_get_data: assertion 'G_IS_OBJECT (object)' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -c -m -q 4'...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 0
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:main:744)
    showing the maintenance mode ...
    g_ptr_array_free: assertion 'array' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -c -m -q 5'...
    Sorry, Cairo-Dock has encoutered some problems, and will quit.
    [toni@toni ~]$ cairo-dock -c
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 0
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -c -w 2 -q 1'...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 0
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -c -w 2 -q 2'...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 0
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -c -m -q 3'...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 0
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:main:744)
    showing the maintenance mode ...
    ^C
    [toni@toni ~]$ clear
    [toni@toni ~]$ cairo-dock
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_initialize_opengl_backend:179)
    couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_is_blacklisted:54)
    This card is blacklisted due to a bug with your video drivers: Intel 4000 HD Ivybridge Mobile.
    Please have a look there: https://bugs.freedesktop.org/show_bug.cgi?id=55036
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_post_initialize_opengl_backend:374)
    The OpenGL backend will be deactivated. Note that you can force this OpenGL backend by launching the dock with this command: 'cairo-dock -o'
    OpenGL Version: 3.0 Mesa 9.2.1
    OpenGL Vendor: Intel Open Source Technology Center
    OpenGL Renderer: Mesa DRI Intel(R) Ivybridge Mobile
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -w 2 -q 1'...
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_initialize_opengl_backend:179)
    couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_is_blacklisted:54)
    This card is blacklisted due to a bug with your video drivers: Intel 4000 HD Ivybridge Mobile.
    Please have a look there: https://bugs.freedesktop.org/show_bug.cgi?id=55036
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_post_initialize_opengl_backend:374)
    The OpenGL backend will be deactivated. Note that you can force this OpenGL backend by launching the dock with this command: 'cairo-dock -o'
    OpenGL Version: 3.0 Mesa 9.2.1
    OpenGL Vendor: Intel Open Source Technology Center
    OpenGL Renderer: Mesa DRI Intel(R) Ivybridge Mobile
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -w 2 -q 2'...
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_initialize_opengl_backend:179)
    couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-utils.c:cairo_dock_launch_command_sync_with_stderr:231)
    No se ha establecido un valor para «/desktop/gnome/interface/font_name»
    pango_font_description_from_string: assertion 'str != NULL' failed
    pango_font_description_get_family: assertion 'desc != NULL' failed
    pango_font_description_get_size: assertion 'desc != NULL' failed
    pango_font_description_get_size_is_absolute: assertion 'desc != NULL' failed
    pango_font_description_get_weight: assertion 'desc != NULL' failed
    pango_font_description_get_style: assertion 'desc != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_is_blacklisted:54)
    This card is blacklisted due to a bug with your video drivers: Intel 4000 HD Ivybridge Mobile.
    Please have a look there: https://bugs.freedesktop.org/show_bug.cgi?id=55036
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_post_initialize_opengl_backend:374)
    The OpenGL backend will be deactivated. Note that you can force this OpenGL backend by launching the dock with this command: 'cairo-dock -o'
    OpenGL Version: 3.0 Mesa 9.2.1
    OpenGL Vendor: Intel Open Source Technology Center
    OpenGL Renderer: Mesa DRI Intel(R) Ivybridge Mobile
    _cd_find_volume_name_from_drive_name: assertion 'pDrive != NULL' failed
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:_cairo_dock_intercept_signal:182)
    Cairo-Dock has crashed (sig 11).
    It will be restarted now.
    Feel free to report this bug on glx-dock.org to help improving the dock!
    info on the system :
    Linux toni 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:22:51 CEST 2013 x86_64 GNU/Linux
    Couldn't guess if it was an applet's fault or not. It may have crashed inside the core or inside a thread
    restarting with 'cairo-dock -m -q 3'...
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/implementations/cairo-dock-glx.c:_initialize_opengl_backend:179)
    couldn't find an appropriate visual, trying to get one without Stencil buffer
    (it may cause some little deterioration in the rendering) ...
    ============================================================================
    Cairo-Dock version : 3.3.1
    Compiled date : Oct 13 2013 12:19:56
    Built with GTK : 3.10
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.16: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.1/src/cairo-dock.c:main:744)
    showing the maintenance mode ...
    Last edited by toni (2013-10-13 17:51:45)

    trogdor1138 wrote:
    I had the same issue when I first tried cairo-dock on my ZenBook (Core i5). In addition to missing icons or backgrounds, everything looked like it was covered in static.
    What are you using for your X compositing manager? I'm using OpenBox with LXDE components, so at the time I was using xcompmgr for compositing. I didn't have much success with either OpenGL or Cairo acceleration.
    However, I recently switched to using Compton from the AUR as my compositing manager. With Compton everything about cairo-dock works flawlessly using OpenGL. You might give that a try and see if it helps.
    Also, if you're on the most recent version of the Intel drivers SNA is now the default acceleration method, so you no longer need to manually enable it in your xorg.conf.d files.
    I am using the default that comes with gnome3, mutter.
    I have installed in my system the below packages:
    extra/mutter 3.10.0.1-1 (gnome)
    extra/mutter-wayland 3.10.0.1-2
    extra/clutter 1.16.0-1
    extra/clutter-gst 2.0.8-1
    extra/clutter-gtk 1.4.4-4
    extra/mash 0.2.0-3
    I have installed compton and also cairo-dock and cairo-dock-plugins. Once I execute it from terminal by doing cairo-dock a lot of errors, the same as posted here in the previous post appear, and automatically advanced config view is opened. THen If first time i swith to basic view, it remains in advanced view, and If a second time I try to switch to basic view, then it exits. Any ideas?
    Last edited by toni (2013-10-14 20:41:56)

  • IPad in maintenance mode - Error 28 - does not let me do a reset

    Hello @ all...
    Yesterday, I updated my iPad (Series 1) to iOS 5.1 and tried to update the installed apps in the next step. I accidently tried to installed the new iPhoto App, that I had already purchased and iTunes told me - what was completely right - that my actual hardware was not compatible. So far so good. I clicked on "OK" to close the error message and instead of doing the rest of the sync process, everything stopped and my iPad switched to maintenance mode.
    Some check-my-stuff-steps later, I tried to connect my iPad to iTunes and do a full reset in order to get the tablet back to work. The process started and after some minutes I got some error marked with number 28, which seems to be some kind of "unidentified hardware error". At next, I checked the Apple support pages to find some info on this...
    I checked the malware/virus scanner... It's up to date and - for some testing - even switched off.
    I checked the Windows installation... It's up to date and working fine.
    I restarted the whole PC - nothing changed.
    I waited for about 20 hours and tried to do it again... Nothing happend...
    I still have the same problem and definitely no idea, what's the reason for this and what I can do to solve this issue. So my hopes lie on you guys...
    Thanx in advance...
    m.t.k.

    Error 23, 28, 29: These errors may indicate a hardware issue with your device. Follow the steps in this article. Also attempt to restore while connected with the white USB Dock Connector cable that shipped with your device, on a known good computer and network to isolate this issue to the device. The MAC address being missing or the IMEI being the default value, (00 499901 064000 0), can also confirm a hardware issue. Out-of-date or incorrectly configured security software can also cause these errors.

  • Cairo-dock problem

    when i uncheck the option "repeat image as a pattern to fill background" cairo-dock crashes and shows only the maintenance mode window. if i check the option cairo-dock runs perfect but my theme looks ugly. can anyone help?

    Hmmm...
    Their site is in French. Perhaps try submitting a bug there with the aid of web translation?
    There's also bug reporting here: http://developer.berlios.de/bugs/?group_id=8724
    But they've never replied to a bug, so I doubt they know it exists...

  • Mavericks will only start in safe mode, then shuts down.

    I think the new OS is trying to help me, but it's actually doing the opposite.  Does is automatically try to start in safe mode after a hard shutdown or something? Every time I start up I get the spining wheel and a progress bar that takes 20-30 minutes to fully load.  When it reaches the end the computer just shuts off.  I have been having some problems with the Mac itself - multiple attempts needed to start up etc - but in 10.8 at least it would boot normally.
    I can't even boot in the recovery drive or in Windows, because the safe mode boot begins before the keyboard is recognized, so Option does nothing.  Any thoughts?
    Edit: Tried zapping PRAM etc, still can't get the Option menu or avoid the endless progress bar of doom.

    Hi HCMJ,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    Apple Support: Resolve startup issues and perform disk maintenance with Disk Utility and fsck
    http://support.apple.com/kb/TS1417
    Cheers,
    - Judy

  • Cairo-dock being spawned multiple times when clicking 'home' icon?

    Hi all,
    Not sure if any other cairo-dock users experience this, sometimes another instance of cairo-dock will launch seemingly out of nowhere. I've seen this for a couple of weeks but never been able to correlate it with any particular thing I've been doing. The only way I realize is that when I've got my mouse moving over the dock there's my animated dock and another static copy behind (which isn't animated since it doesn't have focus). Quitting the first dock just leaves the 2nd fully functional one in its place.
    EDIT: mandog isolated the cause.
    Last edited by ngoonee (2010-11-01 16:35:32)

    This was happening to me when I was using Xfce. I had cairo dock at autostart but it was also starting because of Xfce's weird session saving option.
    Last edited by z0id (2010-11-01 13:50:34)

  • OM2012 – Putting a Monitor in maintenance mode

    Hi there,
    I need to write a powershell script to put a Monitor in Maintenance mode. This is easily doable manually on the console whenever an alert comes up by putting the alert in Maintenance Mode.
    So far I managed to make my script to put the class of the Monitor into maintenance, as per bellow
    i.e. if the monitor is “Total CPU Utilization Percentage”, it would put  Microsoft Windows Server 2012 R2 Datacenter in maintenance mode for the computer $ComputerName.
    $ComputerName = Read-Host “Enter computer name”
    $MonitorName = “Total CPU Utilization Percentage”
    $Monitors=Get-SCOMMonitor -ComputerName $strComputerName | where {$_.DisplayName -eq $MonitorName}
    $Time = ((Get-Date).AddMinutes(6))
    foreach ($Monitor in $Monitors) {
    $Instance = Get-SCOMclass -name $Monitor.target.identifier.path | Get-SCOMClassInstance #| where {$_.Path -eq $ComputerName}
    Start-SCOMMaintenanceMode -Instance $Instance -EndTime $Time -Comment: “Server maintenance”
    I can’t figure our how to simply put “Total CPU Utilization Percentage” (or any other Monitor) in maintenance mode
    Thanks for your help !

    Yes, use the "Start Maintenance Mode" Activtiy of the Integration Pack for OpsMgr.
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

Maybe you are looking for

  • Can't start Photoshop up anymore - HELP!!

    I recently got my new MacBook Pro and installed Adobe creative suite on to it with no problems. I have been using Photoshop/Illustrator/InDesign etc all week with no problems. The other day I installed The sims, Champioship Manager, C&C Generals and

  • PI 7.4 message alert to ECC backend.

    Hello Experts, I am busy with a project for IDOC2JDBC scenario. In the best case scenario things are working fine, and i get the recors to the external SQL database. My question is, if there is an error occured in the sql statement or other JDBC erro

  • Photo  Aspect Ratio Problems.

    Hi Folks, Am needing some advice from all you oracles out there lol. I use PSE 7, when I print my photos I prefer to use the standard 3:2 ratio (6x4, 7x9, inch for example). When I use my crop tool on Elements 7 the photo ratio is different. Is it po

  • Manual needed

    Is it just me or does going through these forums point to the need for a manual for Itunes software? For instance - what do the symbols mean? When one of my tunes is 'greyed out'? When there are/are not check marks beside a tune/podcast? How is the f

  • Leaking MPLS VPN learned routes from VRF to Global

    I'm trying to leak routes from a VRF to global. I can get the routes leaked from directly connected CE to the global, however I can't get the routes from remote CE's to leak in to the global routing table. Below are my configurations RP/0/0/CPU0:B25B