You are not logged in.

#1 2016-01-19 06:04:15

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Problems installing AMD catalyst drivers

I've installed arch linux with LVM and encryption, and I am now attempting to install proprietary drivers for my GPU. I am encountering many issues, however.

The first thing I did was edit /etc/pacman.conf to include the catalyst unofficial user repository by Vi0L0 and the xorg117 repository to downgrade xorg. I also installed linux-lts and configured systemd-boot to use it. Here are the contents of my /etc/pacman.conf

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
#GPGDir      = /etc/pacman.d/gnupg/
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/curl -C - -f %u > %o
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
#UseDelta    = 0.7
Architecture = auto

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options
#UseSyslog
#Color
#TotalDownload
CheckSpace
#VerbosePkgLists

# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel    = Required DatabaseOptional
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required

# NOTE: You must run `pacman-key --init` before first using pacman; the local
# keyring can then be populated with the keys of all official Arch Linux
# packagers with `pacman-key --populate archlinux`.

#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#

# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

[xorg117]
Server = http://catalyst.wirephire.com/repo/xorg117/$arch
# Mirror
#Server = http://mirror.hactar.bz/Vi0L0/xorg117/$arch

#[testing]
#Include = /etc/pacman.d/mirrorlist

[core]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

#[community-testing]
#Include = /etc/pacman.d/mirrorlist

[community]
Include = /etc/pacman.d/mirrorlist

# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist

[multilib]
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs

# Catalyst unofficial user repository for proprietary AMD drivers
[catalyst]
Server= http://catalyst.wirephire.com/repo/catalyst/$arch
# Mirror
#Server = http://mirror.hactar.bz/Vi0L0/catalyst/$arch

The next thing I did was install catalyst with

sudo pacman -S catalyst

it gave me a choice between catalyst-hook and catalyst-generator, I chose the former. I also installed gnome, xorg-xinit, and xterm after this.

after this I configured the drivers for basic dual monitor use with

aticonfig --initial=dual-head

Here are the contents of the generated /etc/X11/xorg.conf

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Screen         "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-1"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-1"
	Device     "aticonfig-Device[0]-1"
	Monitor    "aticonfig-Monitor[0]-1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

after this I rebooted to load the kernel modues into memory and ran

startx

to manually start the x server. I ran this command as a regular user, not root

I got several errors after this about an x-server already running. I ran

lsmod | grep xorg

which returned nothing.

I checked to see if xorg was installed with yaourt and I saw that xorg 1.17 and xorg 1.18 were both installed at the same time, presumably causing the issue. I don't know how this happened or how to fix it. I couldn't get xorg to uninstall because so many programs depend on it. I couldn't get the output of yaourt into a file so I took a picture of the results that led me to this conclusion.
http://i.imgur.com/MzIFwtl.jpg
You can see here that xorg-server 1.17 is installed from the xorg117 repository and xorg-server 1.18 is installed via the extra repository

Some of the other issues I've encountered:

-When I run startx as root I get a bunch of lines across on my screen. The graphical environment starts and it obviously doesn't work but doesn't return explicit errors that I see when I run xorg as a regular user

-When I enable gdm.service with systemd and boot up or run 'systemctl start gdm.service' I get nothing but an underscore in the upper-left corner of my screen.

-I've also gotten this error message when I run startx

/usr/lib/xorg/modules/drivers/fglrx_drv.so: undefined symbol

which is also an indicator of an unsupported xorg version according to the AMD Catalyst wiki page.

Moderator edit:  Converted image tags for over sized image to url tags
https://wiki.archlinux.org/index.php/Fo … s_and_code

Last edited by ewaller (2016-01-19 15:18:59)

Offline

#2 2016-01-19 10:46:47

Docbroke
Member
From: India
Registered: 2015-06-13
Posts: 1,433

Re: Problems installing AMD catalyst drivers

Messed up system!
My guess is xorg 1.18 might have been pulled in as dependency for gnome or something else that you might have installed before. You probably will need to downgrade few other softwares also.
Have you tried running your system without proprietary drivers. I believe that latest linux kernel has improved support for AMD, you may be saved from mess. BTW post your AMD GPU details also.

Offline

#3 2016-01-19 11:51:26

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: Problems installing AMD catalyst drivers

Moving to "Pacman & Package Upgrade Issues".

Offline

#4 2016-01-19 15:22:04

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: Problems installing AMD catalyst drivers

Is your system up to date?  I note that you used -S when you installed catalyst.  You should only do that if you know exactly what you are doing and understand the consequences.
Try doing a pacman -Syu just to be sure.  I recommend pacman -Syu packageName whenever you want to install something.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#5 2016-01-19 15:24:36

clfarron4
Member
From: London, UK
Registered: 2013-06-28
Posts: 2,163
Website

Re: Problems installing AMD catalyst drivers

I would use catalyst-hook instead of catalyst because catalyst-hook provides a .service file which will build all the fglrx modules for the installed kernels, where the catalyst package is installed against a particular version of the kernel.


Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository

Offline

#6 2016-01-20 01:28:39

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

ewaller wrote:

Is your system up to date?  I note that you used -S when you installed catalyst.  You should only do that if you know exactly what you are doing and understand the consequences.
Try doing a pacman -Syu just to be sure.  I recommend pacman -Syu packageName whenever you want to install something.

My system is up to date. I did a clean install the day I created the thread and I've run

sudo pacman -Syu

a few times after modifying /etc/pacman.conf in order to synchronize the repositories. As for your other comment, however, I did not know it was advised to run the y and u options when installing packages. I was under the impression that those options were only to be used when explicitly updating the system. I'll get into the practice of using those options when installing software.

clfarron4 wrote:

I would use catalyst-hook instead of catalyst because catalyst-hook provides a .service file which will build all the fglrx modules for the installed kernels, where the catalyst package is installed against a particular version of the kernel.

I did end up installing catalyst-hook instead of catalyst given that catalyst doesn't seem to actually be a package. When I attempted to just install catalyst, it gave me a choice between catalyst-generator and catalyst-hook. I chose catalyst-hook because the wiki said it automatically kept your drivers up to date whereas catalyst-generator was a manual sort of deal.

Docbroke wrote:

Messed up system!
My guess is xorg 1.18 might have been pulled in as dependency for gnome or something else that you might have installed before. You probably will need to downgrade few other softwares also.
Have you tried running your system without proprietary drivers. I believe that latest linux kernel has improved support for AMD, you may be saved from mess. BTW post your AMD GPU details also.

I would use the latest kernel if I could given that information, but the catalyst drivers for arch linux require a downstream kernel and a downgraded xorg because they're slow to update things. My GPU is a Radeon R9 290. Pretty recent so I assumed it would be current enough to not require legacy software, however, I didn't explicitly check for compatibility.

Your other comment, however, is probably the root of the problem. In my attempts to get a clean slate I went through the steps listed below.

I removed gnome, gnome-extra, xorg-xinit, and xterm with

sudo pacman -Rnsd gnome gnome-extra xorg-xinit xterm

and xorg-server 1.18 from the extra repository was still installed. These were the only major packages I installed after the barebones system.

I also tried removing xorg and the catalyst drivers manually given that most of the apps that require xorg were gone now with

sudo pacman -Rnsd xorg-server-xwayland mesa-libgl mesa catalyst-hook catalyst-utils
sudo pacman -Rnsd xorg

Those three commands ended up removing about 600 packages and I was able to get xorg completely uninstalled as

yaourt xorg | grep installed

returned nothing. At this point I rebooted for good measure

After rebooting and logging in as root I used yaourt to install xorg-server with catalyst-libgl in order to make sure that it was coming from the xorg117 repository and not the extra repository.

I was not, however, able to find a xorg-xinit package within the xorg117 repository and was unable to manually start xorg in order to test it. So I had to install gnome and hope nothing went wrong. I ran

sudo pacman -Syu gnome

and saw no mention of any derivative of xorg in the members list of the group so I installed gnome (without gnome-extra.) I also used libx256 instead of libx256-10bit. I went on and found no mention of xorg in the packages list either (363 packages) except xorg-xwayland, which was 1.17. So I went ahead and installed the packages. After this I ran

aticonfig --initial=dual-head

and rebooted and initiated gdm with

systemctl start gdm.service

which gives me nothing but a single underscore in the upper-right corner of my screen like before.

I checked to see if xorg was having two versions installed simultaneously again and

yaourt xorg | grep installed

returned results similar to the picture I posted previously. However, I noticed that the line that says xorg-server from the extra repository is installed reads

extra/xorg-server 1.18.0-4 (xorg) [installed: 1.17.4-2]

which I would assume to mean that xorg 1.17 is actually installed even though it misleadingly says xorg-server 1.18 is installed.

At this point I installed xorg-xinit to see if the problem was with gnome or xorg. I didn't see any mentiono f any xorg-server packages in the dependencies so I went ahead and installed xorg-xinit with yaourt. After running

startx]

I get nothing but a blank black screen.

I wasn't able to find a log for xorg or gdm but here are the contents of my xorg.conf file

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Screen         "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-1"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-1"
	Device     "aticonfig-Device[0]-1"
	Monitor    "aticonfig-Monitor[0]-1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Any help on how to proceed is appreciated.

Last edited by Phrost5019 (2016-01-20 01:29:46)

Offline

#7 2016-01-20 12:29:59

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,866

Re: Problems installing AMD catalyst drivers

First :
Please reread the catalyst wiki page, It will clarify that you need to install more then just catalyst package.

2nd :
If you're using Vi0L0's repositories , you don't need yaourt for catalyst.

3rd :
check the Xorg page on the wiki, it will help you to figure out where to find xorg log-files .

4th :

installed xorg-xinit with yaourt

IF you want to use yaourt ,  PLEASE use it for AUR packages only.

5th
please post lspci -k and uname -a

Last edited by Lone_Wolf (2016-01-20 12:30:21)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#8 2016-01-22 04:06:11

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

Lone_Wolf wrote:

First :
Please reread the catalyst wiki page, It will clarify that you need to install more then just catalyst package.

2nd :
If you're using Vi0L0's repositories , you don't need yaourt for catalyst.

3rd :
check the Xorg page on the wiki, it will help you to figure out where to find xorg log-files .

4th :

installed xorg-xinit with yaourt

IF you want to use yaourt ,  PLEASE use it for AUR packages only.

5th
please post lspci -k and uname -a

To my understanding all you need to install from Vi0L0's repository is catalyst_hook, catalyst_utils, and catalyst_libgl, do you need more packages?

lspci -k

00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: hsw_uncore
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci
00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: mei_me
	Kernel modules: mei_me
00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device d921
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.2 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d0)
00:1c.3 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 4 (rev d0)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.4 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 5 (rev d0)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family Z97 LPC Controller
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich
00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode]
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: ahci
	Kernel modules: ahci
00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel modules: i2c_i801
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Hawaii PRO [Radeon R9 290]
	Subsystem: XFX Pine Group Inc. Device 9295
	Kernel modules: radeon
01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device aac8
	Subsystem: XFX Pine Group Inc. Device aac8
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
03:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 03)
	Kernel modules: shpchp
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: r8169
	Kernel modules: r8169
06:00.0 USB controller: ASMedia Technology Inc. ASM1042A USB 3.0 Host Controller
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7921
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

uname -a

Linux <hostname> 4.1.15-1-lts #1 SMP Tue Dec 15 20:54:13 CET 2015 x86_64 GNU/Linux

I re-read the AMD Catalyst wiki page as you suggested and disabled kernel mode setting as well as blacklisted the radeon module by adding a file in /etc/modprobe.d/ named 'modprobe.conf' that contained only the line 'blacklist radeon.' I then reinstalled catalyst_hook and ran 'aticonfig --initial=dual-head' and then rebooted and fglrx seemed to be running as 'lsmod | grep fglrx' returned a few processes. At this point I ran 'startx' and although x-server did not start, it gave me this log

