Installed Ubuntu Mate recently on my gaming rig. Must say I’m impressed, every game works flawlessly and performance is amazing. I also use this rig to watch some videos.
I have a vanilla install with a few extra apps (chrome and steam)
I was experiencing some bad screen tearing issues in the desktop (while scrolling or moving around windows), playing videos(plex, youtube, netflix) and in games. I fixed it by adding to the xorg.conf, under the screen section the following:
Option "metamodes" "nvidia-auto-select +0+0 { ForceFullCompositionPipeline = On }"
This took care of all screen tearing issues, but since then, every time I use the shutdown button, the desktop environment sort of crashes (all icons turns to red X) and eventually shutdowns, but only after several seconds (previously was instantaneous) like it is hitting a time out or something. This is a picture of the issue:
https://drive.google.com/file/d/0B9OiUsNVqFrud0tnTU0tOTV0WWxSbWFYbFhBb3U0d09PdV9r/view?usp=sharing
If I shutdown from the command line, there is no problem. I have an nvidia gtx980 with the propietary drives (355 using the official Ubuntu graphic drivers ppa)
I found the following errors in the xorg error log, but googling for that didn’t help much:
nm-applet-Message: using fallback from indicator to GtkStatusIcon
** Message: Initializing gksu extension...
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:50: RuntimeWarning: You have imported the Gtk 2.0 module. Because Gtk 2.0 was not designed for use with introspection some of the interfaces and API will fail. As such this is not supported by the pygobject development team and we encourage you to port your app to Gtk 3 or greater. PyGTK is the recomended python module to use with Gtk 2.0
warnings.warn(warn_msg, RuntimeWarning)
** (caja:1370): CRITICAL **: caja_menu_provider_get_background_items: assertion 'CAJA_IS_MENU_PROVIDER (provider)' failed
** (caja:1370): CRITICAL **: caja_menu_provider_get_background_items: assertion 'CAJA_IS_MENU_PROVIDER (provider)' failed
Traceback (most recent call last):
File "/usr/bin/blueman-applet", line 120, in <module>
BluemanApplet()
File "/usr/bin/blueman-applet", line 62, in __init__
self.Plugins.Load()
File "/usr/lib/python2.7/dist-packages/blueman/main/PluginManager.py", line 90, in Load
__import__(self.module_path.__name__ + ".%s" % plugin, None, None, [])
File "/usr/lib/python2.7/dist-packages/blueman/plugins/applet/DBusService.py", line 12, in <module>
from blueman.main.applet.BluezAgent import AdapterAgent
File "/usr/lib/python2.7/dist-packages/blueman/main/applet/BluezAgent.py", line 20, in <module>
from blueman.bluez.Agent import Agent, AgentMethod
File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 48, in <module>
class Agent(dbus.service.Object):
File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 56, in Agent
@AgentMethod
File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 38, in AgentMethod
if BlueZInterface.get_interface_version()[0] < 5:
File "/usr/lib/python2.7/dist-packages/blueman/bluez/BlueZInterface.py", line 16, in get_interface_version
obj = dbus.SystemBus().get_object('org.bluez', '/')
File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 241, in get_object
follow_name_owner_changes=follow_name_owner_changes)
File "/usr/lib/python2.7/dist-packages/dbus/proxies.py", line 248, in __init__
self._named_service = conn.activate_name_owner(bus_name)
File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 180, in activate_name_owner
self.start_service_by_name(bus_name)
File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 278, in start_service_by_name
'su', (bus_name, flags)))
File "/usr/lib/python2.7/dist-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.bluez': timed outs
(mate-power-manager:1377): GLib-CRITICAL **: Source ID 79 was not found when attempting to remove it
[3244:3244:1030/201403:ERROR:background_mode_manager_aura.cc(14)] Not implemented reached in virtual void BackgroundModeManager::EnableLaunchOnStartup(bool)
Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x3600001 (New Tab - )
Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
[1,864053120:18:14:03.616555] Native Client module will be loaded at base address 0x000052ff00000000
[WARNING:flash/platform/pepper/pep_module.cpp(63)] SANDBOXED
[3244:3274:1030/201810:ERROR:channel.cc(307)] RawChannel read error (connection broken)
[3244:3274:1030/202230:ERROR:channel.cc(307)] RawChannel read error (connection broken)
[3244:3274:1030/203206:ERROR:channel.cc(307)] RawChannel read error (connection broken)
(mate-screensaver:1421): GLib-CRITICAL **: Source ID 195 was not found when attempting to remove it
[3244:3274:1030/221107:ERROR:channel.cc(307)] RawChannel read error (connection broken)
[3244:3274:1030/224206:ERROR:channel.cc(307)] RawChannel read error (connection broken)
[3244:3274:1030/230308:ERROR:channel.cc(307)] RawChannel read error (connection broken)
[3244:3274:1030/233807:ERROR:channel.cc(307)] RawChannel read error (connection broken)
(mate-power-manager:1377): GLib-CRITICAL **: Source ID 84 was not found when attempting to remove it
** (mate-panel:1334): WARNING **: Could not ask session manager to shut down: Shutdown interface is only available during the Running phase
mate-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Most interesting seems the last line, about shutdown interface.
Any ideas?