[SOLVED] Upgrade to XOrg 1.15 broke KWin and DRI_PRIME

I did another "pacman -Syu" this morning hoping for an uneventful update. However, after a reboot I found my KDE to be in a pretty much useless. Windows were black except for decorations (http://prifuk.cz/non_drupal/kwin_black.jpg) and DRI_PRIME=1 doesn't run 3D acceleration on my Radeon DIS anymore. At first I suspected a problem with mesa but the problem persisted even after a downgrade to 10.0.1 which worked fine for me. Another suspect on the list is X.Org but I cannot roll back to 1.14 because everything apparently depends on GLAMOR now and I do not have all necessary packages in pacman's cache anymore.
I switched KWin to use XRender instead of OpenGL which at least renders the screen correctly, OpenBox works fine too. I might be wrong about X.Org being the cause but I can't think of anything else. Does anybody have any idea how to debug this issue? I have an Intel HD3000 + Radeon 6400M, both were working fine before the last update.
http://prifuk.cz/non_drupal/Xorg.0.log
Last edited by MadCat_X (2014-01-15 21:15:46)

I noticed this as well, though not using kwin. I got DRI_PRIME back by manually
xrandr --setprovideroffloadsink 0x55 0x7d
where the numbers are the given by
xrandr --listproviders
(xrandr is not installed by default with Xorg, package name xorg-xrandr).
Reference: Prime - ArchWiki
I have not yet delved deeper into why it's no longer set automatically.
EDIT: I probably jumped the gun, I have none of your problems, I just noticed DRI_PRIME=1 wasn't enough to use the radeon card. I probably had to:
xrandr --setprovideroffloadsink 0x55 0x7d
before as well.
Last edited by obscurity (2014-01-14 14:04:59)

Similar Messages

  • [SOLVED]Triple Monitors Xorg with AMD&NVIDIA: XRANDR and Xinerama...

    Hello,
    I'm trying to set up a tri monitor setup. Unfortunately I must use 2 cards, one an AMD HD4350 and a PCI Geforce FX200. (Old skool I know)
    Due to the restrictions, I am forced to use the open source drivers (else nvidia glx will clash).
    As I see it, I have 2 solutions available to me:
    1: Use XRANDR to span the displays (this is what I did previous to the introduction of the third monitor and nvidia card to my system)
    I tried to do this, by setting up a second X screen on the NVIDIA card, disabling Xinerama; but after much googling I can't figure out the syntax for panning across 2 screens (X screens) in XRANDR, even tho it's >1.3, which supposedly supports multi card output.
    2:Use Xinerama, sacrificing randr, and composite extensions.
    I also attempted to do this, with some limited success. I could get the NVIDIA screen to be right of the ATI, but I couldn't get 2 independent outputs running on the ATI card, even with "ZapohHeads" appended to one of the device sections for my ATI card.
    Any suggestions to how I can sort this?
    I'm amazed there's not a way to have mixed nvidia/radeon on X11 in 2011.
    Thanks,
    Chris.
    EDIT:
    It turns out the xrandr multi card output is an urban myth.
    I went the Xinerama route, I've pasted my xorg.conf below.
    Section "ServerLayout"
    Identifier "Hand Configured"
    Screen 0 "LeftScreen" 0 0
    Screen 1 "MiddleScreen" RightOf "LeftScreen"
    Screen 2 "RightScreen" RightOf "MiddleScreen"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "ON"
    Option "RandR" "false"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "record"
    Load "dbe"
    Load "dri"
    Load "drm"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "gb"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    Option "AccelMethod" "EXA"
    Option "DRI" "on"
    Option "ColorTiling" "on"
    #Screen 0
    # Option "ZaphodHeads" "DVI-0"
    BusID "PCI:01:00:0"
    # Option "DynamicPM" "on"
    # Option "ClockGating" "on"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "radeon"
    Option "AccelMethod" "EXA"
    Option "DRI" "on"
    Option "ColorTiling" "on"
    Screen 1
    Option "ZaphodHeads" "DVI-0"
    BusID "PCI:01:00:0"
    # Option "DynamicPM" "on"
    # Option "ClockGating" "on"
    EndSection
    Section "Device"
    Identifier "nvidia card"
    Driver "nouveau"
    BusID "PCI:3:5:0"
    #Screen 1
    EndSection
    Section "Screen"
    Identifier "LeftScreen"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "MiddleScreen"
    Device "Card1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "RightScreen"
    Device "nvidia card"
    Monitor "Monitor2"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Last edited by kernel_geek (2011-03-24 18:44:26)

    Hello,
    I'm trying to set up a tri monitor setup. Unfortunately I must use 2 cards, one an AMD HD4350 and a PCI Geforce FX200. (Old skool I know)
    Due to the restrictions, I am forced to use the open source drivers (else nvidia glx will clash).
    As I see it, I have 2 solutions available to me:
    1: Use XRANDR to span the displays (this is what I did previous to the introduction of the third monitor and nvidia card to my system)
    I tried to do this, by setting up a second X screen on the NVIDIA card, disabling Xinerama; but after much googling I can't figure out the syntax for panning across 2 screens (X screens) in XRANDR, even tho it's >1.3, which supposedly supports multi card output.
    2:Use Xinerama, sacrificing randr, and composite extensions.
    I also attempted to do this, with some limited success. I could get the NVIDIA screen to be right of the ATI, but I couldn't get 2 independent outputs running on the ATI card, even with "ZapohHeads" appended to one of the device sections for my ATI card.
    Any suggestions to how I can sort this?
    I'm amazed there's not a way to have mixed nvidia/radeon on X11 in 2011.
    Thanks,
    Chris.
    EDIT:
    It turns out the xrandr multi card output is an urban myth.
    I went the Xinerama route, I've pasted my xorg.conf below.
    Section "ServerLayout"
    Identifier "Hand Configured"
    Screen 0 "LeftScreen" 0 0
    Screen 1 "MiddleScreen" RightOf "LeftScreen"
    Screen 2 "RightScreen" RightOf "MiddleScreen"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "ON"
    Option "RandR" "false"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "record"
    Load "dbe"
    Load "dri"
    Load "drm"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "gb"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
    Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    Option "AccelMethod" "EXA"
    Option "DRI" "on"
    Option "ColorTiling" "on"
    #Screen 0
    # Option "ZaphodHeads" "DVI-0"
    BusID "PCI:01:00:0"
    # Option "DynamicPM" "on"
    # Option "ClockGating" "on"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "radeon"
    Option "AccelMethod" "EXA"
    Option "DRI" "on"
    Option "ColorTiling" "on"
    Screen 1
    Option "ZaphodHeads" "DVI-0"
    BusID "PCI:01:00:0"
    # Option "DynamicPM" "on"
    # Option "ClockGating" "on"
    EndSection
    Section "Device"
    Identifier "nvidia card"
    Driver "nouveau"
    BusID "PCI:3:5:0"
    #Screen 1
    EndSection
    Section "Screen"
    Identifier "LeftScreen"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "MiddleScreen"
    Device "Card1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "RightScreen"
    Device "nvidia card"
    Monitor "Monitor2"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024"
    #Virtual 2560 1024
    EndSubSection
    EndSection
    Last edited by kernel_geek (2011-03-24 18:44:26)

  • Upgrade to 3.1.1 broke drag and drop form items

    after upgrading to 3.1.1 when I click the drag and drop icon in items on a form i can then move the fields around and when I hit next the page shows no fields, if I then click apply and look at the form the fields have not moved..

    Hello,
    For me this functionality is still working...
    Do you have the same in another browser? (I'm using FF)
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Some problems with 3D with xorg 1.9.2-1 and xf86-video-intel 2.12.0-3

    I have some problems with the upgrade to xorg 1.9.1-1 and xf86-video-intel 2.12.0-3. Glxgears does not run smoothly at all and I got 15-20 fps (instead of the normal 60 because intel should sync with the V refresh rate). Very curiously, these problems disapear if I move the mouse cursor somewhere in the screen. Then glxgears run smooth and I have indeed the expected 60 fps
    There are no error messages and glxinfo say that 3D is indeed enabled.
    Xorg log file:
    [ 358.899] _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
    [ 358.899] _XSERVTransOpen: transport open failed for inet6/myhost:0
    [ 358.899] _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
    [ 358.900]
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    [ 358.900] X Protocol Version 11, Revision 0
    [ 358.900] Build Operating System: Linux 2.6.35-ARCH i686
    [ 358.900] Current Operating System: Linux myhost 2.6.35-ARCH #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010 i686
    [ 358.900] Kernel command line: root=/dev/disk/by-uuid/e5c72fc3-4e8b-4f5d-9023-12216af63d84 resume=/dev/disk/by-uuid/96f14b75-fb64-4881-863d-124af7c13e2f ro
    [ 358.900] Build Date: 01 November 2010 10:23:07PM
    [ 358.900]
    [ 358.900] Current version of pixman: 0.18.4
    [ 358.900] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 358.900] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 358.900] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Nov 9 10:14:10 2010
    [ 358.900] (==) Using config file: "/etc/X11/xorg.conf"
    [ 358.901] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 358.901] (==) ServerLayout "X.org Configured"
    [ 358.901] (**) |-->Screen "Screen0" (0)
    [ 358.901] (**) | |-->Monitor "Monitor0"
    [ 358.901] (**) | |-->Device "Card0"
    [ 358.901] (**) |-->Input Device "Mouse0"
    [ 358.901] (**) |-->Input Device "touchpad"
    [ 358.901] (**) |-->Input Device "Keyboard0"
    [ 358.901] (**) Option "DontZap" "off"
    [ 358.901] (**) Option "StandbyTime" "5"
    [ 358.901] (**) Option "SuspendTime" "5"
    [ 358.901] (**) Option "OffTime" "5"
    [ 358.901] (**) Option "Xinerama" "on"
    [ 358.901] (**) Option "AutoAddDevices" "off"
    [ 358.901] (**) Not automatically adding devices
    [ 358.901] (==) Automatically enabling devices
    [ 358.902] (**) Xinerama: enabled
    [ 358.902] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 358.902] Entry deleted from font path.
    [ 358.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 358.902] Entry deleted from font path.
    [ 358.902] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 358.902] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 358.902] Entry deleted from font path.
    [ 358.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 358.902] Entry deleted from font path.
    [ 358.902] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 358.902] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/75dpi/
    [ 358.902] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 358.902] (II) Loader magic: 0x81f1f80
    [ 358.902] (II) Module ABI versions:
    [ 358.902] X.Org ANSI C Emulation: 0.4
    [ 358.902] X.Org Video Driver: 8.0
    [ 358.902] X.Org XInput driver : 11.0
    [ 358.902] X.Org Server Extension : 4.0
    [ 358.903] (--) PCI:*(0:0:2:0) 8086:27a2:1584:9916 rev 3, Mem @ 0xb0080000/524288, 0xc0000000/268435456, 0xb0040000/262144, I/O @ 0x00001800/8
    [ 358.903] (--) PCI: (0:0:2:1) 8086:27a6:1584:9916 rev 3, Mem @ 0xb0100000/524288
    [ 358.904] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 358.904] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) LoadModule: "extmod"
    [ 358.904] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 358.904] (II) Module extmod: vendor="X.Org Foundation"
    [ 358.904] compiled for 1.9.2, module version = 1.0.0
    [ 358.904] Module class: X.Org Server Extension
    [ 358.904] ABI class: X.Org Server Extension, version 4.0
    [ 358.904] (II) Loading extension MIT-SCREEN-SAVER
    [ 358.904] (II) Loading extension XFree86-VidModeExtension
    [ 358.904] (II) Loading extension XFree86-DGA
    [ 358.904] (II) Loading extension DPMS
    [ 358.904] (II) Loading extension XVideo
    [ 358.904] (II) Loading extension XVideo-MotionCompensation
    [ 358.904] (II) Loading extension X-Resource
    [ 358.904] (II) LoadModule: "glx"
    [ 358.904] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 358.905] (II) Module glx: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.0.0
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (==) AIGLX enabled
    [ 358.905] (II) Loading extension GLX
    [ 358.905] (II) LoadModule: "record"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 358.905] (II) Module record: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.13.0
    [ 358.905] Module class: X.Org Server Extension
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (II) Loading extension RECORD
    [ 358.905] (II) LoadModule: "dri2"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 358.905] (II) Module dri2: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.2.0
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (II) Loading extension DRI2
    [ 358.905] (II) LoadModule: "dbe"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 358.906] (II) Module dbe: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.2, module version = 1.0.0
    [ 358.906] Module class: X.Org Server Extension
    [ 358.906] ABI class: X.Org Server Extension, version 4.0
    [ 358.906] (II) Loading extension DOUBLE-BUFFER
    [ 358.906] (II) LoadModule: "dri"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 358.906] (II) Module dri: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.2, module version = 1.0.0
    [ 358.906] ABI class: X.Org Server Extension, version 4.0
    [ 358.906] (II) Loading extension XFree86-DRI
    [ 358.906] (II) LoadModule: "synaptics"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 358.906] (II) Module synaptics: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.0, module version = 1.3.0
    [ 358.906] Module class: X.Org XInput Driver
    [ 358.906] ABI class: X.Org XInput driver, version 11.0
    [ 358.906] (II) LoadModule: "intel"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 358.907] (II) Module intel: vendor="X.Org Foundation"
    [ 358.907] compiled for 1.9.0, module version = 2.12.0
    [ 358.907] Module class: X.Org Video Driver
    [ 358.907] ABI class: X.Org Video Driver, version 8.0
    [ 358.907] (II) LoadModule: "mouse"
    [ 358.907] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 358.907] (II) Module mouse: vendor="X.Org Foundation"
    [ 358.907] compiled for 1.9.0, module version = 1.6.0
    [ 358.907] Module class: X.Org XInput Driver
    [ 358.907] ABI class: X.Org XInput driver, version 11.0
    [ 358.907] (II) LoadModule: "synaptics"
    [ 358.907] (II) Reloading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 358.907] (II) LoadModule: "kbd"
    [ 358.908] (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    [ 358.908] (II) Module kbd: vendor="X.Org Foundation"
    [ 358.908] compiled for 1.9.0, module version = 1.4.0
    [ 358.908] Module class: X.Org XInput Driver
    [ 358.908] ABI class: X.Org XInput driver, version 11.0
    [ 358.908] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, Clarkdale, Arrandale
    [ 358.908] (--) using VT number 7
    [ 358.908] (WW) xf86OpenConsole: setpgid failed: Operation not permitted
    [ 358.908] (WW) xf86OpenConsole: setsid failed: Operation not permitted
    [ 358.916] drmOpenDevice: node name is /dev/dri/card0
    [ 358.916] drmOpenDevice: open result is 10, (OK)
    [ 358.916] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 358.916] drmOpenDevice: node name is /dev/dri/card0
    [ 358.916] drmOpenDevice: open result is 10, (OK)
    [ 358.916] drmOpenByBusid: drmOpenMinor returns 10
    [ 358.916] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 358.916] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 358.916] (==) intel(0): RGB weight 888
    [ 358.916] (==) intel(0): Default visual is TrueColor
    [ 358.916] (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    [ 358.916] (--) intel(0): Chipset: "945GM"
    [ 358.916] (==) intel(0): video overlay key set to 0x101fe
    [ 358.953] (II) intel(0): Output VGA1 using monitor section vgamonitor
    [ 358.953] (**) intel(0): Option "Disable" "true"
    [ 359.059] (II) intel(0): Output LVDS1 using monitor section lvdsmonitor
    [ 359.059] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 359.340] (II) intel(0): Output TV1 has no monitor section
    [ 359.380] (II) intel(0): EDID for output VGA1
    [ 359.486] (II) intel(0): EDID for output LVDS1
    [ 359.486] (II) intel(0): Manufacturer: CPT Model: 13a6 Serial#: 0
    [ 359.486] (II) intel(0): Year: 2006 Week: 17
    [ 359.486] (II) intel(0): EDID Version: 1.3
    [ 359.486] (II) intel(0): Digital Display Input
    [ 359.486] (II) intel(0): Max Image Size [cm]: horiz.: 33 vert.: 21
    [ 359.486] (II) intel(0): Gamma: 2.20
    [ 359.486] (II) intel(0): No DPMS capabilities specified
    [ 359.486] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 359.486] (II) intel(0): First detailed timing is preferred mode
    [ 359.486] (II) intel(0): redX: 0.600 redY: 0.340 greenX: 0.309 greenY: 0.559
    [ 359.486] (II) intel(0): blueX: 0.149 blueY: 0.131 whiteX: 0.315 whiteY: 0.329
    [ 359.486] (II) intel(0): Manufacturer's mask: 0
    [ 359.486] (II) intel(0): Supported detailed timing:
    [ 359.486] (II) intel(0): clock: 68.9 MHz Image Size: 331 x 207 mm
    [ 359.486] (II) intel(0): h_active: 1280 h_sync: 1301 h_sync_end 1333 h_blank_end 1408 h_border: 0
    [ 359.486] (II) intel(0): v_active: 800 v_sync: 801 v_sync_end 804 v_blanking: 816 v_border: 0
    [ 359.486] (II) intel(0): Unknown vendor-specific block f
    [ 359.486] (II) intel(0): FD1631154WB4
    [ 359.486] (II) intel(0): /BRZÄêÿ
    [ 359.486] (II) intel(0): EDID (in hex):
    [ 359.486] (II) intel(0): 00ffffffffffff000e14a61300000000
    [ 359.486] (II) intel(0): 11100103802115780a806d99574f8f26
    [ 359.486] (II) intel(0): 21505400000001010101010101010101
    [ 359.486] (II) intel(0): 010101010101ea1a0080502010301520
    [ 359.486] (II) intel(0): 13004bcf100000190000000f00000000
    [ 359.486] (II) intel(0): 0000000000206e050f00000000fe0046
    [ 359.486] (II) intel(0): 44313633313135345742340a000000fe
    [ 359.486] (II) intel(0): 002f42525a81c4eaff01010a2020004f
    [ 359.487] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Printing probed modes for output LVDS1
    [ 359.487] (II) intel(0): Modeline "1280x800"x60.0 68.90 1280 1301 1333 1408 800 801 804 816 -hsync -vsync (48.9 kHz)
    [ 359.487] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 359.487] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 359.487] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 359.487] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 359.766] (II) intel(0): EDID for output TV1
    [ 359.766] (II) intel(0): Output VGA1 disabled by config file
    [ 359.766] (II) intel(0): Output LVDS1 connected
    [ 359.766] (II) intel(0): Output TV1 disconnected
    [ 359.766] (II) intel(0): Using exact sizes for initial modes
    [ 359.766] (II) intel(0): Output LVDS1 using initial mode 1280x800
    [ 359.766] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 359.766] (II) intel(0): Pageflipping enabled in kernel, but disabled in X
    [ 359.766] (II) intel(0): Don't panic: https://bugzilla.redhat.com/588421
    [ 359.766] (==) intel(0): DPI set to (96, 96)
    [ 359.767] (II) Loading sub module "fb"
    [ 359.767] (II) LoadModule: "fb"
    [ 359.767] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 359.767] (II) Module fb: vendor="X.Org Foundation"
    [ 359.767] compiled for 1.9.2, module version = 1.0.0
    [ 359.767] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 359.767] (==) Depth 24 pixmap format is 32 bpp
    [ 359.767] (II) intel(0): [DRI2] Setup complete
    [ 359.767] (II) intel(0): [DRI2] DRI driver: i915
    [ 359.767] (**) intel(0): Tiling enabled
    [ 359.767] (**) intel(0): SwapBuffers wait enabled
    [ 359.767] (==) intel(0): VideoRam: 262144 KB
    [ 359.767] (II) intel(0): Allocated new frame buffer 1280x800 stride 8192, tiled
    [ 359.767] (II) UXA(0): Driver registered support for the following operations:
    [ 359.767] (II) solid
    [ 359.767] (II) copy
    [ 359.767] (II) composite (RENDER acceleration)
    [ 359.767] (II) put_image
    [ 359.767] (II) get_image
    [ 359.767] (==) intel(0): Backing store disabled
    [ 359.767] (==) intel(0): Silken mouse enabled
    [ 359.767] (II) intel(0): Initializing HW Cursor
    [ 359.803] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 359.804] (==) intel(0): DPMS enabled
    [ 359.805] (==) intel(0): Intel XvMC decoder disabled
    [ 359.805] (II) intel(0): Set up textured video
    [ 359.805] (II) intel(0): Set up overlay video
    [ 359.805] (II) intel(0): direct rendering: DRI2 Enabled
    [ 359.805] (--) RandR disabled
    [ 359.805] (II) Initializing built-in extension Generic Event Extension
    [ 359.805] (II) Initializing built-in extension SHAPE
    [ 359.805] (II) Initializing built-in extension MIT-SHM
    [ 359.805] (II) Initializing built-in extension XInputExtension
    [ 359.805] (II) Initializing built-in extension XTEST
    [ 359.805] (II) Initializing built-in extension BIG-REQUESTS
    [ 359.805] (II) Initializing built-in extension SYNC
    [ 359.805] (II) Initializing built-in extension XKEYBOARD
    [ 359.805] (II) Initializing built-in extension XC-MISC
    [ 359.805] (II) Initializing built-in extension SECURITY
    [ 359.805] (II) Initializing built-in extension XINERAMA
    [ 359.805] (II) Initializing built-in extension XFIXES
    [ 359.805] (II) Initializing built-in extension RENDER
    [ 359.805] (II) Initializing built-in extension RANDR
    [ 359.805] (II) Initializing built-in extension COMPOSITE
    [ 359.805] (II) Initializing built-in extension DAMAGE
    [ 359.821] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 359.821] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 359.821] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 359.821] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 359.821] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 359.821] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    [ 359.821] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 359.822] (II) intel(0): Setting screen physical size to 338 x 211
    [ 360.019] (**) Option "Protocol" "auto"
    [ 360.019] (**) Option "Device" "/dev/input/mice"
    [ 360.019] (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    [ 360.019] (**) Mouse0: Device: "/dev/input/mice"
    [ 360.019] (**) Mouse0: Protocol: "auto"
    [ 360.019] (**) Option "CorePointer"
    [ 360.019] (**) Mouse0: always reports core events
    [ 360.019] (**) Option "Device" "/dev/input/mice"
    [ 360.019] (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    [ 360.019] (**) Option "ZAxisMapping" "4 5 6 7"
    [ 360.019] (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    [ 360.019] (**) Mouse0: Buttons: 11
    [ 360.019] (**) Option "Sensitivity" "0.7"
    [ 360.019] (**) Mouse0: Sensitivity: 0.7
    [ 360.019] (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    [ 360.019] (**) Mouse0: (accel) keeping acceleration scheme 1
    [ 360.019] (**) Mouse0: (accel) acceleration profile 0
    [ 360.019] (**) Mouse0: (accel) acceleration factor: 2.000
    [ 360.019] (**) Mouse0: (accel) acceleration threshold: 4
    [ 360.019] (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    [ 360.311] (II) Mouse0: ps2EnableDataReporting: succeeded
    [ 360.311] (II) Synaptics touchpad driver version 1.3.0
    [ 360.312] (--) touchpad auto-dev sets device to /dev/input/event6
    [ 360.312] (**) Option "Device" "/dev/input/event6"
    [ 360.312] (--) touchpad: x-axis range 1472 - 5472
    [ 360.312] (--) touchpad: y-axis range 1408 - 4448
    [ 360.312] (--) touchpad: pressure range 0 - 255
    [ 360.312] (--) touchpad: finger width range 0 - 0
    [ 360.312] (--) touchpad: buttons: left right double triple
    [ 360.312] (--) touchpad: invalid finger width range. defaulting to 0 - 16
    [ 360.312] (**) Option "TapButton1" "1"
    [ 360.312] (--) touchpad: touchpad found
    [ 360.312] (**) Option "SendCoreEvents"
    [ 360.312] (**) touchpad: always reports core events
    [ 360.312] (II) XINPUT: Adding extended input device "touchpad" (type: TOUCHPAD)
    [ 360.312] (**) touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 360.312] (**) touchpad: MaxSpeed is now 1.75
    [ 360.312] (**) touchpad: AccelFactor is now 0.040
    [ 360.312] (**) touchpad: (accel) keeping acceleration scheme 1
    [ 360.312] (**) touchpad: (accel) acceleration profile 1
    [ 360.312] (**) touchpad: (accel) acceleration factor: 2.000
    [ 360.312] (**) touchpad: (accel) acceleration threshold: 4
    [ 360.312] (--) touchpad: touchpad found
    [ 360.312] (**) Option "CoreKeyboard"
    [ 360.312] (**) Keyboard0: always reports core events
    [ 360.312] (**) Option "Protocol" "standard"
    [ 360.312] (**) Keyboard0: Protocol: standard
    [ 360.312] (**) Option "XkbRules" "base"
    [ 360.312] (**) Keyboard0: XkbRules: "base"
    [ 360.312] (**) Option "XkbModel" "pc105"
    [ 360.312] (**) Keyboard0: XkbModel: "pc105"
    [ 360.312] (**) Option "XkbLayout" "fr"
    [ 360.313] (**) Keyboard0: XkbLayout: "fr"
    [ 360.313] (**) Option "XkbVariant" "oss"
    [ 360.313] (**) Keyboard0: XkbVariant: "oss"
    [ 360.313] (**) Option "XkbOptions" "terminate:ctrl_alt_bksp"
    [ 360.313] (**) Keyboard0: XkbOptions: "terminate:ctrl_alt_bksp"
    [ 360.313] (**) Option "CustomKeycodes" "off"
    [ 360.313] (**) Keyboard0: CustomKeycodes disabled
    [ 360.313] (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    [ 360.372] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 360.372] (II) AutoAddDevices is off - not adding device.
    [ 360.373] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 360.373] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.377] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 360.377] (II) AutoAddDevices is off - not adding device.
    [ 360.379] (II) config/udev: Adding input device MLK Trust Wireless Mouse (/dev/input/event9)
    [ 360.379] (II) AutoAddDevices is off - not adding device.
    [ 360.380] (II) config/udev: Adding input device MLK Trust Wireless Mouse (/dev/input/mouse1)
    [ 360.380] (II) AutoAddDevices is off - not adding device.
    [ 360.382] (II) config/udev: Adding input device Western Digital External HDD (/dev/input/event8)
    [ 360.382] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 362.484] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 368.334] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 368.334] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 368.503] (II) intel(0): EDID vendor "CPT", prod id 5030
    [ 368.503] (II) intel(0): Printing DDC gathered Modelines:
    [ 368.503] (II) intel(0): Modeline "1280x800"x0.0 68.90 1280 1301 1333 1408 800 801 804 816 -hsync -vsync (48.9 kHz)
    [ 369.076] (II) Mouse0: ps2EnableDataReporting: succeeded
    [ 369.076] (--) touchpad: touchpad found
    [ 441.972] (II) 3rd Button detected: disabling emulate3Button
    output of glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_INTEL_swap_event
    client glx vendor string: Mesa Project and SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap,
    GLX_INTEL_swap_event
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap,
    GLX_INTEL_swap_event
    OpenGL vendor string: Tungsten Graphics, Inc
    OpenGL renderer string: Mesa DRI Intel(R) 945GM GEM 20100328 2010Q1 x86/MMX/SSE2
    OpenGL version string: 1.4 Mesa 7.8.3
    OpenGL extensions:
    GL_ARB_copy_buffer, GL_ARB_depth_texture, GL_ARB_draw_buffers,
    GL_ARB_draw_elements_base_vertex, GL_ARB_fragment_program,
    GL_ARB_half_float_pixel, GL_ARB_map_buffer_range, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_pixel_buffer_object, GL_ARB_point_parameters,
    GL_ARB_point_sprite, GL_ARB_provoking_vertex, GL_ARB_shader_objects,
    GL_ARB_shading_language_100, GL_ARB_shading_language_120, GL_ARB_shadow,
    GL_ARB_sync, GL_ARB_texture_border_clamp, GL_ARB_texture_compression,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_vertex_array_object,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract,
    GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_copy_texture,
    GL_EXT_draw_range_elements, GL_EXT_framebuffer_blit,
    GL_EXT_framebuffer_object, GL_EXT_fog_coord,
    GL_EXT_gpu_program_parameters, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_polygon_offset, GL_EXT_provoking_vertex, GL_EXT_rescale_normal,
    GL_EXT_secondary_color, GL_EXT_separate_specular_color,
    GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap,
    GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D,
    GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
    GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic,
    GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle,
    GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1,
    GL_APPLE_client_storage, GL_APPLE_packed_pixels,
    GL_APPLE_vertex_array_object, GL_APPLE_object_purgeable,
    GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3,
    GL_ATI_separate_stencil, GL_IBM_multimode_draw_arrays,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat,
    GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
    GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent,
    GL_NV_packed_depth_stencil, GL_NV_texture_env_combine4,
    GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program,
    GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays
    32 GLX Visuals
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x8e 24 tc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x8f 24 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x90 24 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x91 24 tc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x92 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x93 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x94 24 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x95 24 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x96 24 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x97 24 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x98 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x99 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x9a 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x9b 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x9c 24 dc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9d 24 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9e 24 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9f 24 dc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa0 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa1 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa2 24 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa3 24 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa4 24 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa5 24 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xa6 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xa7 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa8 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0xa9 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xaa 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x5d 32 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    48 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x5e 0 tc 0 16 0 r . . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x5f 0 tc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x60 0 tc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x61 0 tc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x62 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x63 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x64 0 tc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x65 0 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x66 0 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x67 0 tc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x68 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x69 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x6a 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6b 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6c 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6d 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x6e 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x6f 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x70 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x71 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x72 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x73 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x74 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x75 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x76 0 dc 0 16 0 r . . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x77 0 dc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x78 0 dc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x79 0 dc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7a 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7b 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7c 0 dc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7d 0 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7e 0 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7f 0 dc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x80 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x81 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x82 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x83 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x84 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x85 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x86 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x87 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x88 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x89 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x8a 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x8b 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x8c 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x8d 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow

    Gusar wrote:
    *sigh*
    Do you have problems with anything that's *not* glxgears?
    I have indeed not seen other problems. Presently the only other software that I believe use openGL that I use is googleearth; which run fine. Could it be a problem with glxgears?

  • [solved]wacom doesn't work after upgrade to xorg 1.6 and kernel 2.6.29

    hello..
    i have already posted about that in testing-forums, but since xorg 1.6 and kernel 2.6.29 have moved to extra, though i'd create a seperate topic about that.
    after i have upgraded to xorg 1.6 and kernel 2.6.29 my wacom device (as built-in, not usb) on my thinkpad x41t stopped working.
    before upgrade i have used xorg with hotplugging enabled. everything worked fine.
    after wacom stopeed working i removed everything regarding input devices from xorg.conf -> no change
    put an fdi-file for wacom -> no change
    installed linuxwacom-dev -> no change
    i don't really know, if it's a kernel or an xorg issue. loading wacom drivers manually still doesn't solve the problem. no warnings or errors about wacom in xorg-log or messages.log
    how could i check, wether my system recognizes the device properly at all? it doesn't show up in lspci or in lsusb.
    any help would be great.
    Last edited by lynucs (2009-04-14 18:57:17)

    well, upgraded again to xorg-server 1.6, disabled hotplugging, installed linuxwacom-dev from aur and the wacom works as allways. (had to edit xmodmap one more time, since kbd returns other keycodes than evdev does :-| ). no matter, done is done.
    but intel driver returns broken graphics if i rotate screen with xrandr.
    i guess there is no way around this execpt switching to the ultra-slow legacy driver?
    just for comparison - glxgears fps:
    intel: ~900fps
    intel-legacy: ~280fps
    Last edited by lynucs (2009-04-14 18:56:48)

  • [Solved] Problem with xf86-video-intel after upgrade to xorg 1.16

    Hi everyone,
    since the upgrade to xorg-server 1.16 i can't get X to work again on my thinkpad R50e with an old intel integrated chip (Intel Extreme Graphics 2).
    I first encountered the error "cannot open /dev/tty0": http://okraits.de/upload/xorg/Xorg.0.log
    Then i created /etc/X11/Xwrapper.config: http://okraits.de/upload/xorg/Xwrapper.config
    Then i got the error "failed to set mode": http://okraits.de/upload/xorg/Xorg.1.log
    My xorg.conf looks like this: http://okraits.de/upload/xorg/xorg.conf
    I start X with startx and this .xinitrc: http://okraits.de/upload/xorg/.xinitrc
    I have no clue how to fix this. Any help would be much appreciated!
    Greetings,
    Oliver
    Last edited by okraits (2014-08-08 06:33:09)

    lolilolicon wrote:
    How do you start X? Note you must start X from the same VT where you login, if you use Xorg.bin (no setuid). From your log there're mentions of /dev/tty0 and "Using VT number 2", so I suppose that might be the problem.
    If you simply use `startx`, the actual process running will be something like
    /usr/bin/Xorg.bin -nolisten tcp :0 -auth /tmp/serverauth.XXXXXXXXXX vt1
    Note the `vt1` in the line must be specified, where 1 is the value of $XDG_VTNR in the VT where you login.
    Edit
    In my log there's something yours are missing
    [ 45.465] (++) using VT number 1
    [ 45.465] (--) controlling tty is VT number 1, auto-enabling KeepTty
    I login at tty1 (which is the first one visible after boot) and run startx from there.
    I added the following to my .xinitrc:
    echo "vt: $XDG_VTNR"
    The output was:
    vt: 1
    That would be ok, right? Or is it $XDG_VTNR + 1?
    So i am wondering what is forcing X to use vt 2. Or how i can tell X to use vt 1.
    Last edited by okraits (2014-08-07 12:37:17)

  • TVTime doesn't works after upgrade to Xorg 1.7.1-1 [Solved]

    Hi to everyone:
    My TVTime worked until the upgrade to Xorg 1.7.1-1 .
    Now, I'm launching the TVTime, and the console shows this :
    user@archerpc:~$ tvtime
    Running tvtime 1.0.2.
    Reading configuration from /etc/tvtime/tvtime.xml
    Reading configuration from /home/user/.tvtime/tvtime.xml
    xvoutput: No XVIDEO port found which supports YUY2 images.
    *** tvtime requires hardware YUY2 overlay support from your video card
    *** driver.  If you are using an older NVIDIA card (TNT2), then
    *** this capability is only available with their binary drivers.
    *** For some ATI cards, this feature may be found in the experimental
    *** GATOS drivers: http://gatos.souceforge.net/
    *** If unsure, please check with your distribution to see if your
    *** X driver supports hardware overlay surfaces.
    Someone else with the same problem ... anyone knows how to fix it?
    Last edited by Ravenman (2009-11-02 01:40:12)

    Hi to everyone:
    The solution is simple: before, I was using the xf86-video-radeonhd driver and now I'm using the xf86-video-ati driver, and I can see the TV again
    Thanks to Jan de Groot for his help and patience. Until the next.

  • Upgrade to Xorg 7.0 - Screen Jitters

    I just upgraded to Xorg 7.0.  Unfortunately, the screen jitters every 5 second or so.  It is very annoying.
    I am using an old Toshiba 4020CDT laptop with Chips and Tech CT 65555 Video chipset.
    I installed the xf86-video-chips driver.
    Any suggestions?
    Rob

    I solved it.  Xorg --configure did not create a proper xorg.conf.  It choose the vesa driver, not the chips driver.  It also did not specify the HorizSync and VertRefresh.
    In the Monitor Section, I added the following:
    HorizSync   31.5 - 48.5
    VertRefresh 50.0 - 90.0
    In the Device section, I changed Driver "vesa" to Driver "chips"
    In the Screen section, I added the following:
    DefaultDepth 16
    Now it works great!
    Rob

  • Random blackout atfer upgrading to xorg 1.6?

    OK, I'm not very sure if this is related to xorg, here is the situation:
    After upgrading to xorg 1.6, I restart X and start firefox to surf the internet,
    atfer a few hours of usage, my screen suddenly blackouts, and it seems like a hard crash,
    I can't use crtl-alt-backspace to kill X nor use crtl-alt-Fn to switch between virtual consoles,
    this is very frustrating since I'm always very proud of my super-rock-solid Arch,
    I have NEVER had issue like this, since it happens after upgrading to xorg 1.6,
    I suspect the incident is related to it,
    does anyone have a similiar situation?
    any suggests or thoughts would be very appriciated.
    Sean

    You have to add the 2 patches given by mlee and recompile xorg-server
    Here's my modified xorg-server PKGBUILD
    # $Id$
    # Maintainer: Alexander Baldeck <[email protected]>
    # Contributor: Jan de Groot <[email protected]>
    pkgname=xorg-server
    pkgver=1.6.0
    pkgrel=4
    pkgdesc="X.Org X servers"
    arch=('i686' 'x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org"
    depends=('hal>=0.5.11' 'libgl' 'libxfont>=1.4.0' 'openssl>=0.9.8j' 'libpciaccess>=0.10.5' 'libxv>=1.0.4' 'pixman>=0.14.0' 'xcursor-themes' 'xkeyboard-config>=1.5' 'xorg-server-utils' 'xorg-fonts-misc' 'xbitmaps' 'diffutils' 'xf86-input-evdev>=2.1.3')
    makedepends=('libx11>=1.2' 'mesa>=7.4' 'xf86driproto>=2.0.4' 'xtrans>=1.2.3' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'renderproto>=0.9.3' 'xcmiscproto>=1.1.2' 'bigreqsproto>=1.0.2' 'resourceproto>=1.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'scrnsaverproto>=1.1.0' 'resourceproto>=1.0.2' 'libxinerama>=1.0.3' 'xf86dgaproto>=2.0.3' 'recordproto>=1.13.2' 'libgl>=7.4' 'glproto>=1.4.9')
    conflicts=('catalyst-utils<=9.2')
    options=('!libtool')
    provides=('x-server')
    groups=('xorg')
    install=xorg-server.install
    source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
    xorg-redhat-die-ugly-pattern-die-die-die.patch
    server-1.6.patch
    hal-wait.patch
    xserver-1.6.0-xinerama-crashes.patch
    xserver-1.6.0-xinerama-cursors.patch)
    md5sums=('aafe73f5807ce8bb534727ecb72467c7'
    '1a336eb22e27cbf443ec5a2ecddfa93c'
    '064559385557ad02432a1e800b92b14e'
    'f16d2caef84e1a9c4075b6c5e145512d'
    'fdb4fb466459c32c897ee3b405b6f849'
    'a30429f7c2114e7170d62858472ec102')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    # Get rid of the ugly pattern
    patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
    # Upstream fixes from server-1.6 branch
    patch -Np1 -i "${srcdir}/server-1.6.patch" || return 1
    # Revert waiting for hal, assume hal won't show up when initial connect fails
    patch -R -Np1 -i "${srcdir}/hal-wait.patch" || return 1
    # Avoid Crashes when Xinerama is enabled
    patch -Np1 -i "${srcdir}/xserver-1.6.0-xinerama-crashes.patch" || return 1
    # Avoid Cursors problem with xinerama
    patch -Np1 -i "${srcdir}/xserver-1.6.0-xinerama-cursors.patch" || return 1
    # Fix dbus config path
    sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    libtoolize --force || return 1
    aclocal || return 1
    autoconf || return 1
    automake --add-missing || return 1
    ./configure --prefix=/usr \
    --enable-ipv6 \
    --enable-dri \
    --disable-dmx \
    --enable-xvfb \
    --enable-xnest \
    --enable-composite \
    --enable-xcsecurity \
    --enable-xorg \
    --enable-xephyr \
    --enable-glx-tls \
    --enable-kdrive \
    --enable-install-setuid \
    --enable-config-hal \
    --enable-config-dbus \
    --enable-record \
    --disable-xfbdev \
    --disable-xfake \
    --disable-xsdl \
    --disable-static \
    --sysconfdir=/etc/X11 \
    --localstatedir=/var \
    --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1 \
    --with-xkb-path=/usr/share/X11/xkb \
    --with-xkb-output=/var/lib/xkb \
    --with-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf "${pkgdir}/var/log" || return 1
    install -m755 -d "${pkgdir}/etc/X11" || return 1
    install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    # Needed for non-mesa drivers, libgl will restore it
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    For now the cursor is ok and I don't experience crashed when I hold keys.

  • I upgraded my iphone os to 4.01 and i have not been able to synce to my computer. The erros message I get says the Iphone connected is not recognised what can i do to solve this problem.

    i upgraded my iphone os to 4.01 and i have not been able to sync to my computer. The error message I get says the Iphone connected is not recognised what can i do to solve this problem.

    Did you try to connect in recovery mode? iOS: Unable to update or restore
    Also check here: iOS: Device not recognized in iTunes for Windows
    And make sure your security software is set up right: iTunes for Windows: Troubleshooting security software issues

  • AltGr key not working after upgrade to Xorg 7.3

    So, I upgraded to Xorg 7.3, and everything seemingly worked fine.
    Then I tried writing an e-mail address, and pressing AltGr+2 which should give me an (at) symbol didn't work. After fiddling about abit, I concluded that  AltGr did not work at all.
    I tried the suggested solutions in the wiki, but none worked for me. I also tried setting Option "XkvVariant "nodeadkeys", but no luck there either.
    Here's the keyboard section of my xorg.conf:
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "no"
    Option "XkbVariant" ""
    EndSection
    This worked like it should before the upgrade.
    As you may have noticed, I have a norwegian keyboard. And if it helps, it's a laptop keyboard - I have a HP nc8430.
    Pressing and releasing AltGr in xev produces this output:
    FocusIn event, serial 28, synthetic NO, window 0x2200001,
    mode NotifyUngrab, detail NotifyAncestor
    KeymapNotify event, serial 28, synthetic NO, window 0x0,
    keys: 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    I'm not entirely sure if this is relevant tough.
    Any help will be greatly appreciated.
    EDIT: I should perhaps add this:
    I'm not using a composite manager like Compiz or Beryl, and I do not have composite nor AIGLX enabled in my xorg.conf.
    I'm using the fglrx driver.
    Last edited by sunn (2007-11-07 16:28:46)

    It seems the problem has resolved itself. I did a pacman -Syu today, and although only libsamplerate was upgraded, my AltGr key functions properly again. Kind of weird, as libsamplerate seems to have something to do with audio.. But hey, it works, and I'm not complaining.

  • Upgraded to Xorg 7.0 - Where is GLXgears?

    I have just upgraded to xorg 7.0. glxgears and glxinfo are no longer present on my system. What is the package that I need to install to get them back?

    mac57 wrote:
    Thanks Snowman. I had read that it was in mesa-apps on one post, but that package doesn't seem to exist any more. I tried xorg-apps, and such a package DOES exist. I d/l'd it - that worked, but no GLXgears. Not sure WHAT I got from that package actually.
    I had read that mesa was somehow outdated and dangerous now - one of many posts I read while searching the forums for answers. Do I run the risk of breaking anything if I download and install it? These days it seems that every time I install anything new, I break a bunch of other stuff. Rolling release is great, but only if you keep up with it all the time!
    Thanks.
    This is all outdated information.
    glxinfo and glxgears were in mesa-apps but recently they were moved in the mesa package.
    The part about mesa unsafe was that before the splitted xorg 7.0,  there was a mesa package in extra that could conflict/cause problems  with the mesa drivers from xorg. This is no longer the case. That mesa package in extra has been removed and the mesa package in current is the one from xorg. There shouldn't be any problem using mesa.
    Run 'pacman -Ql xorg-apps' to see what's in xorg-apps.

  • I have upgrade my iphone 4 to ios 6 and from this moment every day my iphone go to block. it turn off and i can't turn on if i don't connect to charge connectors.. someone have the same problem? how can i solve it?

    i have upgrade my iphone 4 to ios 6 and from this moment every day my iphone go to block. it turn off and i can't turn on if i don't connect to charge connectors.. someone have the same problem? how can i solve it?

    I am experience a similar problem, my iphone 4 either turns off by itself or I am unable to answer a call. Everything just blocks. After contacting 2 different apple service spots still no answer as to how can we fix the problem. Worse, I am unable to revert back to ios 5.1.1 where everything worked just fine.

  • [SOLVED] Upgrade from twisted to python-twisted breaks deluge-gtk.

    So I just performed the following upgrades (I had to remove twisted before updating, because it would not upgrade from twisted to python-twisted directly. See the bottom of this post):
    [2014-05-21 20:21] [PACMAN] Running 'pacman -R twisted'
    [2014-05-21 20:21] [PACMAN] Running 'pacman -Rdd twisted'
    [2014-05-21 20:21] [PACMAN] removed twisted (13.2.0-1)
    [2014-05-21 20:21] [PACMAN] Running 'pacman -S python-twisted'
    [2014-05-21 20:21] [PACMAN] installed python-crypto (2.6.1-2)
    [2014-05-21 20:21] [PACMAN] installed python-zope-interface (4.1.1-1)
    [2014-05-21 20:21] [PACMAN] installed python-twisted (14.0.0-1)
    [2014-05-21 20:22] [PACMAN] Running 'pacman -Su
    [2014-05-21 20:22] [PACMAN] starting full system upgrade
    [2014-05-21 20:22] [PACMAN] upgraded ffmpeg (1:2.2.2-2 -> 1:2.2.2-3)
    [2014-05-21 20:22] [PACMAN] upgraded mesa (10.1.3-1 -> 10.1.4-1)
    [2014-05-21 20:22] [PACMAN] upgraded lib32-mesa (10.1.3-1 -> 10.1.4-1)
    [2014-05-21 20:22] [PACMAN] upgraded netctl (1.6-1 -> 1.7-1)
    [2014-05-21 20:22] [PACMAN] upgraded perl-net-ssleay (1.61-1 -> 1.63-1)
    [2014-05-21 20:22] [PACMAN] upgraded python (3.4.0-3 -> 3.4.1-1)
    [2014-05-21 20:22] [ALPM-SCRIPTLET] If you get distorted sound in skype, try adding PULSE_LATENCY_MSEC=60 to your
    [2014-05-21 20:22] [ALPM-SCRIPTLET] env before starting skype. Something like 'export PULSE_LATENCY_MSEC=60' in .bashrc, for example.
    [2014-05-21 20:22] [PACMAN] upgraded skype (4.2.0.13-3 -> 4.2.0.13-4)
    [2014-05-21 20:22] [PACMAN] upgraded xf86-input-evdev (2.8.4-1 -> 2.9.0-1)
    Now when I start deluge-gtk, I get this:
    claire ~ % deluge-gtk
    Traceback (most recent call last):
    File "/usr/bin/deluge-gtk", line 9, in <module>
    load_entry_point('deluge==1.3.6', 'gui_scripts', 'deluge-gtk')()
    File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 356, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
    File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 2431, in load_entry_point
    return ep.load()
    File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 2147, in load
    ['__name__'])
    File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/__init__.py", line 1, in <module>
    from gtkui import start
    File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/gtkui.py", line 41, in <module>
    from twisted.internet import gtk2reactor
    ImportError: No module named twisted.internet
    Downgrading back to twisted resolved the problem. Any ideas?
    ======
    In case you're wondering about my problems with twisted to python-twisted upgrade, here's the terminal output:
    claire ~ % sudo pacman -Su --ignore=chromium
    :: Starting full system upgrade...
    :: Replace twisted with extra/python2-twisted? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Packages (2):
    Name Old Version New Version Net Change
    extra/python2-twisted 14.0.0-1 36.56 MiB
    twisted 13.2.0-1 -34.62 MiB
    Total Installed Size: 36.56 MiB
    Net Upgrade Size: 1.95 MiB
    :: Proceed with installation? [Y/n] y
    (1/1) checking keys in keyring [----------------------] 100%
    (1/1) checking package integrity [----------------------] 100%
    (1/1) loading package files [----------------------] 100%
    (1/1) checking for file conflicts [----------------------] 100%
    error: failed to commit transaction (conflicting files)
    python2-twisted: /usr/lib/python2.7/site-packages/twisted/plugins/dropin.cache exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by clfarron4 (2014-05-21 21:12:56)

    olantwin wrote:
    Have you tried (re)moving the conflicting file and then upgrading twisted to python2-twisted? (see this related thread: https://bbs.archlinux.org/viewtopic.php?id=181828 )
    I just upgraded twisted after having the same conflict, and deluge-gtk does not throw any errors and seems to work fine.
    Are you using the daemon+client or just deluge-gtk?
    Hmph... So renaming the .cache file and then upgrading solved everything. As much as I don't like to do that with conflicting files, it worked.
    Marking as [SOLVED].
    Last edited by clfarron4 (2014-05-21 21:13:27)

  • [solved]qt4.8.3 crashing kwin and plasma

    Hello anyone can confirm the problem ? I checked also second revision and still the same.
    Last edited by Hector (2012-09-23 10:46:09)

    I can !
    update to qt 4.8.3-2 crash kwin and plasma

Maybe you are looking for

  • Image Size when bringing pix into Photoshop from a Camera

    I'm using Photoshop CS2 on XP Media Center Edition. I cannot, for the life of me, find out how set the default dpi of images being brought into Photoshop. At the moment I'm using an Action but that's pretty time intensive when I have to bring in more

  • Solaris 2.6 to Solaris 8

    Hi, we have deliver a Motif 1.2 application to a customer a few years ago. This application is currently running under Solaris 2.6 on IBM PC computer (Pentium II), is built using X11R6 and is using MWM. Now this customer is replacing the old computer

  • Authority Check in WebScenario

    Hello. Does anybody know how to check HR authority for a user not equal to sy-uname? Thank you Edited by: Thomas Klingenburg on Aug 25, 2010 9:09 AM

  • Album mixing in with another album

    downloaded an album and it has mixed in with another one. eg track 1 from one then track 1 from the second track 2 from the 1st then track 2 from the 2nd and so on. So 2 albums have merged into 1 on itunes then transferred onto my ipod as 1 album?

  • Cant sign into Mac app store

    Hi I came to use my mac book pro today to download the pages app, but it will not let me sign into the mac app store, I keep getting the message "an unknown error has occured" i've reset my password, and been able to log into this forum, iTunes and i