[    61.812] 
X.Org X Server 1.17.4
Release Date: 2015-10-28
[    61.812] X Protocol Version 11, Revision 0
[    61.812] Build Operating System: Linux 4.2.5-1-ARCH x86_64 
[    61.812] Current Operating System: Linux saturn 4.1.15-1-lts #1 SMP Tue Dec 15 20:54:13 CET 2015 x86_64
[    61.812] Kernel command line: initrd=\initramfs-linux-lts.img cryptdevice=UUID=d819538c-34a4-45a9-a202-0df31bc7b3c5:root root=/dev/mapper/root quiet rw nomodeset
[    61.812] Build Date: 01 November 2015  10:36:50AM
[    61.812]  
[    61.812] Current version of pixman: 0.32.8
[    61.812] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    61.812] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    61.812] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jan 21 20:56:14 2016
[    61.813] (==) Using config file: "/etc/X11/xorg.conf"
[    61.813] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    61.814] (==) ServerLayout "aticonfig Layout"
[    61.814] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[    61.814] (**) |   |-->Monitor "aticonfig-Monitor[0]-0"
[    61.814] (**) |   |-->Device "aticonfig-Device[0]-0"
[    61.814] (**) |-->Screen "aticonfig-Screen[0]-1" (1)
[    61.814] (**) |   |-->Monitor "aticonfig-Monitor[0]-1"
[    61.814] (**) |   |-->Device "aticonfig-Device[0]-1"
[    61.814] (==) Automatically adding devices
[    61.814] (==) Automatically enabling devices
[    61.814] (==) Automatically adding GPU devices
[    61.818] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    61.818] 	Entry deleted from font path.
[    61.818] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    61.818] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    61.818] 	Entry deleted from font path.
[    61.818] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[    61.818] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[    61.818] (==) ModulePath set to "/usr/lib/xorg/modules"
[    61.818] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    61.818] (II) Loader magic: 0x817d60
[    61.818] (II) Module ABI versions:
[    61.818] 	X.Org ANSI C Emulation: 0.4
[    61.818] 	X.Org Video Driver: 19.0
[    61.818] 	X.Org XInput driver : 21.1
[    61.818] 	X.Org Server Extension : 9.0
[    61.819] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[    61.820] (--) PCI:*(0:1:0:0) 1002:67b1:1682:9295 rev 0, Mem @ 0xe0000000/268435456, 0xf0000000/8388608, 0xf7e00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[    61.820] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    61.820] (II) "glx" will be loaded by default.
[    61.820] (II) LoadModule: "glx"
[    61.821] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    61.823] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[    61.823] 	compiled for 6.9.0, module version = 1.0.0
[    61.824] (II) LoadModule: "fglrx"
[    61.824] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
[    61.872] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[    61.872] 	compiled for 1.4.99.906, module version = 15.30.3
[    61.872] 	Module class: X.Org Video Driver
[    61.873] (II) Loading sub module "fglrxdrm"
[    61.873] (II) LoadModule: "fglrxdrm"
[    61.873] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[    61.874] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    61.874] 	compiled for 1.4.99.906, module version = 15.30.3
[    61.874] (II) AMD Proprietary Linux Driver Version Identifier:15.30.3
[    61.874] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-15.302                   
[    61.874] (II) AMD Proprietary Linux Driver Build Date: Dec 17 2015 02:43:16
[    61.874] (++) using VT number 1

[    61.874] (--) controlling tty is VT number 1, auto-enabling KeepTty
[    61.874] (WW) Falling back to old probe method for fglrx
[    61.890] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[    61.892] ukiDynamicMajor: found major device number 248
[    61.892] ukiDynamicMajor: found major device number 248
[    61.892] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    61.892] ukiOpenDevice: node name is /dev/ati/card0
[    61.892] ukiOpenDevice: open result is 10, (OK)
[    62.319] ukiOpenByBusid: ukiOpenMinor returns 10
[    62.319] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    62.320] ukiDynamicMajor: found major device number 248
[    62.320] ukiDynamicMajor: found major device number 248
[    62.320] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    62.320] ukiOpenDevice: node name is /dev/ati/card0
[    62.320] ukiOpenDevice: open result is 10, (OK)
[    62.320] ukiOpenByBusid: ukiOpenMinor returns 10
[    62.320] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    62.323] (--) Chipset Supported AMD Graphics Processor (0x67B1) found
[    62.323] (--) Chipset Supported AMD Graphics Processor (0x67B1) found
[    62.323] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
[    62.324] (II) fglrx(0): pEnt->device->identifier=0x1da6fd0
[    62.324] (II) fglrx(1): pEnt->device->identifier=0x1da6fd0
[    62.324] (II) fglrx(0): === [xdl_xs117_atiddxPreInit] === begin
[    62.324] (II) fglrx(0): FB driver is enabled
[    62.324] (II) Loading sub module "vgahw"
[    62.324] (II) LoadModule: "vgahw"
[    62.324] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[    62.325] (II) Module vgahw: vendor="X.Org Foundation"
[    62.325] 	compiled for 1.17.4, module version = 0.1.0
[    62.325] 	ABI class: X.Org Video Driver, version 19.0
[    62.325] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[    62.325] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    62.325] (==) fglrx(0): Default visual is TrueColor
[    62.325] (**) fglrx(0): Option "DPMS" "true"
[    62.325] (==) fglrx(0): RGB weight 888
[    62.325] (II) fglrx(0): Using 8 bits per RGB 
[    62.325] (==) fglrx(0): Buffer Tiling is ON
[    62.325] (II) Loading sub module "fglrxdrm"
[    62.325] (II) LoadModule: "fglrxdrm"
[    62.325] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[    62.325] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    62.325] 	compiled for 1.4.99.906, module version = 15.30.3
[    62.326] ukiDynamicMajor: found major device number 248
[    62.326] ukiDynamicMajor: found major device number 248
[    62.326] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    62.326] ukiOpenDevice: node name is /dev/ati/card0
[    62.326] ukiOpenDevice: open result is 12, (OK)
[    62.326] ukiOpenByBusid: ukiOpenMinor returns 12
[    62.326] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    62.326] (**) fglrx(0): NoAccel = NO
[    62.326] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[    62.326] (--) fglrx(0): Chipset: "AMD Radeon R9 200 Series" (Chipset = 0x67b1)
[    62.326] (--) fglrx(0): (PciSubVendor = 0x1682, PciSubDevice = 0x9295)
[    62.326] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[    62.326] (--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
[    62.326] (--) fglrx(0): MMIO registers at 0xf7e00000
[    62.326] (--) fglrx(0): I/O port at 0x0000e000
[    62.326] (==) fglrx(0): ROM-BIOS at 0x000c0000
[    62.327] (II) fglrx(0): AC Adapter is used
[    62.327] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[    62.327] (--) fglrx(0): Video RAM: 4194304 kByte, Type: GDDR5
[    62.327] (II) fglrx(0): PCIE card detected
[    62.327] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[    62.327] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[    62.327] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x100000000)
[    62.327] (II) fglrx(0): RandR 1.2 support is enabled!
[    62.327] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[    62.327] (II) Loading sub module "fb"
[    62.327] (II) LoadModule: "fb"
[    62.327] (II) Loading /usr/lib/xorg/modules/libfb.so
[    62.328] (II) Module fb: vendor="X.Org Foundation"
[    62.328] 	compiled for 1.17.4, module version = 1.0.0
[    62.328] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    62.328] (II) fglrx(0): EDID Management option: EDID Management is enabled
[    62.328] (II) Loading sub module "ddc"
[    62.328] (II) LoadModule: "ddc"
[    62.328] (II) Module "ddc" already built-in
[    62.552] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
[    62.552] (II) fglrx(0): Output DFP2 has no monitor section
[    62.552] (II) fglrx(0): Output DFP3 has no monitor section
[    62.552] (II) fglrx(0): Output DFP4 has no monitor section
[    62.552] (II) fglrx(0): Output DFP5 has no monitor section
[    62.552] (II) fglrx(0): Output DFP6 has no monitor section
[    62.552] (II) fglrx(0): Output DFP7 has no monitor section
[    62.552] (II) Loading sub module "ddc"
[    62.552] (II) LoadModule: "ddc"
[    62.552] (II) Module "ddc" already built-in
[    62.552] (II) fglrx(0): Connected Display0: DFP6
[    62.552] (II) fglrx(0): Display0 EDID data ---------------------------
[    62.552] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    62.552] (II) fglrx(0): Year: 2014  Week: 29
[    62.552] (II) fglrx(0): EDID Version: 1.3
[    62.552] (II) fglrx(0): Digital Display Input
[    62.552] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    62.552] (II) fglrx(0): Gamma: 2.20
[    62.552] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    62.552] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    62.552] (II) fglrx(0): First detailed timing is preferred mode
[    62.552] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    62.552] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    62.552] (II) fglrx(0): Supported established timings:
[    62.552] (II) fglrx(0): 720x400@70Hz
[    62.552] (II) fglrx(0): 640x480@60Hz
[    62.552] (II) fglrx(0): 640x480@67Hz
[    62.552] (II) fglrx(0): 640x480@72Hz
[    62.552] (II) fglrx(0): 640x480@75Hz
[    62.552] (II) fglrx(0): 800x600@56Hz
[    62.552] (II) fglrx(0): 800x600@60Hz
[    62.552] (II) fglrx(0): 800x600@72Hz
[    62.552] (II) fglrx(0): 800x600@75Hz
[    62.552] (II) fglrx(0): 832x624@75Hz
[    62.552] (II) fglrx(0): 1024x768@60Hz
[    62.552] (II) fglrx(0): 1024x768@70Hz
[    62.552] (II) fglrx(0): 1024x768@75Hz
[    62.552] (II) fglrx(0): 1280x1024@75Hz
[    62.552] (II) fglrx(0): Manufacturer's mask: 0
[    62.552] (II) fglrx(0): Supported standard timings:
[    62.552] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    62.552] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    62.552] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    62.552] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    62.552] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    62.552] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    62.552] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.552] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    62.552] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    62.552] (II) fglrx(0): Monitor name: VE248
[    62.552] (II) fglrx(0): Serial No: E7LMQS081842
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    62.552] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    62.552] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    62.552] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    62.552] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.552] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    62.552] (II) fglrx(0): Number of EDID sections to follow: 1
[    62.552] (II) fglrx(0): EDID (in hex):
[    62.552] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    62.552] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    62.552] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    62.552] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    62.552] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    62.552] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    62.552] (II) fglrx(0): 	453234380a20202020202020000000ff
[    62.552] (II) fglrx(0): 	0045374c4d51533038313834320a01ac
[    62.552] (II) fglrx(0): End of Display0 EDID data --------------------
[    62.552] (II) fglrx(0): Connected Display1: DFP7
[    62.552] (II) fglrx(0): Display1 EDID data ---------------------------
[    62.552] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    62.552] (II) fglrx(0): Year: 2014  Week: 29
[    62.552] (II) fglrx(0): EDID Version: 1.3
[    62.552] (II) fglrx(0): Digital Display Input
[    62.552] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    62.552] (II) fglrx(0): Gamma: 2.20
[    62.552] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    62.552] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    62.552] (II) fglrx(0): First detailed timing is preferred mode
[    62.552] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    62.552] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    62.552] (II) fglrx(0): Supported established timings:
[    62.552] (II) fglrx(0): 720x400@70Hz
[    62.552] (II) fglrx(0): 640x480@60Hz
[    62.552] (II) fglrx(0): 640x480@67Hz
[    62.552] (II) fglrx(0): 640x480@72Hz
[    62.552] (II) fglrx(0): 640x480@75Hz
[    62.552] (II) fglrx(0): 800x600@56Hz
[    62.552] (II) fglrx(0): 800x600@60Hz
[    62.552] (II) fglrx(0): 800x600@72Hz
[    62.552] (II) fglrx(0): 800x600@75Hz
[    62.552] (II) fglrx(0): 832x624@75Hz
[    62.552] (II) fglrx(0): 1024x768@60Hz
[    62.552] (II) fglrx(0): 1024x768@70Hz
[    62.552] (II) fglrx(0): 1024x768@75Hz
[    62.552] (II) fglrx(0): 1280x1024@75Hz
[    62.552] (II) fglrx(0): Manufacturer's mask: 0
[    62.552] (II) fglrx(0): Supported standard timings:
[    62.552] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    62.552] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    62.552] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    62.552] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    62.552] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    62.552] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    62.552] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.552] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    62.552] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    62.552] (II) fglrx(0): Monitor name: VE248
[    62.552] (II) fglrx(0): Serial No: E7LMQS082569
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    62.552] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    62.552] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    62.552] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    62.552] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    62.552] (II) fglrx(0): Supported detailed timing:
[    62.552] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.552] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.552] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    62.552] (II) fglrx(0): Number of EDID sections to follow: 1
[    62.553] (II) fglrx(0): EDID (in hex):
[    62.553] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    62.553] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    62.553] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    62.553] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    62.553] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    62.553] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    62.553] (II) fglrx(0): 	453234380a20202020202020000000ff
[    62.553] (II) fglrx(0): 	0045374c4d51533038323536390a01a5
[    62.553] (II) fglrx(0): End of Display1 EDID data --------------------
[    62.553] (WW) fglrx(0): Dynamic Surface Resizing cannot be enabled
[    62.553] (II) fglrx(0): EDID for output DFP1
[    62.553] (II) fglrx(0): EDID for output DFP2
[    62.553] (II) fglrx(0): EDID for output DFP3
[    62.553] (II) fglrx(0): EDID for output DFP4
[    62.553] (II) fglrx(0): EDID for output DFP5
[    62.553] (II) fglrx(0): EDID for output DFP6
[    62.553] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    62.553] (II) fglrx(0): Year: 2014  Week: 29
[    62.553] (II) fglrx(0): EDID Version: 1.3
[    62.553] (II) fglrx(0): Digital Display Input
[    62.553] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    62.553] (II) fglrx(0): Gamma: 2.20
[    62.553] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    62.553] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    62.553] (II) fglrx(0): First detailed timing is preferred mode
[    62.553] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    62.553] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    62.553] (II) fglrx(0): Supported established timings:
[    62.553] (II) fglrx(0): 720x400@70Hz
[    62.553] (II) fglrx(0): 640x480@60Hz
[    62.553] (II) fglrx(0): 640x480@67Hz
[    62.553] (II) fglrx(0): 640x480@72Hz
[    62.553] (II) fglrx(0): 640x480@75Hz
[    62.553] (II) fglrx(0): 800x600@56Hz
[    62.553] (II) fglrx(0): 800x600@60Hz
[    62.553] (II) fglrx(0): 800x600@72Hz
[    62.553] (II) fglrx(0): 800x600@75Hz
[    62.553] (II) fglrx(0): 832x624@75Hz
[    62.553] (II) fglrx(0): 1024x768@60Hz
[    62.553] (II) fglrx(0): 1024x768@70Hz
[    62.553] (II) fglrx(0): 1024x768@75Hz
[    62.553] (II) fglrx(0): 1280x1024@75Hz
[    62.553] (II) fglrx(0): Manufacturer's mask: 0
[    62.553] (II) fglrx(0): Supported standard timings:
[    62.553] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    62.553] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    62.553] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    62.553] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    62.553] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    62.553] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    62.553] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.553] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    62.553] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    62.553] (II) fglrx(0): Monitor name: VE248
[    62.553] (II) fglrx(0): Serial No: E7LMQS081842
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    62.553] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    62.553] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    62.553] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    62.553] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    62.553] (II) fglrx(0): Supported detailed timing:
[    62.553] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.553] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.553] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    62.553] (II) fglrx(0): Number of EDID sections to follow: 1
[    62.553] (II) fglrx(0): EDID (in hex):
[    62.553] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    62.553] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    62.553] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    62.553] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    62.553] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    62.553] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    62.553] (II) fglrx(0): 	453234380a20202020202020000000ff
[    62.553] (II) fglrx(0): 	0045374c4d51533038313834320a01ac
[    62.554] (II) fglrx(0): Printing probed modes for output DFP6
[    62.554] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    62.554] (II) fglrx(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    62.554] (II) fglrx(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    62.554] (II) fglrx(0): Modeline "1920x1080"x50.0   74.25  1920 2448 2492 2640  1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
[    62.554] (II) fglrx(0): Modeline "1920x1080"x60.0   74.25  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
[    62.554] (II) fglrx(0): Modeline "1920x1080"x59.9   74.18  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
[    62.554] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1776x1000"x50.0  148.50  1776 2304 2348 2640  1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
[    62.554] (II) fglrx(0): Modeline "1776x1000"x59.9  148.35  1776 1864 1908 2200  1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
[    62.554] (II) fglrx(0): Modeline "1776x1000"x50.0   74.25  1776 2304 2348 2640  1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
[    62.554] (II) fglrx(0): Modeline "1776x1000"x59.9   74.18  1776 1864 1908 2200  1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
[    62.554] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    62.554] (II) fglrx(0): Modeline "1400x1050"x60.0  162.00  1400 1664 1856 2160  1050 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1600x900"x60.0  162.00  1600 1664 1856 2160  900 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1360x1024"x60.0  162.00  1360 1664 1856 2160  1024 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1366x768"x60.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    62.554] (II) fglrx(0): Modeline "1360x768"x60.0   85.50  1360 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x800"x60.0  108.00  1280 1376 1488 1800  800 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1152x864"x59.9  148.35  1152 2008 2052 2200  864 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    62.554] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    62.554] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    62.554] (II) fglrx(0): Modeline "1152x648"x50.0   74.25  1152 1592 1632 1980  648 653 658 750 +hsync +vsync (37.5 kHz ez)
[    62.554] (II) fglrx(0): Modeline "1152x648"x59.9   74.18  1152 1262 1302 1650  648 653 658 750 +hsync +vsync (45.0 kHz ez)
[    62.554] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    62.554] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    62.554] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    62.554] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    62.554] (II) fglrx(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz e)
[    62.554] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "640x480"x67.0   26.75  640 656 720 800  480 483 487 502 -hsync +vsync (33.4 kHz e)
[    62.554] (II) fglrx(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    62.554] (II) fglrx(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    62.554] (II) fglrx(0): EDID for output DFP7
[    62.554] (II) fglrx(0): Output DFP1 disconnected
[    62.554] (II) fglrx(0): Output DFP2 disconnected
[    62.554] (II) fglrx(0): Output DFP3 disconnected
[    62.554] (II) fglrx(0): Output DFP4 disconnected
[    62.554] (II) fglrx(0): Output DFP5 disconnected
[    62.554] (II) fglrx(0): Output DFP6 connected
[    62.554] (II) fglrx(0): Output DFP7 disconnected
[    62.554] (II) fglrx(0): Using exact sizes for initial modes
[    62.554] (II) fglrx(0): Output DFP6 using initial mode 1920x1080
[    62.554] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    62.554] (II) fglrx(0): DPI set to (96, 96)
[    62.554] (II) fglrx(0): Eyefinity capable adapter detected.
[    62.554] (II) fglrx(0): Adapter AMD Radeon R9 200 Series has 6 configurable heads and 2 displays connected.
[    62.554] (==) fglrx(0):  PseudoColor visuals disabled
[    62.554] (II) Loading sub module "ramdac"
[    62.554] (II) LoadModule: "ramdac"
[    62.554] (II) Module "ramdac" already built-in
[    62.554] (==) fglrx(0): NoDRI = NO
[    62.554] (==) fglrx(0): Capabilities: 0x00000000
[    62.554] (==) fglrx(0): CapabilitiesEx: 0x00000000
[    62.554] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[    62.554] (==) fglrx(0): UseFastTLS=0
[    62.554] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[    62.555] (II) fglrx(1): === [xdl_xs117_atiddxPreInit] === begin
[    62.555] (II) fglrx(1): FB driver is enabled
[    62.555] (II) Loading sub module "vgahw"
[    62.555] (II) LoadModule: "vgahw"
[    62.555] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[    62.555] (II) Module vgahw: vendor="X.Org Foundation"
[    62.555] 	compiled for 1.17.4, module version = 0.1.0
[    62.555] 	ABI class: X.Org Video Driver, version 19.0
[    62.555] (**) fglrx(1): Depth 24, (--) framebuffer bpp 32
[    62.555] (II) fglrx(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    62.555] (==) fglrx(1): Default visual is TrueColor
[    62.555] (==) fglrx(1): RGB weight 888
[    62.555] (II) fglrx(1): Using 8 bits per RGB 
[    62.555] (==) fglrx(1): Buffer Tiling is ON (copy from primary)
[    62.555] (==) fglrx(1): NoAccel = NO (copy from primary screen)
[    62.555] (**) fglrx(1): AMD 2D Acceleration Architecture enabled
[    62.555] (II) Loading sub module "fb"
[    62.555] (II) LoadModule: "fb"
[    62.555] (II) Loading /usr/lib/xorg/modules/libfb.so
[    62.555] (II) Module fb: vendor="X.Org Foundation"
[    62.555] 	compiled for 1.17.4, module version = 1.0.0
[    62.555] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    62.555] (II) fglrx(0): EDID Management option: EDID Management is enabled
[    62.555] (II) Loading sub module "ddc"
[    62.555] (II) LoadModule: "ddc"
[    62.555] (II) Module "ddc" already built-in
[    62.555] (II) fglrx(1): Output DFP1 using monitor section aticonfig-Monitor[0]-1
[    62.555] (II) fglrx(1): Output DFP2 has no monitor section
[    62.555] (II) fglrx(1): Output DFP3 has no monitor section
[    62.555] (II) fglrx(1): Output DFP4 has no monitor section
[    62.555] (II) fglrx(1): Output DFP5 has no monitor section
[    62.555] (II) fglrx(1): Output DFP6 has no monitor section
[    62.555] (II) fglrx(1): Output DFP7 has no monitor section
[    62.555] (WW) fglrx(0): Dynamic Surface Resizing cannot be enabled
[    62.555] (II) fglrx(1): EDID for output DFP1
[    62.555] (II) fglrx(1): EDID for output DFP2
[    62.555] (II) fglrx(1): EDID for output DFP3
[    62.555] (II) fglrx(1): EDID for output DFP4
[    62.555] (II) fglrx(1): EDID for output DFP5
[    62.555] (II) fglrx(1): EDID for output DFP6
[    62.555] (II) fglrx(1): EDID for output DFP7
[    62.555] (II) fglrx(1): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    62.555] (II) fglrx(1): Year: 2014  Week: 29
[    62.555] (II) fglrx(1): EDID Version: 1.3
[    62.555] (II) fglrx(1): Digital Display Input
[    62.555] (II) fglrx(1): Max Image Size [cm]: horiz.: 53  vert.: 30
[    62.555] (II) fglrx(1): Gamma: 2.20
[    62.555] (II) fglrx(1): DPMS capabilities: StandBy Suspend Off
[    62.555] (II) fglrx(1): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    62.555] (II) fglrx(1): First detailed timing is preferred mode
[    62.555] (II) fglrx(1): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    62.555] (II) fglrx(1): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    62.555] (II) fglrx(1): Supported established timings:
[    62.555] (II) fglrx(1): 720x400@70Hz
[    62.555] (II) fglrx(1): 640x480@60Hz
[    62.555] (II) fglrx(1): 640x480@67Hz
[    62.555] (II) fglrx(1): 640x480@72Hz
[    62.555] (II) fglrx(1): 640x480@75Hz
[    62.555] (II) fglrx(1): 800x600@56Hz
[    62.555] (II) fglrx(1): 800x600@60Hz
[    62.555] (II) fglrx(1): 800x600@72Hz
[    62.555] (II) fglrx(1): 800x600@75Hz
[    62.555] (II) fglrx(1): 832x624@75Hz
[    62.555] (II) fglrx(1): 1024x768@60Hz
[    62.555] (II) fglrx(1): 1024x768@70Hz
[    62.555] (II) fglrx(1): 1024x768@75Hz
[    62.555] (II) fglrx(1): 1280x1024@75Hz
[    62.555] (II) fglrx(1): Manufacturer's mask: 0
[    62.555] (II) fglrx(1): Supported standard timings:
[    62.555] (II) fglrx(1): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    62.555] (II) fglrx(1): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    62.555] (II) fglrx(1): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    62.555] (II) fglrx(1): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    62.555] (II) fglrx(1): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    62.555] (II) fglrx(1): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    62.555] (II) fglrx(1): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.555] (II) fglrx(1): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    62.555] (II) fglrx(1): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    62.555] (II) fglrx(1): Monitor name: VE248
[    62.555] (II) fglrx(1): Serial No: E7LMQS082569
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    62.555] (II) fglrx(1): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    62.555] (II) fglrx(1): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    62.555] (II) fglrx(1): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    62.555] (II) fglrx(1): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    62.555] (II) fglrx(1): Supported detailed timing:
[    62.555] (II) fglrx(1): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    62.555] (II) fglrx(1): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    62.555] (II) fglrx(1): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    62.555] (II) fglrx(1): Number of EDID sections to follow: 1
[    62.555] (II) fglrx(1): EDID (in hex):
[    62.555] (II) fglrx(1): 	00ffffffffffff000469942401010101
[    62.555] (II) fglrx(1): 	1d18010380351e78ea9265a655559f28
[    62.555] (II) fglrx(1): 	0d5054bfef00714f818081409500a940
[    62.555] (II) fglrx(1): 	b300d1c00101023a801871382d40582c
[    62.555] (II) fglrx(1): 	4500132b2100001e000000fd00324c1e
[    62.555] (II) fglrx(1): 	5311000a202020202020000000fc0056
[    62.555] (II) fglrx(1): 	453234380a20202020202020000000ff
[    62.555] (II) fglrx(1): 	0045374c4d51533038323536390a01a5
[    62.555] (II) fglrx(1): Printing probed modes for output DFP7
[    62.555] (II) fglrx(1): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    62.555] (II) fglrx(1): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    62.555] (II) fglrx(1): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    62.555] (II) fglrx(1): Modeline "1920x1080"x50.0   74.25  1920 2448 2492 2640  1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
[    62.555] (II) fglrx(1): Modeline "1920x1080"x60.0   74.25  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
[    62.555] (II) fglrx(1): Modeline "1920x1080"x59.9   74.18  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
[    62.555] (II) fglrx(1): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1776x1000"x50.0  148.50  1776 2304 2348 2640  1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
[    62.555] (II) fglrx(1): Modeline "1776x1000"x59.9  148.35  1776 1864 1908 2200  1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
[    62.555] (II) fglrx(1): Modeline "1776x1000"x50.0   74.25  1776 2304 2348 2640  1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
[    62.555] (II) fglrx(1): Modeline "1776x1000"x59.9   74.18  1776 1864 1908 2200  1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
[    62.555] (II) fglrx(1): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    62.555] (II) fglrx(1): Modeline "1400x1050"x60.0  162.00  1400 1664 1856 2160  1050 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1600x900"x60.0  162.00  1600 1664 1856 2160  900 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1360x1024"x60.0  162.00  1360 1664 1856 2160  1024 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1366x768"x60.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    62.555] (II) fglrx(1): Modeline "1360x768"x60.0   85.50  1360 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x800"x60.0  108.00  1280 1376 1488 1800  800 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1152x864"x59.9  148.35  1152 2008 2052 2200  864 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    62.555] (II) fglrx(1): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    62.555] (II) fglrx(1): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    62.555] (II) fglrx(1): Modeline "1152x648"x50.0   74.25  1152 1592 1632 1980  648 653 658 750 +hsync +vsync (37.5 kHz ez)
[    62.555] (II) fglrx(1): Modeline "1152x648"x59.9   74.18  1152 1262 1302 1650  648 653 658 750 +hsync +vsync (45.0 kHz ez)
[    62.555] (II) fglrx(1): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    62.555] (II) fglrx(1): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    62.555] (II) fglrx(1): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    62.555] (II) fglrx(1): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    62.555] (II) fglrx(1): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz e)
[    62.555] (II) fglrx(1): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    62.555] (II) fglrx(1): Modeline "640x480"x67.0   26.75  640 656 720 800  480 483 487 502 -hsync +vsync (33.4 kHz e)
[    62.555] (II) fglrx(1): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    62.555] (II) fglrx(1): Output DFP1 disconnected
[    62.555] (II) fglrx(1): Output DFP2 disconnected
[    62.555] (II) fglrx(1): Output DFP3 disconnected
[    62.555] (II) fglrx(1): Output DFP4 disconnected
[    62.555] (II) fglrx(1): Output DFP5 disconnected
[    62.555] (II) fglrx(1): Output DFP6 disconnected
[    62.555] (II) fglrx(1): Output DFP7 connected
[    62.555] (II) fglrx(1): Using exact sizes for initial modes
[    62.555] (II) fglrx(1): Output DFP7 using initial mode 1920x1080
[    62.555] (II) fglrx(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    62.555] (II) fglrx(1): DPI set to (96, 96)
[    62.555] (WW) fglrx(0): Unable to register ADL handler for 0x00110000
[    62.555] (WW) fglrx(0): Unable to register ADL handler for 0x00120000
[    62.555] (WW) fglrx(0): Unable to register ADL handler for 0x00130000
[    62.555] (WW) fglrx(0): Unable to register ADL handler for 0x00150000
[    62.555] (II) fglrx(1): Eyefinity capable adapter detected.
[    62.555] (II) fglrx(1): Adapter AMD Radeon R9 200 Series has 6 configurable heads and 2 displays connected.
[    62.555] (==) fglrx(1):  PseudoColor visuals disabled
[    62.555] (==) fglrx(1): bNoDRI = NO (copy from primary screen)
[    62.555] (==) fglrx(1): UseFastTLS=0
[    62.555] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[    62.555] (--) Depth 24 pixmap format is 32 bpp
[    62.555] (II) fglrx(0): doing swlDriScreenInit
[    62.555] (II) fglrx(0): swlDriScreenInit for fglrx driver
[    62.555] ukiDynamicMajor: found major device number 248
[    62.555] ukiDynamicMajor: found major device number 248
[    62.555] ukiDynamicMajor: found major device number 248
[    62.555] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    62.556] ukiOpenDevice: node name is /dev/ati/card0
[    62.556] ukiOpenDevice: open result is 13, (OK)
[    62.556] ukiOpenByBusid: ukiOpenMinor returns 13
[    62.556] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    62.556] (II) fglrx(0): [uki] DRM interface version 1.0
[    62.556] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[    62.556] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
[    62.556] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7f9adaa1f000
[    62.556] (II) fglrx(0): [uki] framebuffer handle = 0x3000
[    62.556] (II) fglrx(0): [uki] added 1 reserved context for kernel
[    62.556] (II) fglrx(0): swlDriScreenInit done
[    62.556] (II) fglrx(0): Kernel Module Version Information:
[    62.556] (II) fglrx(0):     Name: fglrx
[    62.556] (II) fglrx(0):     Version: 15.30.3
[    62.556] (II) fglrx(0):     Date: Dec 17 2015
[    62.556] (II) fglrx(0):     Desc: AMD FireGL DRM kernel module
[    62.556] (II) fglrx(0): Kernel Module version matches driver.
[    62.556] (II) fglrx(0): Kernel Module Build Time Information:
[    62.556] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        4.1.15-1-lts
[    62.556] (II) fglrx(0):     Build-Kernel MODVERSIONS:        yes
[    62.556] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[    62.556] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[    62.556] (II) fglrx(0): [uki] register handle = 0x00004000
[    62.558] (II) fglrx(0): DRI initialization successfull
[    62.559] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x010e0000
[    62.560] (==) fglrx(0): Backing store enabled
[    62.560] (**) fglrx(0): DPMS enabled
[    62.560] (II) fglrx(0): Initialized in-driver Xinerama extension
[    62.560] (**) fglrx(0): Textured Video is enabled.
[    62.560] (II) LoadModule: "glesx"
[    62.560] (II) Loading /usr/lib/xorg/modules/glesx.so
[    62.580] (II) Module glesx: vendor="X.Org Foundation"
[    62.580] 	compiled for 1.4.99.906, module version = 1.0.0
[    62.580] (II) fglrx(0): GLESX enableFlags = 8784
[    62.580] (II) fglrx(0): GLESX is enabled
[    62.580] (II) LoadModule: "amdxmm"
[    62.580] (II) Loading /usr/lib/xorg/modules/amdxmm.so
[    62.582] (II) Module amdxmm: vendor="X.Org Foundation"
[    62.582] 	compiled for 1.4.99.906, module version = 2.0.0
[    62.735] (II) fglrx(0): Enable composite support successfully
[    62.735] (WW) fglrx(0): Option "VendorName" is not used
[    62.735] (WW) fglrx(0): Option "ModelName" is not used
[    62.735] (II) fglrx(0): X context handle = 0x1
[    62.735] (II) fglrx(0): [DRI] installation complete
[    62.735] (==) fglrx(0): Silken mouse enabled
[    62.736] (==) fglrx(0): Using HW cursor of display infrastructure!
[    62.736] (II) fglrx(0): LPT is disabled by configure option
[    62.736] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    62.784] (--) RandR disabled
[    62.784] (II) fglrx(1): doing swlDriScreenInit
[    62.784] (II) fglrx(1): swlDriScreenInit for fglrx driver
[    62.784] ukiDynamicMajor: found major device number 248
[    62.784] ukiDynamicMajor: found major device number 248
[    62.785] ukiDynamicMajor: found major device number 248
[    62.785] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    62.785] ukiOpenDevice: node name is /dev/ati/card0
[    62.785] ukiOpenDevice: open result is 14, (OK)
[    62.785] ukiOpenByBusid: ukiOpenMinor returns 14
[    62.785] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    62.785] (II) fglrx(1): [uki] DRM interface version 1.0
[    62.785] (II) fglrx(1): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[    62.785] (II) fglrx(1): [uki] added 8192 byte SAREA at 0x2000
[    62.785] (II) fglrx(1): [uki] mapped SAREA 0x2000 to 0x7f9adaa13000
[    62.785] (II) fglrx(1): [uki] framebuffer handle = 0x3000
[    62.785] (II) fglrx(1): [uki] added 1 reserved context for kernel
[    62.785] (II) fglrx(1): swlDriScreenInit done
[    62.785] (II) fglrx(1): DRI initialization successfull
[    62.785] (II) fglrx(1): FBADPhys: 0xf4010e0000 FBMappedSize: 0x00e10000
[    62.785] (==) fglrx(1): Backing store enabled
[    62.785] (**) fglrx(1): DPMS enabled
[    62.785] (**) fglrx(1): Textured Video is enabled.
[    62.785] (II) fglrx(1): GLESX enableFlags = 8784
[    62.785] (II) fglrx(1): GLESX is enabled
[    62.938] (II) fglrx(1): Enable composite support successfully
[    62.938] (WW) fglrx(1): Option "VendorName" is not used
[    62.938] (WW) fglrx(1): Option "ModelName" is not used
[    62.938] (II) fglrx(1): X context handle = 0x2
[    62.938] (II) fglrx(1): [DRI] installation complete
[    62.938] (==) fglrx(1): Silken mouse enabled
[    62.938] (==) fglrx(1): Using HW cursor of display infrastructure!
[    62.938] (II) fglrx(1): RandR 1.2 enabled, ignore the following RandR disabled message.
[    63.006] (--) RandR disabled
[    63.009] ukiDynamicMajor: found major device number 248
[    63.009] ukiDynamicMajor: found major device number 248
[    63.009] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    63.009] ukiOpenDevice: node name is /dev/ati/card0
[    63.009] ukiOpenDevice: open result is 15, (OK)
[    63.009] ukiOpenByBusid: ukiOpenMinor returns 15
[    63.009] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    63.009] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[    63.037] ukiDynamicMajor: found major device number 248
[    63.038] ukiDynamicMajor: found major device number 248
[    63.038] ukiDynamicMajor: found major device number 248
[    63.038] ukiOpenDevice: node name is /dev/ati/card0
[    63.038] ukiOpenDevice: open result is 16, (OK)
[    63.038] ukiGetBusid returned 'PCI:1:0:0'
[    63.038] ukiOpenDevice: node name is /dev/ati/card1
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card2
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card3
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card4
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card5
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card6
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card7
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card8
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card9
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card10
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card11
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card12
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card13
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card14
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiOpenDevice: node name is /dev/ati/card15
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: open result is -1, (No such device)
[    63.038] ukiOpenDevice: Open failed
[    63.038] ukiDynamicMajor: found major device number 248
[    63.038] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    63.038] ukiOpenDevice: node name is /dev/ati/card0
[    63.038] ukiOpenDevice: open result is 16, (OK)
[    63.038] ukiOpenByBusid: ukiOpenMinor returns 16
[    63.038] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    63.125] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[    63.125] ukiDynamicMajor: found major device number 248
[    63.125] ukiDynamicMajor: found major device number 248
[    63.125] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    63.125] ukiOpenDevice: node name is /dev/ati/card0
[    63.125] ukiOpenDevice: open result is 17, (OK)
[    63.125] ukiOpenByBusid: ukiOpenMinor returns 17
[    63.125] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    63.128] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 1
[    63.128] ukiDynamicMajor: found major device number 248
[    63.128] ukiDynamicMajor: found major device number 248
[    63.128] ukiDynamicMajor: found major device number 248
[    63.128] ukiOpenDevice: node name is /dev/ati/card0
[    63.128] ukiOpenDevice: open result is 18, (OK)
[    63.128] ukiGetBusid returned 'PCI:1:0:0'
[    63.128] ukiOpenDevice: node name is /dev/ati/card1
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card2
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card3
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card4
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card5
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card6
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card7
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card8
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card9
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card10
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card11
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card12
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card13
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card14
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiOpenDevice: node name is /dev/ati/card15
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: open result is -1, (No such device)
[    63.128] ukiOpenDevice: Open failed
[    63.128] ukiDynamicMajor: found major device number 248
[    63.128] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    63.128] ukiOpenDevice: node name is /dev/ati/card0
[    63.128] ukiOpenDevice: open result is 18, (OK)
[    63.128] ukiOpenByBusid: ukiOpenMinor returns 18
[    63.128] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    63.154] (II) fglrx(0): OverDrive6 Detected!
[    63.159] (II) fglrx(0): Setting screen physical size to 508 x 285
[    63.164] (II) fglrx(1): Setting screen physical size to 508 x 285
[    63.199] (II) config/udev: Adding input device Power Button (/dev/input/event7)
[    63.199] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    63.199] (II) LoadModule: "evdev"
[    63.199] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    63.201] (II) Module evdev: vendor="X.Org Foundation"
[    63.201] 	compiled for 1.17.4, module version = 2.10.0
[    63.201] 	Module class: X.Org XInput Driver
[    63.201] 	ABI class: X.Org XInput driver, version 21.1
[    63.201] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 19 paused 0
[    63.201] (II) Using input driver 'evdev' for 'Power Button'
[    63.201] (**) Power Button: always reports core events
[    63.201] (**) evdev: Power Button: Device: "/dev/input/event7"
[    63.201] (--) evdev: Power Button: Vendor 0 Product 0x1
[    63.201] (--) evdev: Power Button: Found keys
[    63.201] (II) evdev: Power Button: Configuring as keyboard
[    63.201] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input9/event7"
[    63.201] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    63.201] (**) Option "xkb_rules" "evdev"
[    63.202] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[    63.202] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    63.202] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 20 paused 0
[    63.202] (II) Using input driver 'evdev' for 'Power Button'
[    63.202] (**) Power Button: always reports core events
[    63.202] (**) evdev: Power Button: Device: "/dev/input/event5"
[    63.202] (--) evdev: Power Button: Vendor 0 Product 0x1
[    63.202] (--) evdev: Power Button: Found keys
[    63.202] (II) evdev: Power Button: Configuring as keyboard
[    63.202] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input7/event5"
[    63.202] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    63.202] (**) Option "xkb_rules" "evdev"
[    63.202] (II) config/udev: Adding input device Sleep Button (/dev/input/event6)
[    63.202] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    63.203] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 21 paused 0
[    63.203] (II) Using input driver 'evdev' for 'Sleep Button'
[    63.203] (**) Sleep Button: always reports core events
[    63.203] (**) evdev: Sleep Button: Device: "/dev/input/event6"
[    63.203] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    63.203] (--) evdev: Sleep Button: Found keys
[    63.203] (II) evdev: Sleep Button: Configuring as keyboard
[    63.203] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input8/event6"
[    63.203] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    63.203] (**) Option "xkb_rules" "evdev"
[    63.203] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[    63.203] (II) No input driver specified, ignoring this device.
[    63.203] (II) This device may have been added with another device file.
[    63.203] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[    63.203] (II) No input driver specified, ignoring this device.
[    63.203] (II) This device may have been added with another device file.
[    63.203] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[    63.203] (II) No input driver specified, ignoring this device.
[    63.203] (II) This device may have been added with another device file.
[    63.203] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[    63.203] (II) No input driver specified, ignoring this device.
[    63.203] (II) This device may have been added with another device file.
[    63.203] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[    63.203] (II) No input driver specified, ignoring this device.
[    63.203] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event14)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event15)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event16)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event17)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event18)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event19)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event20)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.204] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event21)
[    63.204] (II) No input driver specified, ignoring this device.
[    63.204] (II) This device may have been added with another device file.
[    63.205] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event22)
[    63.205] (II) No input driver specified, ignoring this device.
[    63.205] (II) This device may have been added with another device file.
[    63.205] (II) config/udev: Adding input device USB Keyboard (/dev/input/event0)
[    63.205] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    63.205] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 22 paused 0
[    63.205] (II) Using input driver 'evdev' for 'USB Keyboard'
[    63.205] (**) USB Keyboard: always reports core events
[    63.205] (**) evdev: USB Keyboard: Device: "/dev/input/event0"
[    63.205] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x183
[    63.205] (--) evdev: USB Keyboard: Found keys
[    63.205] (II) evdev: USB Keyboard: Configuring as keyboard
[    63.205] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-1/5-1:1.0/0003:04D9:0183.0001/input/input2/event0"
[    63.205] (II) XINPUT: Adding extended input device "USB Keyboard" (type: KEYBOARD, id 9)
[    63.205] (**) Option "xkb_rules" "evdev"
[    63.205] (II) config/udev: Adding input device USB Keyboard (/dev/input/event1)
[    63.205] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    63.206] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 23 paused 0
[    63.206] (II) Using input driver 'evdev' for 'USB Keyboard'
[    63.206] (**) USB Keyboard: always reports core events
[    63.206] (**) evdev: USB Keyboard: Device: "/dev/input/event1"
[    63.206] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x183
[    63.206] (--) evdev: USB Keyboard: Found keys
[    63.206] (II) evdev: USB Keyboard: Configuring as keyboard
[    63.206] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-1/5-1:1.2/0003:04D9:0183.0003/input/input3/event1"
[    63.206] (II) XINPUT: Adding extended input device "USB Keyboard" (type: KEYBOARD, id 10)
[    63.206] (**) Option "xkb_rules" "evdev"
[    63.206] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event2)
[    63.206] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev pointer catchall"
[    63.260] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 24 paused 0
[    63.260] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    63.260] (**) Razer Razer DeathAdder 2013: always reports core events
[    63.260] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event2"
[    63.260] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    63.260] (--) evdev: Razer Razer DeathAdder 2013: Found 9 mouse buttons
[    63.260] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    63.260] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    63.260] (--) evdev: Razer Razer DeathAdder 2013: Found x and y relative axes
[    63.260] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    63.260] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    63.260] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    63.260] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    63.260] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-2/5-2:1.0/0003:1532:0037.0004/input/input4/event2"
[    63.260] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: MOUSE, id 11)
[    63.260] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    63.260] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    63.260] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    63.260] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    63.260] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    63.260] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/mouse0)
[    63.260] (II) No input driver specified, ignoring this device.
[    63.260] (II) This device may have been added with another device file.
[    63.260] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event3)
[    63.260] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    63.261] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 25 paused 0
[    63.261] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    63.261] (**) Razer Razer DeathAdder 2013: always reports core events
[    63.261] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event3"
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found 1 mouse buttons
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    63.261] (II) evdev: Razer Razer DeathAdder 2013: Forcing relative x/y axes to exist.
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found absolute axes
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found absolute multitouch axes
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Fake MT device detected
[    63.261] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    63.261] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    63.261] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    63.261] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    63.261] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    63.261] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    63.261] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-2/5-2:1.1/0003:1532:0037.0005/input/input5/event3"
[    63.261] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 12)
[    63.261] (**) Option "xkb_rules" "evdev"
[    63.261] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    63.261] (WW) evdev: Razer Razer DeathAdder 2013: ignoring absolute axes.
[    63.261] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    63.261] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    63.261] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    63.261] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    63.261] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event4)
[    63.261] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    63.262] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 26 paused 0
[    63.262] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    63.262] (**) Razer Razer DeathAdder 2013: always reports core events
[    63.262] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event4"
[    63.262] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    63.262] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    63.262] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    63.262] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-2/5-2:1.2/0003:1532:0037.0006/input/input6/event4"
[    63.262] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 13)
[    63.262] (**) Option "xkb_rules" "evdev"
[    63.262] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[    63.262] (II) No input driver specified, ignoring this device.
[    63.262] (II) This device may have been added with another device file.
[    63.265] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[    63.265] (II) fglrx(1): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[    63.301] (II) evdev: Razer Razer DeathAdder 2013: Close
[    63.301] (II) UnloadModule: "evdev"
[    63.301] (II) systemd-logind: releasing fd for 13:68
[    63.390] (II) evdev: Razer Razer DeathAdder 2013: Close
[    63.390] (II) UnloadModule: "evdev"
[    63.390] (II) systemd-logind: releasing fd for 13:67
[    63.450] (II) evdev: Razer Razer DeathAdder 2013: Close
[    63.450] (II) UnloadModule: "evdev"
[    63.450] (II) systemd-logind: releasing fd for 13:66
[    63.510] (II) evdev: USB Keyboard: Close
[    63.510] (II) UnloadModule: "evdev"
[    63.510] (II) systemd-logind: releasing fd for 13:65
[    63.580] (II) evdev: USB Keyboard: Close
[    63.580] (II) UnloadModule: "evdev"
[    63.580] (II) systemd-logind: releasing fd for 13:64
[    63.650] (II) evdev: Sleep Button: Close
[    63.650] (II) UnloadModule: "evdev"
[    63.650] (II) systemd-logind: releasing fd for 13:70
[    63.680] (II) evdev: Power Button: Close
[    63.680] (II) UnloadModule: "evdev"
[    63.680] (II) systemd-logind: releasing fd for 13:69
[    63.710] (II) evdev: Power Button: Close
[    63.710] (II) UnloadModule: "evdev"
[    63.710] (II) systemd-logind: releasing fd for 13:71
[    63.740] (II) fglrx(1): [uki] removed 1 reserved context for kernel
[    63.740] (II) fglrx(1): [uki] unmapping 8192 bytes of SAREA 0x2000 at 0x7f9adaa13000
[    63.740] (II) fglrx(0): Shutdown CMMQS
[    63.745] (II) fglrx(0): [uki] removed 1 reserved context for kernel
[    63.745] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x2000 at 0x7f9adaa1f000
[    63.799] (II) Server terminated successfully (0). Closing log file.

I also tried to start gdm with 'systemctl start gdm.service' and instead of the usual underscore in the upper-left of the screen I got a pointer to show up along with a few flickering white pixels. Not sure if this helps the diagnosis at all, thought it was worth sharing.

Offline

#9 2016-01-22 05:16:55

Docbroke
Member
From: India
Registered: 2015-06-13
Posts: 1,433

Re: Problems installing AMD catalyst drivers

Phrost5019 wrote:

would use the latest kernel if I could given that information, but the catalyst drivers for arch linux require a downstream kernel and a downgraded xorg because they're slow to update things. My GPU is a Radeon R9 290. Pretty recent so I assumed it would be current enough to not require legacy software, however, I didn't explicitly check for compatibility.

I meant this,

https://wiki.archlinux.org/index.php/ATI

http://www.phoronix.com/scan.php?page=a … -wow&num=1

Last edited by Docbroke (2016-01-22 05:23:56)

Offline

#10 2016-01-22 15:58:52

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,866

Re: Problems installing AMD catalyst drivers

To my understanding all you need to install from Vi0L0's repository is catalyst_hook, catalyst_utils, and catalyst_libgl, do you need more packages?

Those 3 are correct, assuming you don't need OpenCL and/or 32-bit support (like for wine,skype,steam etc) .

lspci verfies you don't have an integrated gpu, just a discrete videocard.
uname -a states you are using the LTS kernel, with latest catalyst you should be able to use the normal AL kernel.

[    62.552] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0

This looks like a misconfiguration, as further down only DFP6 and DFP7 are detected as having a monitor connected to them.
please post your xorg config file(s) .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#11 2016-01-22 23:26:31

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

Docbroke wrote:
Phrost5019 wrote:

would use the latest kernel if I could given that information, but the catalyst drivers for arch linux require a downstream kernel and a downgraded xorg because they're slow to update things. My GPU is a Radeon R9 290. Pretty recent so I assumed it would be current enough to not require legacy software, however, I didn't explicitly check for compatibility.

I meant this,

https://wiki.archlinux.org/index.php/ATI

http://www.phoronix.com/scan.php?page=a … -wow&num=1

Sorry, I must've quoted the wrong post. I did try the ATI drivers. I had an installation previous to the one I had now, everything went smoothly and I attempted to install catalyst after getting everything working and the entire system got to the state it's in now. I reinstalled to try to start a clean slate but I'm not sure its put me in a better position.

Those 3 are correct, assuming you don't need OpenCL and/or 32-bit support (like for wine,skype,steam etc) .
lspci verfies you don't have an integrated gpu, just a discrete videocard.
uname -a states you are using the LTS kernel, with latest catalyst you should be able to use the normal AL kernel.

I would like to have 32-bit support on my system. I'm assuming you just need to install lib32-catalyst-utils and lib32-catalyst-libgl. Do you need anything else?

I would prefer to use the LTS kernel unless catalyst isn't working with it for some reason. Does catalyst not support the LTS kernel?

This looks like a misconfiguration, as further down only DFP6 and DFP7 are detected as having a monitor connected to them.
please post your xorg config file(s) .

Here is my xorg.conf

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Screen         "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-1"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-1"
	Device     "aticonfig-Device[0]-1"
	Monitor    "aticonfig-Monitor[0]-1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

I'm not presuming to be knowledgeable on the subject, but given that I only have two monitors connected with display cables I would assume only two connections would appear.

Offline

#12 2016-01-23 05:32:17

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

OK, I've done some tinkering and it turns out I've forgotten to install xterm which would seem to inhibit x-server from starting. Stupid mistake on my part. I was able to get 'startx' to start x-server and show some graphical terminals. However, gdm still doesn't work. It's still in the same situation as before, it starts but only a cursor and a black background is shown. I'm able to get back to the terminal with ctrl+alt+f4 and check on the process.

systemctl status gdm.service

says that gdm is active an running. It does, however, return these lines below the regular information

systemd[1]: Starting GNOME Display Manager...
systemd[1]: Started GNOME Display Manager.
gdm[650]: GdmDisplay: dispaly lasted 0.229940 seconds
gdm[650]: Child process -674 was already dead.
gdm[650]: Child process 664 was already dead.
gdm[650]: Unable to kill session worker process

I'm able to get lightdm to work fine, however the black screen and cursor appears after I log in.

Offline

#13 2016-01-23 14:49:48

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,866

Re: Problems installing AMD catalyst drivers

	Screen      1

That line in xorg.conf could be the reason X tries to use DFP1 , try commenting it.
-------------------------------------

I would like to have 32-bit support on my system. I'm assuming you just need to install lib32-catalyst-utils and lib32-catalyst-libgl. Do you need anything else?

no,those 2 should be sufficient.

-----------------------------------------

I would prefer to use the LTS kernel unless catalyst isn't working with it for some reason. Does catalyst not support the LTS kernel?

Catalyst does work fine with the LTS kernel, but your intel processor may need a newer kernel.
Do you have an intel skylake processor (lscpu if you're unsure) ?

----------------------------

For now,i'd suggest not using gdm or lightdm(or any display/login manager) to keep things simple.

Try starting the WM/DE (Gnome ? ) you want to use manually .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#14 2016-01-23 21:35:59

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

Catalyst does work fine with the LTS kernel, but your intel processor may need a newer kernel.
Do you have an intel skylake processor (lscpu if you're unsure) ?

No, I'm using a 5th generation cpu. I've used it with kernels as early as 3.16 so it should work.

That line in xorg.conf could be the reason X tries to use DFP1 , try commenting it.

I've commented that line and xorg now shows on both screens

For now,i'd suggest not using gdm or lightdm(or any display/login manager) to keep things simple.
Try starting the WM/DE (Gnome ? ) you want to use manually .

I can see why you'd suggest that, but as far as I can tell the issue is not with the display manager, but with gnome itself. Lightdm works fine and when I type

gnome-session

it gives me the same result (cursor with black screen.) I've also read a few forum and blog posts saying that gnome itself is having negative interactions with newer catalyst drivers, perhaps this is the issue?

Last edited by Phrost5019 (2016-01-23 21:36:24)

Offline

#15 2016-01-24 12:52:39

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,866

Re: Problems installing AMD catalyst drivers

This does indeed look like a gnome-catalyst issue.

Do things work if you try a gnome on wayland session ?


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#16 2016-01-24 23:58:22

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

Lone_Wolf wrote:

This does indeed look like a gnome-catalyst issue.

Do things work if you try a gnome on wayland session ?

I'm not entirely sure how to start a gnome session with wayland from the command line. However, when I type

gnome-session --session gnome-wayland

it doesn't do anything. Nothing is started, nor is anything outputted to the command line. It just gives me a new command prompt.

Offline

#17 2016-01-25 00:02:17

clfarron4
Member
From: London, UK
Registered: 2013-06-28
Posts: 2,163
Website

Re: Problems installing AMD catalyst drivers

Okay, before we start blaming GNOME for definite, does another environment, such as Cinnamon or XFCE work? Both are pretty small, so you shouldn't have any issues installing them on your system.


Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository

Offline

#18 2016-01-25 04:16:54

Phrost5019
Member
Registered: 2015-02-20
Posts: 32

Re: Problems installing AMD catalyst drivers

clfarron4 wrote:

Okay, before we start blaming GNOME for definite, does another environment, such as Cinnamon or XFCE work? Both are pretty small, so you shouldn't have any issues installing them on your system.

Alright, when I run

startxfce4

xfce crashes. This is outputted to the screen:

(WW) fglrx: More than one matching Device section for instances
(BusID: PCI:1:0:0) found: aticonfig-Device[0]-1
(WW) fglrx: No matching Device section for isntance (BusID PCI:0e1:0:1) found
Can't save user-dirs.dirs
xfce4-session: Unable to access file /home/<user>/.ICEauthority: Permission denied
xinit: connection to X server lost
waiting for X server to shut down (II) Server terminated successfully (o). Closing log file.

Here is my Xorg.0.log

[    89.614] 
X.Org X Server 1.17.4
Release Date: 2015-10-28
[    89.614] X Protocol Version 11, Revision 0
[    89.614] Build Operating System: Linux 4.2.5-1-ARCH x86_64 
[    89.614] Current Operating System: Linux saturn 4.3.3-3-ARCH #1 SMP PREEMPT Wed Jan 20 08:12:23 CET 2016 x86_64
[    89.615] Kernel command line: initrd=\initramfs-linux.img cryptdevice=UUID=d819538c-34a4-45a9-a202-0df31bc7b3c5:root root=/dev/mapper/root quiet rw nomodeset
[    89.615] Build Date: 01 November 2015  10:36:50AM
[    89.615]  
[    89.615] Current version of pixman: 0.32.8
[    89.615] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    89.615] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    89.615] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jan 24 21:05:12 2016
[    89.616] (==) Using config file: "/etc/X11/xorg.conf"
[    89.616] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    89.617] (==) ServerLayout "aticonfig Layout"
[    89.617] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[    89.617] (**) |   |-->Monitor "aticonfig-Monitor[0]-0"
[    89.617] (**) |   |-->Device "aticonfig-Device[0]-0"
[    89.617] (**) |-->Screen "aticonfig-Screen[0]-1" (1)
[    89.617] (**) |   |-->Monitor "aticonfig-Monitor[0]-1"
[    89.617] (**) |   |-->Device "aticonfig-Device[0]-1"
[    89.617] (==) Automatically adding devices
[    89.617] (==) Automatically enabling devices
[    89.617] (==) Automatically adding GPU devices
[    89.621] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    89.621] 	Entry deleted from font path.
[    89.621] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    89.621] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    89.621] 	Entry deleted from font path.
[    89.621] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[    89.621] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[    89.621] (==) ModulePath set to "/usr/lib/xorg/modules"
[    89.621] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    89.621] (II) Loader magic: 0x817d60
[    89.621] (II) Module ABI versions:
[    89.621] 	X.Org ANSI C Emulation: 0.4
[    89.621] 	X.Org Video Driver: 19.0
[    89.621] 	X.Org XInput driver : 21.1
[    89.622] 	X.Org Server Extension : 9.0
[    89.623] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[    89.623] (--) PCI:*(0:1:0:0) 1002:67b1:1682:9295 rev 0, Mem @ 0xe0000000/268435456, 0xf0000000/8388608, 0xf7e00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[    89.623] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    89.624] (II) "glx" will be loaded by default.
[    89.624] (II) LoadModule: "glx"
[    89.624] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    89.627] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[    89.627] 	compiled for 6.9.0, module version = 1.0.0
[    89.627] (II) LoadModule: "fglrx"
[    89.627] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
[    89.674] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[    89.674] 	compiled for 1.4.99.906, module version = 15.30.3
[    89.674] 	Module class: X.Org Video Driver
[    89.675] (II) Loading sub module "fglrxdrm"
[    89.675] (II) LoadModule: "fglrxdrm"
[    89.675] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[    89.676] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    89.676] 	compiled for 1.4.99.906, module version = 15.30.3
[    89.676] (II) AMD Proprietary Linux Driver Version Identifier:15.30.3
[    89.676] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-15.302                   
[    89.676] (II) AMD Proprietary Linux Driver Build Date: Dec 17 2015 02:43:16
[    89.676] (++) using VT number 1

[    89.676] (--) controlling tty is VT number 1, auto-enabling KeepTty
[    89.676] (WW) Falling back to old probe method for fglrx
[    89.691] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[    89.692] ukiDynamicMajor: found major device number 246
[    89.692] ukiDynamicMajor: found major device number 246
[    89.692] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    89.692] ukiOpenDevice: node name is /dev/ati/card0
[    89.692] ukiOpenDevice: open result is 10, (OK)
[    90.128] ukiOpenByBusid: ukiOpenMinor returns 10
[    90.128] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.129] ukiDynamicMajor: found major device number 246
[    90.129] ukiDynamicMajor: found major device number 246
[    90.129] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.129] ukiOpenDevice: node name is /dev/ati/card0
[    90.129] ukiOpenDevice: open result is 10, (OK)
[    90.129] ukiOpenByBusid: ukiOpenMinor returns 10
[    90.129] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.132] (WW) fglrx: More than one matching Device section for instances
	(BusID: PCI:1:0:0) found: aticonfig-Device[0]-1
[    90.132] (--) Chipset Supported AMD Graphics Processor (0x67B1) found
[    90.132] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
[    90.133] (II) fglrx(0): pEnt->device->identifier=0xdc2fd0
[    90.133] (II) fglrx(0): === [xdl_xs117_atiddxPreInit] === begin
[    90.133] (II) fglrx(0): FB driver is enabled
[    90.133] (II) Loading sub module "vgahw"
[    90.133] (II) LoadModule: "vgahw"
[    90.133] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[    90.134] (II) Module vgahw: vendor="X.Org Foundation"
[    90.134] 	compiled for 1.17.4, module version = 0.1.0
[    90.134] 	ABI class: X.Org Video Driver, version 19.0
[    90.134] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[    90.134] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    90.134] (==) fglrx(0): Default visual is TrueColor
[    90.134] (**) fglrx(0): Option "DPMS" "true"
[    90.134] (==) fglrx(0): RGB weight 888
[    90.134] (II) fglrx(0): Using 8 bits per RGB 
[    90.134] (==) fglrx(0): Buffer Tiling is ON
[    90.134] (II) Loading sub module "fglrxdrm"
[    90.134] (II) LoadModule: "fglrxdrm"
[    90.134] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[    90.134] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    90.134] 	compiled for 1.4.99.906, module version = 15.30.3
[    90.135] ukiDynamicMajor: found major device number 246
[    90.135] ukiDynamicMajor: found major device number 246
[    90.135] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.135] ukiOpenDevice: node name is /dev/ati/card0
[    90.135] ukiOpenDevice: open result is 12, (OK)
[    90.135] ukiOpenByBusid: ukiOpenMinor returns 12
[    90.135] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.135] (**) fglrx(0): NoAccel = NO
[    90.135] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[    90.135] (--) fglrx(0): Chipset: "AMD Radeon R9 200 Series" (Chipset = 0x67b1)
[    90.135] (--) fglrx(0): (PciSubVendor = 0x1682, PciSubDevice = 0x9295)
[    90.135] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[    90.135] (--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
[    90.135] (--) fglrx(0): MMIO registers at 0xf7e00000
[    90.135] (--) fglrx(0): I/O port at 0x0000e000
[    90.135] (==) fglrx(0): ROM-BIOS at 0x000c0000
[    90.136] (II) fglrx(0): AC Adapter is used
[    90.136] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[    90.136] (--) fglrx(0): Video RAM: 4194304 kByte, Type: GDDR5
[    90.136] (II) fglrx(0): PCIE card detected
[    90.136] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[    90.136] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[    90.136] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x100000000)
[    90.136] (II) fglrx(0): RandR 1.2 support is enabled!
[    90.136] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[    90.136] (II) Loading sub module "fb"
[    90.136] (II) LoadModule: "fb"
[    90.136] (II) Loading /usr/lib/xorg/modules/libfb.so
[    90.137] (II) Module fb: vendor="X.Org Foundation"
[    90.137] 	compiled for 1.17.4, module version = 1.0.0
[    90.137] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    90.137] (II) fglrx(0): EDID Management option: EDID Management is enabled
[    90.137] (II) Loading sub module "ddc"
[    90.137] (II) LoadModule: "ddc"
[    90.137] (II) Module "ddc" already built-in
[    90.361] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
[    90.361] (II) fglrx(0): Output DFP2 has no monitor section
[    90.361] (II) fglrx(0): Output DFP3 has no monitor section
[    90.361] (II) fglrx(0): Output DFP4 has no monitor section
[    90.361] (II) fglrx(0): Output DFP5 has no monitor section
[    90.361] (II) fglrx(0): Output DFP6 has no monitor section
[    90.361] (II) fglrx(0): Output DFP7 has no monitor section
[    90.361] (II) Loading sub module "ddc"
[    90.361] (II) LoadModule: "ddc"
[    90.361] (II) Module "ddc" already built-in
[    90.361] (II) fglrx(0): Connected Display0: DFP6
[    90.361] (II) fglrx(0): Display0 EDID data ---------------------------
[    90.361] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    90.361] (II) fglrx(0): Year: 2014  Week: 29
[    90.361] (II) fglrx(0): EDID Version: 1.3
[    90.361] (II) fglrx(0): Digital Display Input
[    90.361] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    90.361] (II) fglrx(0): Gamma: 2.20
[    90.361] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    90.361] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    90.361] (II) fglrx(0): First detailed timing is preferred mode
[    90.361] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    90.361] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    90.361] (II) fglrx(0): Supported established timings:
[    90.361] (II) fglrx(0): 720x400@70Hz
[    90.361] (II) fglrx(0): 640x480@60Hz
[    90.361] (II) fglrx(0): 640x480@67Hz
[    90.361] (II) fglrx(0): 640x480@72Hz
[    90.361] (II) fglrx(0): 640x480@75Hz
[    90.361] (II) fglrx(0): 800x600@56Hz
[    90.361] (II) fglrx(0): 800x600@60Hz
[    90.361] (II) fglrx(0): 800x600@72Hz
[    90.361] (II) fglrx(0): 800x600@75Hz
[    90.361] (II) fglrx(0): 832x624@75Hz
[    90.361] (II) fglrx(0): 1024x768@60Hz
[    90.361] (II) fglrx(0): 1024x768@70Hz
[    90.361] (II) fglrx(0): 1024x768@75Hz
[    90.361] (II) fglrx(0): 1280x1024@75Hz
[    90.361] (II) fglrx(0): Manufacturer's mask: 0
[    90.361] (II) fglrx(0): Supported standard timings:
[    90.361] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    90.361] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    90.361] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    90.361] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    90.361] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    90.361] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    90.361] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.361] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    90.361] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    90.361] (II) fglrx(0): Monitor name: VE248
[    90.361] (II) fglrx(0): Serial No: E7LMQS081842
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    90.361] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    90.361] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    90.361] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    90.361] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.361] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    90.361] (II) fglrx(0): Number of EDID sections to follow: 1
[    90.361] (II) fglrx(0): EDID (in hex):
[    90.361] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    90.361] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    90.361] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    90.361] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    90.361] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    90.361] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    90.361] (II) fglrx(0): 	453234380a20202020202020000000ff
[    90.361] (II) fglrx(0): 	0045374c4d51533038313834320a01ac
[    90.361] (II) fglrx(0): End of Display0 EDID data --------------------
[    90.361] (II) fglrx(0): Connected Display1: DFP7
[    90.361] (II) fglrx(0): Display1 EDID data ---------------------------
[    90.361] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    90.361] (II) fglrx(0): Year: 2014  Week: 29
[    90.361] (II) fglrx(0): EDID Version: 1.3
[    90.361] (II) fglrx(0): Digital Display Input
[    90.361] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    90.361] (II) fglrx(0): Gamma: 2.20
[    90.361] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    90.361] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    90.361] (II) fglrx(0): First detailed timing is preferred mode
[    90.361] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    90.361] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    90.361] (II) fglrx(0): Supported established timings:
[    90.361] (II) fglrx(0): 720x400@70Hz
[    90.361] (II) fglrx(0): 640x480@60Hz
[    90.361] (II) fglrx(0): 640x480@67Hz
[    90.361] (II) fglrx(0): 640x480@72Hz
[    90.361] (II) fglrx(0): 640x480@75Hz
[    90.361] (II) fglrx(0): 800x600@56Hz
[    90.361] (II) fglrx(0): 800x600@60Hz
[    90.361] (II) fglrx(0): 800x600@72Hz
[    90.361] (II) fglrx(0): 800x600@75Hz
[    90.361] (II) fglrx(0): 832x624@75Hz
[    90.361] (II) fglrx(0): 1024x768@60Hz
[    90.361] (II) fglrx(0): 1024x768@70Hz
[    90.361] (II) fglrx(0): 1024x768@75Hz
[    90.361] (II) fglrx(0): 1280x1024@75Hz
[    90.361] (II) fglrx(0): Manufacturer's mask: 0
[    90.361] (II) fglrx(0): Supported standard timings:
[    90.361] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    90.361] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    90.361] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    90.361] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    90.361] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    90.361] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    90.361] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.361] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    90.361] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    90.361] (II) fglrx(0): Monitor name: VE248
[    90.361] (II) fglrx(0): Serial No: E7LMQS082569
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    90.361] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    90.361] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    90.361] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    90.361] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    90.361] (II) fglrx(0): Supported detailed timing:
[    90.361] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.361] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.361] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    90.361] (II) fglrx(0): Number of EDID sections to follow: 1
[    90.361] (II) fglrx(0): EDID (in hex):
[    90.361] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    90.361] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    90.361] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    90.361] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    90.361] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    90.361] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    90.361] (II) fglrx(0): 	453234380a20202020202020000000ff
[    90.361] (II) fglrx(0): 	0045374c4d51533038323536390a01a5
[    90.361] (II) fglrx(0): End of Display1 EDID data --------------------
[    90.361] (II) fglrx(0): Dynamic Surface Resizing Enabled
[    90.362] (II) fglrx(0): EDID for output DFP1
[    90.362] (II) fglrx(0): EDID for output DFP2
[    90.362] (II) fglrx(0): EDID for output DFP3
[    90.362] (II) fglrx(0): EDID for output DFP4
[    90.362] (II) fglrx(0): EDID for output DFP5
[    90.362] (II) fglrx(0): EDID for output DFP6
[    90.362] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    90.362] (II) fglrx(0): Year: 2014  Week: 29
[    90.362] (II) fglrx(0): EDID Version: 1.3
[    90.362] (II) fglrx(0): Digital Display Input
[    90.362] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    90.362] (II) fglrx(0): Gamma: 2.20
[    90.362] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    90.362] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    90.362] (II) fglrx(0): First detailed timing is preferred mode
[    90.362] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    90.362] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    90.362] (II) fglrx(0): Supported established timings:
[    90.362] (II) fglrx(0): 720x400@70Hz
[    90.362] (II) fglrx(0): 640x480@60Hz
[    90.362] (II) fglrx(0): 640x480@67Hz
[    90.362] (II) fglrx(0): 640x480@72Hz
[    90.362] (II) fglrx(0): 640x480@75Hz
[    90.362] (II) fglrx(0): 800x600@56Hz
[    90.362] (II) fglrx(0): 800x600@60Hz
[    90.362] (II) fglrx(0): 800x600@72Hz
[    90.362] (II) fglrx(0): 800x600@75Hz
[    90.362] (II) fglrx(0): 832x624@75Hz
[    90.362] (II) fglrx(0): 1024x768@60Hz
[    90.362] (II) fglrx(0): 1024x768@70Hz
[    90.362] (II) fglrx(0): 1024x768@75Hz
[    90.362] (II) fglrx(0): 1280x1024@75Hz
[    90.362] (II) fglrx(0): Manufacturer's mask: 0
[    90.362] (II) fglrx(0): Supported standard timings:
[    90.362] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    90.362] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    90.362] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    90.362] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    90.362] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    90.362] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    90.362] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.362] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    90.362] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    90.362] (II) fglrx(0): Monitor name: VE248
[    90.362] (II) fglrx(0): Serial No: E7LMQS081842
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    90.362] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    90.362] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    90.362] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    90.362] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    90.362] (II) fglrx(0): Supported detailed timing:
[    90.362] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.362] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.362] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    90.362] (II) fglrx(0): Number of EDID sections to follow: 1
[    90.362] (II) fglrx(0): EDID (in hex):
[    90.362] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    90.362] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    90.362] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    90.362] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    90.362] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    90.362] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    90.362] (II) fglrx(0): 	453234380a20202020202020000000ff
[    90.362] (II) fglrx(0): 	0045374c4d51533038313834320a01ac
[    90.363] (II) fglrx(0): Printing probed modes for output DFP6
[    90.363] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x50.0   74.25  1920 2448 2492 2640  1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x60.0   74.25  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x59.9   74.18  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x50.0  148.50  1776 2304 2348 2640  1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x59.9  148.35  1776 1864 1908 2200  1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x50.0   74.25  1776 2304 2348 2640  1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x59.9   74.18  1776 1864 1908 2200  1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    90.363] (II) fglrx(0): Modeline "1400x1050"x60.0  162.00  1400 1664 1856 2160  1050 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1600x900"x60.0  162.00  1600 1664 1856 2160  900 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1360x1024"x60.0  162.00  1360 1664 1856 2160  1024 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1366x768"x60.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1360x768"x60.0   85.50  1360 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x800"x60.0  108.00  1280 1376 1488 1800  800 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x864"x59.9  148.35  1152 2008 2052 2200  864 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x648"x50.0   74.25  1152 1592 1632 1980  648 653 658 750 +hsync +vsync (37.5 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1152x648"x59.9   74.18  1152 1262 1302 1650  648 653 658 750 +hsync +vsync (45.0 kHz ez)
[    90.363] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    90.363] (II) fglrx(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x67.0   26.75  640 656 720 800  480 483 487 502 -hsync +vsync (33.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): EDID for output DFP7
[    90.363] (II) fglrx(0): Manufacturer: ACI  Model: 2494  Serial#: 16843009
[    90.363] (II) fglrx(0): Year: 2014  Week: 29
[    90.363] (II) fglrx(0): EDID Version: 1.3
[    90.363] (II) fglrx(0): Digital Display Input
[    90.363] (II) fglrx(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[    90.363] (II) fglrx(0): Gamma: 2.20
[    90.363] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[    90.363] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    90.363] (II) fglrx(0): First detailed timing is preferred mode
[    90.363] (II) fglrx(0): redX: 0.650 redY: 0.333   greenX: 0.332 greenY: 0.623
[    90.363] (II) fglrx(0): blueX: 0.157 blueY: 0.053   whiteX: 0.313 whiteY: 0.329
[    90.363] (II) fglrx(0): Supported established timings:
[    90.363] (II) fglrx(0): 720x400@70Hz
[    90.363] (II) fglrx(0): 640x480@60Hz
[    90.363] (II) fglrx(0): 640x480@67Hz
[    90.363] (II) fglrx(0): 640x480@72Hz
[    90.363] (II) fglrx(0): 640x480@75Hz
[    90.363] (II) fglrx(0): 800x600@56Hz
[    90.363] (II) fglrx(0): 800x600@60Hz
[    90.363] (II) fglrx(0): 800x600@72Hz
[    90.363] (II) fglrx(0): 800x600@75Hz
[    90.363] (II) fglrx(0): 832x624@75Hz
[    90.363] (II) fglrx(0): 1024x768@60Hz
[    90.363] (II) fglrx(0): 1024x768@70Hz
[    90.363] (II) fglrx(0): 1024x768@75Hz
[    90.363] (II) fglrx(0): 1280x1024@75Hz
[    90.363] (II) fglrx(0): Manufacturer's mask: 0
[    90.363] (II) fglrx(0): Supported standard timings:
[    90.363] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    90.363] (II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    90.363] (II) fglrx(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    90.363] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    90.363] (II) fglrx(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    90.363] (II) fglrx(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    90.363] (II) fglrx(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.363] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    90.363] (II) fglrx(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    90.363] (II) fglrx(0): Monitor name: VE248
[    90.363] (II) fglrx(0): Serial No: E7LMQS082569
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 138.5 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    90.363] (II) fglrx(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 85.5 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    90.363] (II) fglrx(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    90.363] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 27.0 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    90.363] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    90.363] (II) fglrx(0): Supported detailed timing:
[    90.363] (II) fglrx(0): clock: 74.2 MHz   Image Size:  531 x 299 mm
[    90.363] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    90.363] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    90.363] (II) fglrx(0): Number of EDID sections to follow: 1
[    90.363] (II) fglrx(0): EDID (in hex):
[    90.363] (II) fglrx(0): 	00ffffffffffff000469942401010101
[    90.363] (II) fglrx(0): 	1d18010380351e78ea9265a655559f28
[    90.363] (II) fglrx(0): 	0d5054bfef00714f818081409500a940
[    90.363] (II) fglrx(0): 	b300d1c00101023a801871382d40582c
[    90.363] (II) fglrx(0): 	4500132b2100001e000000fd00324c1e
[    90.363] (II) fglrx(0): 	5311000a202020202020000000fc0056
[    90.363] (II) fglrx(0): 	453234380a20202020202020000000ff
[    90.363] (II) fglrx(0): 	0045374c4d51533038323536390a01a5
[    90.363] (II) fglrx(0): Printing probed modes for output DFP7
[    90.363] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x50.0   74.25  1920 2448 2492 2640  1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x60.0   74.25  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
[    90.363] (II) fglrx(0): Modeline "1920x1080"x59.9   74.18  1920 2008 2052 2200  1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x50.0  148.50  1776 2304 2348 2640  1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x59.9  148.35  1776 1864 1908 2200  1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x50.0   74.25  1776 2304 2348 2640  1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1776x1000"x59.9   74.18  1776 1864 1908 2200  1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    90.363] (II) fglrx(0): Modeline "1400x1050"x60.0  162.00  1400 1664 1856 2160  1050 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1600x900"x60.0  162.00  1600 1664 1856 2160  900 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1360x1024"x60.0  162.00  1360 1664 1856 2160  1024 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1366x768"x60.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1360x768"x60.0   85.50  1360 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x800"x60.0  108.00  1280 1376 1488 1800  800 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x864"x59.9  148.35  1152 2008 2052 2200  864 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "1152x648"x50.0   74.25  1152 1592 1632 1980  648 653 658 750 +hsync +vsync (37.5 kHz ez)
[    90.363] (II) fglrx(0): Modeline "1152x648"x59.9   74.18  1152 1262 1302 1650  648 653 658 750 +hsync +vsync (45.0 kHz ez)
[    90.363] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    90.363] (II) fglrx(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x67.0   26.75  640 656 720 800  480 483 487 502 -hsync +vsync (33.4 kHz e)
[    90.363] (II) fglrx(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    90.363] (II) fglrx(0): Output DFP1 disconnected
[    90.363] (II) fglrx(0): Output DFP2 disconnected
[    90.363] (II) fglrx(0): Output DFP3 disconnected
[    90.363] (II) fglrx(0): Output DFP4 disconnected
[    90.363] (II) fglrx(0): Output DFP5 disconnected
[    90.363] (II) fglrx(0): Output DFP6 connected
[    90.363] (II) fglrx(0): Output DFP7 connected
[    90.363] (II) fglrx(0): Using exact sizes for initial modes
[    90.363] (II) fglrx(0): Output DFP6 using initial mode 1920x1080
[    90.363] (II) fglrx(0): Output DFP7 using initial mode 1920x1080
[    90.363] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    90.363] (II) fglrx(0): DPI set to (96, 96)
[    90.363] (II) fglrx(0): Eyefinity capable adapter detected.
[    90.363] (II) fglrx(0): Adapter AMD Radeon R9 200 Series has 6 configurable heads and 2 displays connected.
[    90.363] (==) fglrx(0):  PseudoColor visuals disabled
[    90.363] (II) Loading sub module "ramdac"
[    90.363] (II) LoadModule: "ramdac"
[    90.363] (II) Module "ramdac" already built-in
[    90.363] (==) fglrx(0): NoDRI = NO
[    90.363] (==) fglrx(0): Capabilities: 0x00000000
[    90.363] (==) fglrx(0): CapabilitiesEx: 0x00000000
[    90.363] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[    90.363] (==) fglrx(0): UseFastTLS=0
[    90.363] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[    90.363] (--) Depth 24 pixmap format is 32 bpp
[    90.364] (II) fglrx(0): doing swlDriScreenInit
[    90.364] (II) fglrx(0): swlDriScreenInit for fglrx driver
[    90.364] ukiDynamicMajor: found major device number 246
[    90.364] ukiDynamicMajor: found major device number 246
[    90.364] ukiDynamicMajor: found major device number 246
[    90.364] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.364] ukiOpenDevice: node name is /dev/ati/card0
[    90.364] ukiOpenDevice: open result is 13, (OK)
[    90.364] ukiOpenByBusid: ukiOpenMinor returns 13
[    90.364] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.364] (II) fglrx(0): [uki] DRM interface version 1.0
[    90.364] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[    90.364] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
[    90.364] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7fd9e0e53000
[    90.364] (II) fglrx(0): [uki] framebuffer handle = 0x3000
[    90.364] (II) fglrx(0): [uki] added 1 reserved context for kernel
[    90.364] (II) fglrx(0): swlDriScreenInit done
[    90.364] (II) fglrx(0): Kernel Module Version Information:
[    90.364] (II) fglrx(0):     Name: fglrx
[    90.364] (II) fglrx(0):     Version: 15.30.3
[    90.364] (II) fglrx(0):     Date: Dec 17 2015
[    90.364] (II) fglrx(0):     Desc: AMD FireGL DRM kernel module
[    90.364] (II) fglrx(0): Kernel Module version matches driver.
[    90.364] (II) fglrx(0): Kernel Module Build Time Information:
[    90.364] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        4.3.3-2-ARCH
[    90.364] (II) fglrx(0):     Build-Kernel MODVERSIONS:        yes
[    90.364] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[    90.364] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[    90.364] (II) fglrx(0): [uki] register handle = 0x00004000
[    90.366] (II) fglrx(0): DRI initialization successfull
[    90.367] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x010e0000
[    90.368] (==) fglrx(0): Backing store enabled
[    90.368] (**) fglrx(0): DPMS enabled
[    90.368] (II) fglrx(0): Initialized in-driver Xinerama extension
[    90.368] (**) fglrx(0): Textured Video is enabled.
[    90.368] (II) LoadModule: "glesx"
[    90.368] (II) Loading /usr/lib/xorg/modules/glesx.so
[    90.388] (II) Module glesx: vendor="X.Org Foundation"
[    90.388] 	compiled for 1.4.99.906, module version = 1.0.0
[    90.388] (II) fglrx(0): GLESX enableFlags = 8784
[    90.388] (II) fglrx(0): GLESX is enabled
[    90.388] (II) LoadModule: "amdxmm"
[    90.388] (II) Loading /usr/lib/xorg/modules/amdxmm.so
[    90.390] (II) Module amdxmm: vendor="X.Org Foundation"
[    90.390] 	compiled for 1.4.99.906, module version = 2.0.0
[    90.543] (II) fglrx(0): Enable composite support successfully
[    90.543] (WW) fglrx(0): Option "VendorName" is not used
[    90.543] (WW) fglrx(0): Option "ModelName" is not used
[    90.543] (II) fglrx(0): X context handle = 0x1
[    90.543] (II) fglrx(0): [DRI] installation complete
[    90.543] (==) fglrx(0): Silken mouse enabled
[    90.544] (==) fglrx(0): Using HW cursor of display infrastructure!
[    90.544] (II) fglrx(0): LPT is disabled by configure option
[    90.544] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    90.598] (II) fglrx(0): Disable Cursor Cache
[    90.645] (--) RandR disabled
[    90.648] ukiDynamicMajor: found major device number 246
[    90.648] ukiDynamicMajor: found major device number 246
[    90.648] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.648] ukiOpenDevice: node name is /dev/ati/card0
[    90.648] ukiOpenDevice: open result is 14, (OK)
[    90.648] ukiOpenByBusid: ukiOpenMinor returns 14
[    90.648] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.648] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[    90.676] ukiDynamicMajor: found major device number 246
[    90.676] ukiDynamicMajor: found major device number 246
[    90.676] ukiDynamicMajor: found major device number 246
[    90.676] ukiOpenDevice: node name is /dev/ati/card0
[    90.676] ukiOpenDevice: open result is 15, (OK)
[    90.676] ukiGetBusid returned 'PCI:1:0:0'
[    90.676] ukiOpenDevice: node name is /dev/ati/card1
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card2
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card3
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card4
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card5
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card6
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card7
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card8
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card9
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card10
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card11
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card12
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card13
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card14
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiOpenDevice: node name is /dev/ati/card15
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: open result is -1, (No such device)
[    90.676] ukiOpenDevice: Open failed
[    90.676] ukiDynamicMajor: found major device number 246
[    90.676] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.676] ukiOpenDevice: node name is /dev/ati/card0
[    90.676] ukiOpenDevice: open result is 15, (OK)
[    90.676] ukiOpenByBusid: ukiOpenMinor returns 15
[    90.676] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.766] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[    90.767] ukiDynamicMajor: found major device number 246
[    90.767] ukiDynamicMajor: found major device number 246
[    90.767] ukiDynamicMajor: found major device number 246
[    90.767] ukiOpenDevice: node name is /dev/ati/card0
[    90.767] ukiOpenDevice: open result is 16, (OK)
[    90.767] ukiGetBusid returned 'PCI:1:0:0'
[    90.767] ukiOpenDevice: node name is /dev/ati/card1
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card2
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card3
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card4
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card5
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card6
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card7
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card8
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card9
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card10
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card11
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card12
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card13
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card14
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiOpenDevice: node name is /dev/ati/card15
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: open result is -1, (No such device)
[    90.767] ukiOpenDevice: Open failed
[    90.767] ukiDynamicMajor: found major device number 246
[    90.767] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    90.767] ukiOpenDevice: node name is /dev/ati/card0
[    90.767] ukiOpenDevice: open result is 16, (OK)
[    90.767] ukiOpenByBusid: ukiOpenMinor returns 16
[    90.767] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    90.790] (II) fglrx(0): OverDrive6 Detected!
[    90.793] (II) fglrx(0): Setting screen physical size to 508 x 285
[    90.829] (II) config/udev: Adding input device Power Button (/dev/input/event7)
[    90.829] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    90.829] (II) LoadModule: "evdev"
[    90.829] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    90.831] (II) Module evdev: vendor="X.Org Foundation"
[    90.831] 	compiled for 1.17.4, module version = 2.10.0
[    90.831] 	Module class: X.Org XInput Driver
[    90.831] 	ABI class: X.Org XInput driver, version 21.1
[    90.831] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 17 paused 0
[    90.831] (II) Using input driver 'evdev' for 'Power Button'
[    90.831] (**) Power Button: always reports core events
[    90.831] (**) evdev: Power Button: Device: "/dev/input/event7"
[    90.831] (--) evdev: Power Button: Vendor 0 Product 0x1
[    90.831] (--) evdev: Power Button: Found keys
[    90.831] (II) evdev: Power Button: Configuring as keyboard
[    90.831] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input9/event7"
[    90.831] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    90.831] (**) Option "xkb_rules" "evdev"
[    90.831] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[    90.831] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    90.832] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 18 paused 0
[    90.832] (II) Using input driver 'evdev' for 'Power Button'
[    90.832] (**) Power Button: always reports core events
[    90.832] (**) evdev: Power Button: Device: "/dev/input/event5"
[    90.832] (--) evdev: Power Button: Vendor 0 Product 0x1
[    90.832] (--) evdev: Power Button: Found keys
[    90.832] (II) evdev: Power Button: Configuring as keyboard
[    90.832] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input7/event5"
[    90.832] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    90.832] (**) Option "xkb_rules" "evdev"
[    90.832] (II) config/udev: Adding input device Sleep Button (/dev/input/event6)
[    90.832] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    90.832] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 19 paused 0
[    90.832] (II) Using input driver 'evdev' for 'Sleep Button'
[    90.832] (**) Sleep Button: always reports core events
[    90.832] (**) evdev: Sleep Button: Device: "/dev/input/event6"
[    90.832] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    90.832] (--) evdev: Sleep Button: Found keys
[    90.832] (II) evdev: Sleep Button: Configuring as keyboard
[    90.832] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input8/event6"
[    90.832] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    90.832] (**) Option "xkb_rules" "evdev"
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event14)
[    90.833] (II) No input driver specified, ignoring this device.
[    90.833] (II) This device may have been added with another device file.
[    90.833] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event2)
[    90.833] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev pointer catchall"
[    90.886] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 20 paused 0
[    90.886] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    90.886] (**) Razer Razer DeathAdder 2013: always reports core events
[    90.886] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event2"
[    90.886] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    90.886] (--) evdev: Razer Razer DeathAdder 2013: Found 9 mouse buttons
[    90.886] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    90.886] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    90.886] (--) evdev: Razer Razer DeathAdder 2013: Found x and y relative axes
[    90.886] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    90.886] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    90.886] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    90.886] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    90.886] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2.4/3-2.4:1.0/0003:1532:0037.0004/input/input4/event2"
[    90.886] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: MOUSE, id 9)
[    90.886] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    90.886] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    90.886] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    90.886] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    90.886] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    90.887] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/mouse0)
[    90.887] (II) No input driver specified, ignoring this device.
[    90.887] (II) This device may have been added with another device file.
[    90.887] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event3)
[    90.887] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    90.887] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 21 paused 0
[    90.887] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    90.887] (**) Razer Razer DeathAdder 2013: always reports core events
[    90.887] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event3"
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found 1 mouse buttons
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    90.887] (II) evdev: Razer Razer DeathAdder 2013: Forcing relative x/y axes to exist.
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found absolute axes
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found absolute multitouch axes
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Fake MT device detected
[    90.887] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    90.887] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    90.887] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    90.887] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    90.887] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    90.887] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    90.887] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2.4/3-2.4:1.1/0003:1532:0037.0005/input/input5/event3"
[    90.887] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 10)
[    90.887] (**) Option "xkb_rules" "evdev"
[    90.888] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    90.888] (WW) evdev: Razer Razer DeathAdder 2013: ignoring absolute axes.
[    90.888] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    90.888] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    90.888] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    90.888] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    90.888] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event4)
[    90.888] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    90.888] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 22 paused 0
[    90.888] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    90.888] (**) Razer Razer DeathAdder 2013: always reports core events
[    90.888] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event4"
[    90.888] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    90.888] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    90.888] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    90.888] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2.4/3-2.4:1.2/0003:1532:0037.0006/input/input6/event4"
[    90.888] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 11)
[    90.888] (**) Option "xkb_rules" "evdev"
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event15)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event16)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event17)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event18)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event19)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event20)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event21)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.889] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event22)
[    90.889] (II) No input driver specified, ignoring this device.
[    90.889] (II) This device may have been added with another device file.
[    90.890] (II) config/udev: Adding input device USB Keyboard (/dev/input/event0)
[    90.890] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    90.890] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 23 paused 0
[    90.890] (II) Using input driver 'evdev' for 'USB Keyboard'
[    90.890] (**) USB Keyboard: always reports core events
[    90.890] (**) evdev: USB Keyboard: Device: "/dev/input/event0"
[    90.890] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x183
[    90.890] (--) evdev: USB Keyboard: Found keys
[    90.890] (II) evdev: USB Keyboard: Configuring as keyboard
[    90.890] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-1/5-1:1.0/0003:04D9:0183.0001/input/input2/event0"
[    90.890] (II) XINPUT: Adding extended input device "USB Keyboard" (type: KEYBOARD, id 12)
[    90.890] (**) Option "xkb_rules" "evdev"
[    90.891] (II) config/udev: Adding input device USB Keyboard (/dev/input/event1)
[    90.891] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    90.891] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 24 paused 0
[    90.891] (II) Using input driver 'evdev' for 'USB Keyboard'
[    90.891] (**) USB Keyboard: always reports core events
[    90.891] (**) evdev: USB Keyboard: Device: "/dev/input/event1"
[    90.891] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x183
[    90.891] (--) evdev: USB Keyboard: Found keys
[    90.891] (II) evdev: USB Keyboard: Configuring as keyboard
[    90.891] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:06:00.0/usb5/5-1/5-1:1.2/0003:04D9:0183.0003/input/input3/event1"
[    90.891] (II) XINPUT: Adding extended input device "USB Keyboard" (type: KEYBOARD, id 13)
[    90.891] (**) Option "xkb_rules" "evdev"
[    90.891] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[    90.891] (II) No input driver specified, ignoring this device.
[    90.891] (II) This device may have been added with another device file.
[    90.895] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[    91.031] (II) evdev: USB Keyboard: Close
[    91.031] (II) UnloadModule: "evdev"
[    91.031] (II) systemd-logind: releasing fd for 13:65
[    91.056] (II) evdev: USB Keyboard: Close
[    91.056] (II) UnloadModule: "evdev"
[    91.056] (II) systemd-logind: releasing fd for 13:64
[    91.083] (II) evdev: Razer Razer DeathAdder 2013: Close
[    91.083] (II) UnloadModule: "evdev"
[    91.083] (II) systemd-logind: releasing fd for 13:68
[    91.110] (II) evdev: Razer Razer DeathAdder 2013: Close
[    91.110] (II) UnloadModule: "evdev"
[    91.110] (II) systemd-logind: releasing fd for 13:67
[    91.136] (II) evdev: Razer Razer DeathAdder 2013: Close
[    91.136] (II) UnloadModule: "evdev"
[    91.136] (II) systemd-logind: releasing fd for 13:66
[    91.163] (II) evdev: Sleep Button: Close
[    91.163] (II) UnloadModule: "evdev"
[    91.163] (II) systemd-logind: releasing fd for 13:70
[    91.176] (II) evdev: Power Button: Close
[    91.176] (II) UnloadModule: "evdev"
[    91.176] (II) systemd-logind: releasing fd for 13:69
[    91.190] (II) evdev: Power Button: Close
[    91.190] (II) UnloadModule: "evdev"
[    91.190] (II) systemd-logind: releasing fd for 13:71
[    91.203] (II) fglrx(0): Shutdown CMMQS
[    91.205] (II) fglrx(0): [uki] removed 1 reserved context for kernel
[    91.205] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x2000 at 0x7fd9e0e53000
[    91.309] (II) Server terminated successfully (0). Closing log file.

Offline

#19 2016-06-15 22:48:11

vmassuchetto
Member
Registered: 2015-03-17
Posts: 3

Re: Problems installing AMD catalyst drivers

Had to downgrade to xorg 1.14 for Radeon 6470M to work on Catalyst 15.12.

Offline

Board footer

Powered by FluxBB