LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Laptop and Netbook (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/)
-   -   Xorg problem on Asus Aspire 7552G - Slackware (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/xorg-problem-on-asus-aspire-7552g-slackware-4175538275/)

BearlyThere 03-30-2015 03:48 PM

Xorg problem on Asus Aspire 7552G - Slackware
 
I'm trying to install Slackware x86_64 on my Asus laptop. The laptop has a Radeon 6650M ATI graphics card.

Slackware has installed and I can run the CLI just fine but I cannot figure out how to get XWin running. Before we get into the specifics of my Xorg log outputs let me bring you up to speed on what I've done up till now.
  • Fresh install of Slackware 14.1 x86_64
  • Added user
  • Set up slackpkg and slackpkg+
  • Watched for updated package
  • Switched to generic kernel
  • Switched to Grub from LILO
  • Installed multilib support
  • Compiled Catalyst drivers 14.12 from AMD website
  • Installed fglrx driver

Everything seems to have run smoothly up until the fglrx driver installation and it has been downhill since then.

I can't tell if I'm having driver problems or font problems. FGL-GLXgears won't run but it looks like the system is using the correct driver. The Xorg log file seems to indicate that my font files are not loading but my fc-cache command completes successfully. Right now I don't have enough experience to be able to tease out the issue and all other troubleshooting guides I've found seem to fix the problem by addressing font or driver loading issues.

Thanks in advance for any help you can provide. I've been working on this for days getting no where.

Log files follow:
Code:

CMD: lsmod | grep fglrx
fglrx              10928590  0
amd_iommu_v2            7116  1 fglrx
agpgart                27267  1 fglrx
button                  4696  1 fglrx

CMD: fglrxinfo
Error: unable to open display (null)

CMD: lspci | grep VGA
02:00.0 VGA compatible controller: AMD/ATI [Advanced Micro Devices, Inc.] Whistler [Radeon HD 6600M/6700M/7600M Series]

CMD: fc-cache -fv
/usr/share/fonts/OTF: caching, new cache contents: 23 fonts, 0 dirs
/usr/share/fonts/TTF: caching, new cache contents: 114 fonts, 0 dirs
/usr/share/fonts/Type1: caching, new cache contents: 64 fonts, 0 dirs
/usr/share/fonts/Speedo: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/cyrillic: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/misc: caching, new cache contents: 95 fonts, 0 dirs
/root/.local/share/fonts: skipping, no such directory
/root/.fonts: skipping, no such directory
/var/cache/fontconfig: cleaning cache directory
/root/.cache/fontconfig: not cleaning non-existent cache directory
/root/.fontconfig: not cleaning non-existent cache directory
fc-cache: succeeded


business_kid 03-31-2015 11:30 AM

Are you starting X as root? That generally is not a good thing.

To check if your fglrx loaded successfully, try ls -l /usr/lib64/libGL*
Here's mine (All open source)
Code:

bash-4.3$ ls -l /usr/lib/libGL*
-rwxr-xr-x 1 root root  1311 Aug 25  2014 /usr/lib/libGL.la
lrwxrwxrwx 1 root root    14 Oct 10 19:51 /usr/lib/libGL.so -> libGL.so.1.2.0
lrwxrwxrwx 1 root root    14 Oct 10 19:51 /usr/lib/libGL.so.1 -> libGL.so.1.2.0
-rwxr-xr-x 1 root root 389500 Aug 25  2014 /usr/lib/libGL.so.1.2.0
-rwxr-xr-x 1 root root  1017 Aug 25  2014 /usr/lib/libGLESv1_CM.la
lrwxrwxrwx 1 root root    21 Oct 10 19:51 /usr/lib/libGLESv1_CM.so -> libGLESv1_CM.so.1.1.0
lrwxrwxrwx 1 root root    21 Oct 10 19:51 /usr/lib/libGLESv1_CM.so.1 -> libGLESv1_CM.so.1.1.0
-rwxr-xr-x 1 root root  12048 Aug 25  2014 /usr/lib/libGLESv1_CM.so.1.1.0
-rwxr-xr-x 1 root root    999 Aug 25  2014 /usr/lib/libGLESv2.la
lrwxrwxrwx 1 root root    18 Oct 10 19:51 /usr/lib/libGLESv2.so -> libGLESv2.so.2.0.0
lrwxrwxrwx 1 root root    18 Oct 10 19:51 /usr/lib/libGLESv2.so.2 -> libGLESv2.so.2.0.0
-rwxr-xr-x 1 root root  17760 Aug 25  2014 /usr/lib/libGLESv2.so.2.0.0
lrwxrwxrwx 1 root root    17 Oct 10 19:50 /usr/lib/libGLEW.so -> libGLEW.so.1.10.0
lrwxrwxrwx 1 root root    17 Oct 10 19:50 /usr/lib/libGLEW.so.1.10 -> libGLEW.so.1.10.0
-rwxr-xr-x 1 root root 435904 Jul 15  2014 /usr/lib/libGLEW.so.1.10.0
-rwxr-xr-x 1 root root  1215 Feb 21  2013 /usr/lib/libGLU.la
lrwxrwxrwx 1 root root    15 Oct 10 19:50 /usr/lib/libGLU.so -> libGLU.so.1.3.1
lrwxrwxrwx 1 root root    15 Oct 10 19:50 /usr/lib/libGLU.so.1 -> libGLU.so.1.3.1
-rwxr-xr-x 1 root root 552632 Feb 21  2013 /usr/lib/libGLU.so.1.3.1

If you have fglrx installed, some of those (libGL.so. and iirc 2 others) should have been overwritten, so the symlinks point to a libGL.so.* with a Catalyst version number. So libGL.so.1.2.0 will still be there, but the symlinks won't point to it.

The catalyst thing takes some options last seen - /uninstall I think is one. Try /? running the binary blob with /? & --help. And post the /var/log/Xorg.0 log video stuff.

BearlyThere 03-31-2015 12:22 PM

Xorg.0.log:
Code:

[  5581.367]
X.Org X Server 1.14.3
Release Date: 2013-09-12
[  5581.367] X Protocol Version 11, Revision 0
[  5581.368] Build Operating System: Slackware 14.2 Slackware Linux Project
[  5581.368] Current Operating System: Linux medicinecrow 3.10.17 #1 SMP Fri Feb 14 16:39:21 CST 2014 x86_64
[  5581.368] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-generic-3.10.17 root=UUID=b1d1b956-c47f-42b8-8a5e-7e3516adcdd4 ro
[  5581.368] Build Date: 20 December 2014  08:33:38PM
[  5581.369] 
[  5581.369] Current version of pixman: 0.30.2
[  5581.369]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  5581.369] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5581.371] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 30 13:28:29 2015
[  5581.371] (==) Using config file: "/etc/X11/xorg.conf"
[  5581.372] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  5581.372] (==) ServerLayout "X.org Configured"
[  5581.372] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[  5581.372] (**) |  |-->Monitor "aticonfig-Monitor[0]-0"
[  5581.373] (**) |  |-->Device "aticonfig-Device[0]-0"
[  5581.373] (**) |-->Input Device "Mouse0"
[  5581.373] (**) |-->Input Device "Keyboard0"
[  5581.373] (==) Automatically adding devices
[  5581.373] (==) Automatically enabling devices
[  5581.373] (==) Automatically adding GPU devices
[  5581.373] (WW) The directory "/usr/share/fonts/local" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/local" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (**) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic
[  5581.373] (**) ModulePath set to "/usr/lib64/xorg/modules"
[  5581.373] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  5581.373] (WW) Disabling Mouse0
[  5581.373] (WW) Disabling Keyboard0
[  5581.373] (II) Loader magic: 0x7f6d40
[  5581.373] (II) Module ABI versions:
[  5581.373]        X.Org ANSI C Emulation: 0.4
[  5581.373]        X.Org Video Driver: 14.1
[  5581.373]        X.Org XInput driver : 19.1
[  5581.373]        X.Org Server Extension : 7.0
[  5581.374] (--) PCI:*(0:2:0:0) 1002:6741:1025:0442 rev 0, Mem @ 0xc0000000/268435456, 0xd0000000/131072, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
[  5581.374] (II) Open ACPI successful (/var/run/acpid.socket)
[  5581.374] Initializing built-in extension Generic Event Extension
[  5581.375] Initializing built-in extension SHAPE
[  5581.375] Initializing built-in extension MIT-SHM
[  5581.375] Initializing built-in extension XInputExtension
[  5581.375] Initializing built-in extension XTEST
[  5581.375] Initializing built-in extension BIG-REQUESTS
[  5581.375] Initializing built-in extension SYNC
[  5581.376] Initializing built-in extension XKEYBOARD
[  5581.376] Initializing built-in extension XC-MISC
[  5581.376] Initializing built-in extension XINERAMA
[  5581.376] Initializing built-in extension XFIXES
[  5581.376] Initializing built-in extension RENDER
[  5581.377] Initializing built-in extension RANDR
[  5581.377] Initializing built-in extension COMPOSITE
[  5581.377] Initializing built-in extension DAMAGE
[  5581.377] Initializing built-in extension MIT-SCREEN-SAVER
[  5581.377] Initializing built-in extension DOUBLE-BUFFER
[  5581.377] Initializing built-in extension RECORD
[  5581.378] Initializing built-in extension DPMS
[  5581.378] Initializing built-in extension X-Resource
[  5581.378] Initializing built-in extension XVideo
[  5581.378] Initializing built-in extension XVideo-MotionCompensation
[  5581.378] Initializing built-in extension XFree86-VidModeExtension
[  5581.379] Initializing built-in extension XFree86-DGA
[  5581.379] Initializing built-in extension XFree86-DRI
[  5581.379] Initializing built-in extension DRI2
[  5581.379] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  5581.379] (II) LoadModule: "dri"
[  5581.379] (II) Module "dri" already built-in
[  5581.379] (II) LoadModule: "glx"
[  5581.380] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[  5581.380] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[  5581.380]        compiled for 6.9.0, module version = 1.0.0
[  5581.381] Loading extension GLX
[  5581.381] (II) LoadModule: "fglrx"
[  5581.381] (II) Loading /usr/lib64/xorg/modules/drivers/fglrx_drv.so
[  5581.424] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[  5581.424]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.424]        Module class: X.Org Video Driver
[  5581.425] (II) Loading sub module "fglrxdrm"
[  5581.425] (II) LoadModule: "fglrxdrm"
[  5581.425] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[  5581.425] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[  5581.425]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.425] (II) AMD Proprietary Linux Driver Version Identifier:14.50.2
[  5581.425] (II) AMD Proprietary Linux Driver Release Identifier: 14.501.1003                         
[  5581.425] (II) AMD Proprietary Linux Driver Build Date: Nov 20 2014 21:22:54
[  5581.425] (--) using VT number 7

[  5581.429] (WW) Falling back to old probe method for fglrx
[  5581.451] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[  5581.455] ukiDynamicMajor: found major device number 247
[  5581.455] ukiDynamicMajor: found major device number 247
[  5581.455] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5581.455] ukiOpenDevice: node name is /dev/ati/card0
[  5581.455] ukiOpenDevice: open result is 12, (OK)
[  5581.455] ukiOpenByBusid: ukiOpenMinor returns 12
[  5581.455] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5581.663] (--) Chipset Supported AMD Graphics Processor (0x6741) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:17:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:3) found
[  5581.664] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:4) found
[  5581.664] (WW) fglrx: No matching Device section for instance (BusID PCI:0@2:0:1) found
[  5581.664] (II) fglrx(0): pEnt->device->identifier=0x23f9490
[  5581.664] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
[  5581.664] (II) fglrx(0): FB driver is not enabled
[  5581.664] (II) Loading sub module "vgahw"
[  5581.664] (II) LoadModule: "vgahw"
[  5581.664] (II) Loading /usr/lib64/xorg/modules/libvgahw.so
[  5581.664] (II) Module vgahw: vendor="X.Org Foundation"
[  5581.664]        compiled for 1.14.3, module version = 0.1.0
[  5581.664]        ABI class: X.Org Video Driver, version 14.1
[  5581.665] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[  5581.665] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[  5581.665] (==) fglrx(0): Default visual is TrueColor
[  5581.665] (**) fglrx(0): Option "DPMS" "true"
[  5581.665] (==) fglrx(0): RGB weight 888
[  5581.665] (II) fglrx(0): Using 8 bits per RGB
[  5581.665] (==) fglrx(0): Buffer Tiling is ON
[  5581.665] (II) Loading sub module "fglrxdrm"
[  5581.665] (II) LoadModule: "fglrxdrm"
[  5581.665] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[  5581.665] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[  5581.665]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.670] ukiDynamicMajor: found major device number 247
[  5581.670] ukiDynamicMajor: found major device number 247
[  5581.670] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5581.670] ukiOpenDevice: node name is /dev/ati/card0
[  5581.670] ukiOpenDevice: open result is 14, (OK)
[  5581.670] ukiOpenByBusid: ukiOpenMinor returns 14
[  5581.670] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5581.670] (**) fglrx(0): NoAccel = NO
[  5581.670] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[  5581.670] (--) fglrx(0): Chipset: "AMD Radeon 6600M and 6700M Series" (Chipset = 0x6741)
[  5581.670] (--) fglrx(0): (PciSubVendor = 0x1025, PciSubDevice = 0x0442)
[  5581.670] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[  5581.670] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
[  5581.670] (--) fglrx(0): MMIO registers at 0xd0000000
[  5581.670] (--) fglrx(0): I/O port at 0x00009000
[  5581.670] (==) fglrx(0): ROM-BIOS at 0x000c0000
[  5581.670] (II) fglrx(0): ATIF platform detected
[  5581.671] (II) fglrx(0): AC Adapter is used
[  5581.671] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[  5581.859] (II) Loading sub module "vbe"
[  5581.859] (II) LoadModule: "vbe"
[  5581.859] (II) Loading /usr/lib64/xorg/modules/libvbe.so
[  5581.859] (II) Module vbe: vendor="X.Org Foundation"
[  5581.859]        compiled for 1.14.3, module version = 1.1.0
[  5581.859]        ABI class: X.Org Video Driver, version 14.1
[  5581.860] (II) fglrx(0): VESA BIOS detected
[  5581.860] (II) fglrx(0): VESA VBE Version 3.0
[  5581.860] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[  5581.860] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
[  5581.860] (II) fglrx(0): VESA VBE OEM Software Rev: 13.8
[  5581.860] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, AMD Technologies Inc.
[  5581.860] (II) fglrx(0): VESA VBE OEM Product: WHISTLER
[  5581.860] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[  5581.860] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[  5581.860] (--) fglrx(0): Video RAM: 1048576 kByte, Type: DDR3
[  5581.860] (II) fglrx(0): PCIE card detected
[  5581.860] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[  5581.860] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[  5581.860] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x40000000)
[  5581.860] (II) fglrx(0): RandR 1.2 support is enabled!
[  5581.860] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[  5581.860] (II) Loading sub module "fb"
[  5581.860] (II) LoadModule: "fb"
[  5581.861] (II) Loading /usr/lib64/xorg/modules/libfb.so
[  5581.861] (II) Module fb: vendor="X.Org Foundation"
[  5581.861]        compiled for 1.14.3, module version = 1.0.0
[  5581.861]        ABI class: X.Org ANSI C Emulation, version 0.4
[  5581.861] (II) fglrx(0): EDID Management option: EDID Management is enabled
[  5581.861] (II) Loading sub module "ddc"
[  5581.861] (II) LoadModule: "ddc"
[  5581.861] (II) Module "ddc" already built-in
[  5581.943] (II) fglrx(0): Output LVDS using monitor section aticonfig-Monitor[0]-0
[  5581.943] (II) fglrx(0): Output DFP1 has no monitor section
[  5581.943] (II) fglrx(0): Output CRT1 has no monitor section
[  5581.943] (II) Loading sub module "ddc"
[  5581.943] (II) LoadModule: "ddc"
[  5581.943] (II) Module "ddc" already built-in
[  5581.943] (II) fglrx(0): Connected Display0: LVDS
[  5581.943] (II) fglrx(0): Display0 EDID data ---------------------------
[  5581.943] (II) fglrx(0): Manufacturer: SEC  Model: 3051  Serial#: 0
[  5581.943] (II) fglrx(0): Year: 2008  Week: 0
[  5581.943] (II) fglrx(0): EDID Version: 1.3
[  5581.943] (II) fglrx(0): Digital Display Input
[  5581.943] (II) fglrx(0): Max Image Size [cm]: horiz.: 39  vert.: 23
[  5581.943] (II) fglrx(0): Gamma: 2.20
[  5581.943] (II) fglrx(0): No DPMS capabilities specified
[  5581.943] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  5581.943] (II) fglrx(0): First detailed timing is preferred mode
[  5581.943] (II) fglrx(0): redX: 0.600 redY: 0.340  greenX: 0.310 greenY: 0.560
[  5581.943] (II) fglrx(0): blueX: 0.150 blueY: 0.130  whiteX: 0.313 whiteY: 0.329
[  5581.943] (II) fglrx(0): Manufacturer's mask: 0
[  5581.943] (II) fglrx(0): Supported detailed timing:
[  5581.943] (II) fglrx(0): clock: 107.8 MHz  Image Size:  398 x 232 mm
[  5581.943] (II) fglrx(0): h_active: 1600  h_sync: 1648  h_sync_end 1680 h_blank_end 1892 h_border: 0
[  5581.943] (II) fglrx(0): v_active: 900  v_sync: 902  v_sync_end 908 v_blanking: 950 v_border: 0
[  5581.943] (II) fglrx(0): Unknown vendor-specific block f
[  5581.943] (II) fglrx(0):  SAMSUNG
[  5581.943] (II) fglrx(0):  173KT01-A01
[  5581.943] (II) fglrx(0): EDID (in hex):
[  5581.943] (II) fglrx(0):        00ffffffffffff004ca3513000000000
[  5581.943] (II) fglrx(0):        00120103802717780a859599574f8f26
[  5581.943] (II) fglrx(0):        21505400000001010101010101010101
[  5581.943] (II) fglrx(0):        010101010101202a4024618432303020
[  5581.943] (II) fglrx(0):        26008ee8100000190000000f00000000
[  5581.943] (II) fglrx(0):        00000000001eb4027400000000fe0053
[  5581.943] (II) fglrx(0):        414d53554e470a2020202020000000fe
[  5581.943] (II) fglrx(0):        003137334b5430312d4130310a2000a4
[  5581.943] (II) fglrx(0): End of Display0 EDID data --------------------
[  5581.943] (II) fglrx(0): Dynamic Surface Resizing Enabled
[  5581.944] (II) fglrx(0): EDID for output LVDS
[  5581.944] (II) fglrx(0): Manufacturer: SEC  Model: 3051  Serial#: 0
[  5581.944] (II) fglrx(0): Year: 2008  Week: 0
[  5581.944] (II) fglrx(0): EDID Version: 1.3
[  5581.944] (II) fglrx(0): Digital Display Input
[  5581.944] (II) fglrx(0): Max Image Size [cm]: horiz.: 39  vert.: 23
[  5581.944] (II) fglrx(0): Gamma: 2.20
[  5581.944] (II) fglrx(0): No DPMS capabilities specified
[  5581.944] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  5581.944] (II) fglrx(0): First detailed timing is preferred mode
[  5581.944] (II) fglrx(0): redX: 0.600 redY: 0.340  greenX: 0.310 greenY: 0.560
[  5581.944] (II) fglrx(0): blueX: 0.150 blueY: 0.130  whiteX: 0.313 whiteY: 0.329
[  5581.944] (II) fglrx(0): Manufacturer's mask: 0
[  5581.944] (II) fglrx(0): Supported detailed timing:
[  5581.944] (II) fglrx(0): clock: 107.8 MHz  Image Size:  398 x 232 mm
[  5581.944] (II) fglrx(0): h_active: 1600  h_sync: 1648  h_sync_end 1680 h_blank_end 1892 h_border: 0
[  5581.944] (II) fglrx(0): v_active: 900  v_sync: 902  v_sync_end 908 v_blanking: 950 v_border: 0
[  5581.944] (II) fglrx(0): Unknown vendor-specific block f
[  5581.944] (II) fglrx(0):  SAMSUNG
[  5581.944] (II) fglrx(0):  173KT01-A01
[  5581.944] (II) fglrx(0): EDID (in hex):
[  5581.944] (II) fglrx(0):        00ffffffffffff004ca3513000000000
[  5581.944] (II) fglrx(0):        00120103802717780a859599574f8f26
[  5581.944] (II) fglrx(0):        21505400000001010101010101010101
[  5581.944] (II) fglrx(0):        010101010101202a4024618432303020
[  5581.944] (II) fglrx(0):        26008ee8100000190000000f00000000
[  5581.944] (II) fglrx(0):        00000000001eb4027400000000fe0053
[  5581.944] (II) fglrx(0):        414d53554e470a2020202020000000fe
[  5581.944] (II) fglrx(0):        003137334b5430312d4130310a2000a4
[  5581.944] (II) fglrx(0): EDID vendor "SEC", prod id 12369
[  5581.944] (II) fglrx(0): Printing DDC gathered Modelines:
[  5581.944] (II) fglrx(0): Modeline "1600x900"x0.0  107.84  1600 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz eP)
[  5581.944] (II) fglrx(0): Printing probed modes for output LVDS
[  5581.944] (II) fglrx(0): Modeline "1600x900"x60.0  107.84  1600 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz eP)
[  5581.944] (II) fglrx(0): Modeline "1440x900"x60.0  107.84  1440 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1280x768"x60.0  107.84  1280 1648 1680 1892  768 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1280x720"x60.0  107.84  1280 1648 1680 1892  720 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1024x768"x60.0  107.84  1024 1648 1680 1892  768 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1024x600"x60.0  107.84  1024 1648 1680 1892  600 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "800x600"x60.0  107.84  800 1648 1680 1892  600 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "800x480"x60.0  107.84  800 1648 1680 1892  480 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "640x480"x60.0  107.84  640 1648 1680 1892  480 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): EDID for output DFP1
[  5581.944] (II) fglrx(0): EDID for output CRT1
[  5581.944] (II) fglrx(0): Output LVDS connected
[  5581.944] (II) fglrx(0): Output DFP1 disconnected
[  5581.944] (II) fglrx(0): Output CRT1 disconnected
[  5581.944] (II) fglrx(0): Using exact sizes for initial modes
[  5581.944] (II) fglrx(0): Output LVDS using initial mode 1600x900
[  5581.944] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  5581.945] (II) fglrx(0): Display dimensions: (390, 230) mm
[  5581.945] (II) fglrx(0): DPI set to (104, 99)
[  5581.945] (II) fglrx(0): Eyefinity capable adapter detected.
[  5581.945] (II) fglrx(0): Adapter AMD Radeon 6600M and 6700M Series has 6 configurable heads and 1 displays connected.
[  5581.945] (==) fglrx(0):  PseudoColor visuals disabled


BearlyThere 03-31-2015 12:23 PM

The rest of Xorg:
Code:

[  5581.945] (II) Loading sub module "ramdac"
[  5581.945] (II) LoadModule: "ramdac"
[  5581.945] (II) Module "ramdac" already built-in
[  5581.945] (==) fglrx(0): NoDRI = NO
[  5581.945] (==) fglrx(0): Capabilities: 0x00000000
[  5581.945] (==) fglrx(0): CapabilitiesEx: 0x00000000
[  5581.945] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[  5581.945] (==) fglrx(0): UseFastTLS=0
[  5581.945] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[  5581.945] (--) Depth 24 pixmap format is 32 bpp
[  5581.945] Loading extension ATIFGLRXDRI
[  5581.945] (II) fglrx(0): doing swlDriScreenInit
[  5581.945] (II) fglrx(0): swlDriScreenInit for fglrx driver
[  5581.945] ukiDynamicMajor: found major device number 247
[  5581.945] ukiDynamicMajor: found major device number 247
[  5581.945] ukiDynamicMajor: found major device number 247
[  5581.945] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5581.945] ukiOpenDevice: node name is /dev/ati/card0
[  5581.945] ukiOpenDevice: open result is 15, (OK)
[  5581.945] ukiOpenByBusid: ukiOpenMinor returns 15
[  5581.945] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5581.945] (II) fglrx(0): [uki] DRM interface version 1.0
[  5581.945] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:2:0:0"
[  5581.945] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x41000
[  5581.946] (II) fglrx(0): [uki] mapped SAREA 0x41000 to 0x7f8f4542b000
[  5581.946] (II) fglrx(0): [uki] framebuffer handle = 0x42000
[  5581.946] (II) fglrx(0): [uki] added 1 reserved context for kernel
[  5581.946] (II) fglrx(0): swlDriScreenInit done
[  5581.946] (II) fglrx(0): Kernel Module Version Information:
[  5581.946] (II) fglrx(0):    Name: fglrx
[  5581.946] (II) fglrx(0):    Version: 14.50.2
[  5581.946] (II) fglrx(0):    Date: Nov 20 2014
[  5581.946] (II) fglrx(0):    Desc: AMD FireGL DRM kernel module
[  5581.946] (II) fglrx(0): Kernel Module version matches driver.
[  5581.946] (II) fglrx(0): Kernel Module Build Time Information:
[  5581.946] (II) fglrx(0):    Build-Kernel UTS_RELEASE:        3.10.17
[  5581.946] (II) fglrx(0):    Build-Kernel MODVERSIONS:        yes
[  5581.946] (II) fglrx(0):    Build-Kernel __SMP__:            yes
[  5581.946] (II) fglrx(0):    Build-Kernel PAGE_SIZE:          0x1000
[  5581.946] (II) fglrx(0): [uki] register handle = 0x00043000
[  5581.948] (II) fglrx(0): Display width adjusted to to 1664 due to alignment constraints
[  5581.948] (II) fglrx(0): DRI initialization successfull
[  5581.948] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x01110000
[  5581.948] (==) fglrx(0): Backing store disabled
[  5581.948] Loading extension FGLRXEXTENSION
[  5581.948] (**) fglrx(0): DPMS enabled
[  5581.949] (II) fglrx(0): Initialized in-driver Xinerama extension
[  5581.949] (**) fglrx(0): Textured Video is enabled.
[  5581.949] (II) LoadModule: "glesx"
[  5581.950] (II) Loading /usr/lib64/xorg/modules/glesx.so
[  5581.955] (II) Module glesx: vendor="X.Org Foundation"
[  5581.955]        compiled for 1.4.99.906, module version = 1.0.0
[  5581.955] Loading extension GLESX
[  5581.955] (II) fglrx(0): GLESX enableFlags = 8784
[  5581.955] (II) fglrx(0): GLESX is enabled
[  5581.955] (II) LoadModule: "amdxmm"
[  5581.956] (II) Loading /usr/lib64/xorg/modules/amdxmm.so
[  5581.956] (II) Module amdxmm: vendor="X.Org Foundation"
[  5581.956]        compiled for 1.4.99.906, module version = 2.0.0
[  5581.965] Loading extension AMDXVOPL
[  5581.965] Loading extension AMDXVBA
[  5581.966] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
[  5581.969] (II) fglrx(0): Enable composite support successfully
[  5581.969] (WW) fglrx(0): Option "VendorName" is not used
[  5581.969] (WW) fglrx(0): Option "ModelName" is not used
[  5581.969] (II) fglrx(0): X context handle = 0x2
[  5581.969] (II) fglrx(0): [DRI] installation complete
[  5581.971] (==) fglrx(0): Silken mouse enabled
[  5581.971] (==) fglrx(0): Using HW cursor of display infrastructure!
[  5581.971] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  5581.972] (II) fglrx(0): 'LVDS LCD' ConnectorType, abstracted as 'Panel'
[  5581.972] (II) fglrx(0): 'eDP LCD' ConnectorType, abstracted as 'Panel'
[  5582.411] (--) RandR disabled
[  5582.418] ukiDynamicMajor: found major device number 247
[  5582.418] ukiDynamicMajor: found major device number 247
[  5582.418] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5582.418] ukiOpenDevice: node name is /dev/ati/card0
[  5582.419] ukiOpenDevice: open result is 16, (OK)
[  5582.419] ukiOpenByBusid: ukiOpenMinor returns 16
[  5582.419] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5582.423] ukiDynamicMajor: found major device number 247
[  5582.423] ukiDynamicMajor: found major device number 247
[  5582.423] ukiDynamicMajor: found major device number 247
[  5582.423] ukiOpenDevice: node name is /dev/ati/card0
[  5582.423] ukiOpenDevice: open result is 17, (OK)
[  5582.423] ukiGetBusid returned 'PCI:2:0:0'
[  5582.423] ukiOpenDevice: node name is /dev/ati/card1
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card2
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card3
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card4
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card5
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card6
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card7
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card8
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card9
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card10
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card11
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card12
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.423] ukiOpenDevice: node name is /dev/ati/card13
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: open result is -1, (No such device)
[  5582.423] ukiOpenDevice: Open failed
[  5582.424] ukiOpenDevice: node name is /dev/ati/card14
[  5582.424] ukiOpenDevice: open result is -1, (No such device)
[  5582.424] ukiOpenDevice: open result is -1, (No such device)
[  5582.424] ukiOpenDevice: Open failed
[  5582.424] ukiOpenDevice: node name is /dev/ati/card15
[  5582.424] ukiOpenDevice: open result is -1, (No such device)
[  5582.424] ukiOpenDevice: open result is -1, (No such device)
[  5582.424] ukiOpenDevice: Open failed
[  5582.424] ukiDynamicMajor: found major device number 247
[  5582.424] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5582.424] ukiOpenDevice: node name is /dev/ati/card0
[  5582.424] ukiOpenDevice: open result is 17, (OK)
[  5582.424] ukiOpenByBusid: ukiOpenMinor returns 17
[  5582.424] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5582.489] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[  5582.490] ukiDynamicMajor: found major device number 247
[  5582.490] ukiDynamicMajor: found major device number 247
[  5582.490] ukiDynamicMajor: found major device number 247
[  5582.490] ukiOpenDevice: node name is /dev/ati/card0
[  5582.490] ukiOpenDevice: open result is 18, (OK)
[  5582.490] ukiGetBusid returned 'PCI:2:0:0'
[  5582.490] ukiOpenDevice: node name is /dev/ati/card1
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card2
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card3
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card4
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card5
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card6
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card7
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card8
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card9
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card10
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card11
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card12
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card13
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card14
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: open result is -1, (No such device)
[  5582.490] ukiOpenDevice: Open failed
[  5582.490] ukiOpenDevice: node name is /dev/ati/card15
[  5582.491] ukiOpenDevice: open result is -1, (No such device)
[  5582.491] ukiOpenDevice: open result is -1, (No such device)
[  5582.491] ukiOpenDevice: Open failed
[  5582.491] ukiDynamicMajor: found major device number 247
[  5582.491] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5582.491] ukiOpenDevice: node name is /dev/ati/card0
[  5582.491] ukiOpenDevice: open result is 18, (OK)
[  5582.491] ukiOpenByBusid: ukiOpenMinor returns 18
[  5582.491] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5582.516] (II) fglrx(0): Setting screen physical size to 423 x 238
[  5582.516] [dix] Could not init font path element /usr/share/fonts/TTF, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/OTF, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/Type1, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/misc, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/75dpi/:unscaled, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/100dpi/:unscaled, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/75dpi, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/100dpi, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/cyrillic, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/TTF, removing from list!
[  5582.516] [dix] Could not init font path element /usr/share/fonts/OTF, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/Type1, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/misc, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/75dpi/:unscaled, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/100dpi/:unscaled, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/75dpi, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/100dpi, removing from list!
[  5582.517] [dix] Could not init font path element /usr/share/fonts/cyrillic, removing from list!
[  5582.517] [dix] Could not init font path element built-ins, removing from list!
[  5582.517] (EE)
Fatal server error:
[  5582.517] (EE) could not open default font 'fixed'(EE)
[  5582.517] (EE)
Please consult the The X.Org Foundation support
        at http://wiki.x.org
 for help.
[  5582.517] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  5582.517] (EE)
[  5582.517] (II) AIGLX: Suspending AIGLX clients for VT switch
[  5582.517] (II) fglrx(0): Backup framebuffer data.
[  5582.519] (II) fglrx(0): Backup complete.
[  5582.522] (II) fglrx(0): Init Suspend Console
[  5582.963] (EE) Server terminated with error (1). Closing log file.


BearlyThere 03-31-2015 12:25 PM

For some reason the first part of Xorg.0.log didn't post the first time. Here it is:
Code:

[  5581.367]
X.Org X Server 1.14.3
Release Date: 2013-09-12
[  5581.367] X Protocol Version 11, Revision 0
[  5581.368] Build Operating System: Slackware 14.2 Slackware Linux Project
[  5581.368] Current Operating System: Linux medicinecrow 3.10.17 #1 SMP Fri Feb 14 16:39:21 CST 2014 x86_64
[  5581.368] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-generic-3.10.17 root=UUID=b1d1b956-c47f-42b8-8a5e-7e3516adcdd4 ro
[  5581.368] Build Date: 20 December 2014  08:33:38PM
[  5581.369] 
[  5581.369] Current version of pixman: 0.30.2
[  5581.369]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  5581.369] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5581.371] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 30 13:28:29 2015
[  5581.371] (==) Using config file: "/etc/X11/xorg.conf"
[  5581.372] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  5581.372] (==) ServerLayout "X.org Configured"
[  5581.372] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[  5581.372] (**) |  |-->Monitor "aticonfig-Monitor[0]-0"
[  5581.373] (**) |  |-->Device "aticonfig-Device[0]-0"
[  5581.373] (**) |-->Input Device "Mouse0"
[  5581.373] (**) |-->Input Device "Keyboard0"
[  5581.373] (==) Automatically adding devices
[  5581.373] (==) Automatically enabling devices
[  5581.373] (==) Automatically adding GPU devices
[  5581.373] (WW) The directory "/usr/share/fonts/local" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/local" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  5581.373]        Entry deleted from font path.
[  5581.373] (**) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic
[  5581.373] (**) ModulePath set to "/usr/lib64/xorg/modules"
[  5581.373] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  5581.373] (WW) Disabling Mouse0
[  5581.373] (WW) Disabling Keyboard0
[  5581.373] (II) Loader magic: 0x7f6d40
[  5581.373] (II) Module ABI versions:
[  5581.373]        X.Org ANSI C Emulation: 0.4
[  5581.373]        X.Org Video Driver: 14.1
[  5581.373]        X.Org XInput driver : 19.1
[  5581.373]        X.Org Server Extension : 7.0
[  5581.374] (--) PCI:*(0:2:0:0) 1002:6741:1025:0442 rev 0, Mem @ 0xc0000000/268435456, 0xd0000000/131072, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
[  5581.374] (II) Open ACPI successful (/var/run/acpid.socket)
[  5581.374] Initializing built-in extension Generic Event Extension
[  5581.375] Initializing built-in extension SHAPE
[  5581.375] Initializing built-in extension MIT-SHM
[  5581.375] Initializing built-in extension XInputExtension
[  5581.375] Initializing built-in extension XTEST
[  5581.375] Initializing built-in extension BIG-REQUESTS
[  5581.375] Initializing built-in extension SYNC
[  5581.376] Initializing built-in extension XKEYBOARD
[  5581.376] Initializing built-in extension XC-MISC
[  5581.376] Initializing built-in extension XINERAMA
[  5581.376] Initializing built-in extension XFIXES
[  5581.376] Initializing built-in extension RENDER
[  5581.377] Initializing built-in extension RANDR
[  5581.377] Initializing built-in extension COMPOSITE
[  5581.377] Initializing built-in extension DAMAGE
[  5581.377] Initializing built-in extension MIT-SCREEN-SAVER
[  5581.377] Initializing built-in extension DOUBLE-BUFFER
[  5581.377] Initializing built-in extension RECORD
[  5581.378] Initializing built-in extension DPMS
[  5581.378] Initializing built-in extension X-Resource
[  5581.378] Initializing built-in extension XVideo
[  5581.378] Initializing built-in extension XVideo-MotionCompensation
[  5581.378] Initializing built-in extension XFree86-VidModeExtension
[  5581.379] Initializing built-in extension XFree86-DGA
[  5581.379] Initializing built-in extension XFree86-DRI
[  5581.379] Initializing built-in extension DRI2
[  5581.379] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  5581.379] (II) LoadModule: "dri"
[  5581.379] (II) Module "dri" already built-in
[  5581.379] (II) LoadModule: "glx"
[  5581.380] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[  5581.380] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[  5581.380]        compiled for 6.9.0, module version = 1.0.0
[  5581.381] Loading extension GLX
[  5581.381] (II) LoadModule: "fglrx"
[  5581.381] (II) Loading /usr/lib64/xorg/modules/drivers/fglrx_drv.so
[  5581.424] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[  5581.424]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.424]        Module class: X.Org Video Driver
[  5581.425] (II) Loading sub module "fglrxdrm"
[  5581.425] (II) LoadModule: "fglrxdrm"
[  5581.425] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[  5581.425] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[  5581.425]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.425] (II) AMD Proprietary Linux Driver Version Identifier:14.50.2
[  5581.425] (II) AMD Proprietary Linux Driver Release Identifier: 14.501.1003                         
[  5581.425] (II) AMD Proprietary Linux Driver Build Date: Nov 20 2014 21:22:54
[  5581.425] (--) using VT number 7

[  5581.429] (WW) Falling back to old probe method for fglrx
[  5581.451] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[  5581.455] ukiDynamicMajor: found major device number 247
[  5581.455] ukiDynamicMajor: found major device number 247
[  5581.455] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5581.455] ukiOpenDevice: node name is /dev/ati/card0
[  5581.455] ukiOpenDevice: open result is 12, (OK)
[  5581.455] ukiOpenByBusid: ukiOpenMinor returns 12
[  5581.455] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5581.663] (--) Chipset Supported AMD Graphics Processor (0x6741) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:17:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:0) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:2) found
[  5581.663] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:3) found
[  5581.664] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:4) found
[  5581.664] (WW) fglrx: No matching Device section for instance (BusID PCI:0@2:0:1) found
[  5581.664] (II) fglrx(0): pEnt->device->identifier=0x23f9490
[  5581.664] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
[  5581.664] (II) fglrx(0): FB driver is not enabled
[  5581.664] (II) Loading sub module "vgahw"
[  5581.664] (II) LoadModule: "vgahw"
[  5581.664] (II) Loading /usr/lib64/xorg/modules/libvgahw.so
[  5581.664] (II) Module vgahw: vendor="X.Org Foundation"
[  5581.664]        compiled for 1.14.3, module version = 0.1.0
[  5581.664]        ABI class: X.Org Video Driver, version 14.1
[  5581.665] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[  5581.665] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[  5581.665] (==) fglrx(0): Default visual is TrueColor
[  5581.665] (**) fglrx(0): Option "DPMS" "true"
[  5581.665] (==) fglrx(0): RGB weight 888
[  5581.665] (II) fglrx(0): Using 8 bits per RGB
[  5581.665] (==) fglrx(0): Buffer Tiling is ON
[  5581.665] (II) Loading sub module "fglrxdrm"
[  5581.665] (II) LoadModule: "fglrxdrm"
[  5581.665] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[  5581.665] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[  5581.665]        compiled for 1.4.99.906, module version = 14.50.2
[  5581.670] ukiDynamicMajor: found major device number 247
[  5581.670] ukiDynamicMajor: found major device number 247
[  5581.670] ukiOpenByBusid: Searching for BusID PCI:2:0:0
[  5581.670] ukiOpenDevice: node name is /dev/ati/card0
[  5581.670] ukiOpenDevice: open result is 14, (OK)
[  5581.670] ukiOpenByBusid: ukiOpenMinor returns 14
[  5581.670] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
[  5581.670] (**) fglrx(0): NoAccel = NO
[  5581.670] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[  5581.670] (--) fglrx(0): Chipset: "AMD Radeon 6600M and 6700M Series" (Chipset = 0x6741)
[  5581.670] (--) fglrx(0): (PciSubVendor = 0x1025, PciSubDevice = 0x0442)
[  5581.670] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[  5581.670] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
[  5581.670] (--) fglrx(0): MMIO registers at 0xd0000000
[  5581.670] (--) fglrx(0): I/O port at 0x00009000
[  5581.670] (==) fglrx(0): ROM-BIOS at 0x000c0000
[  5581.670] (II) fglrx(0): ATIF platform detected
[  5581.671] (II) fglrx(0): AC Adapter is used
[  5581.671] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[  5581.859] (II) Loading sub module "vbe"
[  5581.859] (II) LoadModule: "vbe"
[  5581.859] (II) Loading /usr/lib64/xorg/modules/libvbe.so
[  5581.859] (II) Module vbe: vendor="X.Org Foundation"
[  5581.859]        compiled for 1.14.3, module version = 1.1.0
[  5581.859]        ABI class: X.Org Video Driver, version 14.1
[  5581.860] (II) fglrx(0): VESA BIOS detected
[  5581.860] (II) fglrx(0): VESA VBE Version 3.0
[  5581.860] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[  5581.860] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
[  5581.860] (II) fglrx(0): VESA VBE OEM Software Rev: 13.8
[  5581.860] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, AMD Technologies Inc.
[  5581.860] (II) fglrx(0): VESA VBE OEM Product: WHISTLER
[  5581.860] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[  5581.860] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[  5581.860] (--) fglrx(0): Video RAM: 1048576 kByte, Type: DDR3
[  5581.860] (II) fglrx(0): PCIE card detected
[  5581.860] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[  5581.860] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[  5581.860] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x40000000)
[  5581.860] (II) fglrx(0): RandR 1.2 support is enabled!
[  5581.860] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[  5581.860] (II) Loading sub module "fb"
[  5581.860] (II) LoadModule: "fb"
[  5581.861] (II) Loading /usr/lib64/xorg/modules/libfb.so
[  5581.861] (II) Module fb: vendor="X.Org Foundation"
[  5581.861]        compiled for 1.14.3, module version = 1.0.0
[  5581.861]        ABI class: X.Org ANSI C Emulation, version 0.4
[  5581.861] (II) fglrx(0): EDID Management option: EDID Management is enabled
[  5581.861] (II) Loading sub module "ddc"
[  5581.861] (II) LoadModule: "ddc"
[  5581.861] (II) Module "ddc" already built-in
[  5581.943] (II) fglrx(0): Output LVDS using monitor section aticonfig-Monitor[0]-0
[  5581.943] (II) fglrx(0): Output DFP1 has no monitor section
[  5581.943] (II) fglrx(0): Output CRT1 has no monitor section
[  5581.943] (II) Loading sub module "ddc"
[  5581.943] (II) LoadModule: "ddc"
[  5581.943] (II) Module "ddc" already built-in
[  5581.943] (II) fglrx(0): Connected Display0: LVDS
[  5581.943] (II) fglrx(0): Display0 EDID data ---------------------------
[  5581.943] (II) fglrx(0): Manufacturer: SEC  Model: 3051  Serial#: 0
[  5581.943] (II) fglrx(0): Year: 2008  Week: 0
[  5581.943] (II) fglrx(0): EDID Version: 1.3
[  5581.943] (II) fglrx(0): Digital Display Input
[  5581.943] (II) fglrx(0): Max Image Size [cm]: horiz.: 39  vert.: 23
[  5581.943] (II) fglrx(0): Gamma: 2.20
[  5581.943] (II) fglrx(0): No DPMS capabilities specified
[  5581.943] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  5581.943] (II) fglrx(0): First detailed timing is preferred mode
[  5581.943] (II) fglrx(0): redX: 0.600 redY: 0.340  greenX: 0.310 greenY: 0.560
[  5581.943] (II) fglrx(0): blueX: 0.150 blueY: 0.130  whiteX: 0.313 whiteY: 0.329
[  5581.943] (II) fglrx(0): Manufacturer's mask: 0
[  5581.943] (II) fglrx(0): Supported detailed timing:
[  5581.943] (II) fglrx(0): clock: 107.8 MHz  Image Size:  398 x 232 mm
[  5581.943] (II) fglrx(0): h_active: 1600  h_sync: 1648  h_sync_end 1680 h_blank_end 1892 h_border: 0
[  5581.943] (II) fglrx(0): v_active: 900  v_sync: 902  v_sync_end 908 v_blanking: 950 v_border: 0
[  5581.943] (II) fglrx(0): Unknown vendor-specific block f
[  5581.943] (II) fglrx(0):  SAMSUNG
[  5581.943] (II) fglrx(0):  173KT01-A01
[  5581.943] (II) fglrx(0): EDID (in hex):
[  5581.943] (II) fglrx(0):        00ffffffffffff004ca3513000000000
[  5581.943] (II) fglrx(0):        00120103802717780a859599574f8f26
[  5581.943] (II) fglrx(0):        21505400000001010101010101010101
[  5581.943] (II) fglrx(0):        010101010101202a4024618432303020
[  5581.943] (II) fglrx(0):        26008ee8100000190000000f00000000
[  5581.943] (II) fglrx(0):        00000000001eb4027400000000fe0053
[  5581.943] (II) fglrx(0):        414d53554e470a2020202020000000fe
[  5581.943] (II) fglrx(0):        003137334b5430312d4130310a2000a4
[  5581.943] (II) fglrx(0): End of Display0 EDID data --------------------
[  5581.943] (II) fglrx(0): Dynamic Surface Resizing Enabled
[  5581.944] (II) fglrx(0): EDID for output LVDS
[  5581.944] (II) fglrx(0): Manufacturer: SEC  Model: 3051  Serial#: 0
[  5581.944] (II) fglrx(0): Year: 2008  Week: 0
[  5581.944] (II) fglrx(0): EDID Version: 1.3
[  5581.944] (II) fglrx(0): Digital Display Input
[  5581.944] (II) fglrx(0): Max Image Size [cm]: horiz.: 39  vert.: 23
[  5581.944] (II) fglrx(0): Gamma: 2.20
[  5581.944] (II) fglrx(0): No DPMS capabilities specified
[  5581.944] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  5581.944] (II) fglrx(0): First detailed timing is preferred mode
[  5581.944] (II) fglrx(0): redX: 0.600 redY: 0.340  greenX: 0.310 greenY: 0.560
[  5581.944] (II) fglrx(0): blueX: 0.150 blueY: 0.130  whiteX: 0.313 whiteY: 0.329
[  5581.944] (II) fglrx(0): Manufacturer's mask: 0
[  5581.944] (II) fglrx(0): Supported detailed timing:
[  5581.944] (II) fglrx(0): clock: 107.8 MHz  Image Size:  398 x 232 mm
[  5581.944] (II) fglrx(0): h_active: 1600  h_sync: 1648  h_sync_end 1680 h_blank_end 1892 h_border: 0
[  5581.944] (II) fglrx(0): v_active: 900  v_sync: 902  v_sync_end 908 v_blanking: 950 v_border: 0
[  5581.944] (II) fglrx(0): Unknown vendor-specific block f
[  5581.944] (II) fglrx(0):  SAMSUNG
[  5581.944] (II) fglrx(0):  173KT01-A01
[  5581.944] (II) fglrx(0): EDID (in hex):
[  5581.944] (II) fglrx(0):        00ffffffffffff004ca3513000000000
[  5581.944] (II) fglrx(0):        00120103802717780a859599574f8f26
[  5581.944] (II) fglrx(0):        21505400000001010101010101010101
[  5581.944] (II) fglrx(0):        010101010101202a4024618432303020
[  5581.944] (II) fglrx(0):        26008ee8100000190000000f00000000
[  5581.944] (II) fglrx(0):        00000000001eb4027400000000fe0053
[  5581.944] (II) fglrx(0):        414d53554e470a2020202020000000fe
[  5581.944] (II) fglrx(0):        003137334b5430312d4130310a2000a4
[  5581.944] (II) fglrx(0): EDID vendor "SEC", prod id 12369
[  5581.944] (II) fglrx(0): Printing DDC gathered Modelines:
[  5581.944] (II) fglrx(0): Modeline "1600x900"x0.0  107.84  1600 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz eP)
[  5581.944] (II) fglrx(0): Printing probed modes for output LVDS
[  5581.944] (II) fglrx(0): Modeline "1600x900"x60.0  107.84  1600 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz eP)
[  5581.944] (II) fglrx(0): Modeline "1440x900"x60.0  107.84  1440 1648 1680 1892  900 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1280x768"x60.0  107.84  1280 1648 1680 1892  768 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1280x720"x60.0  107.84  1280 1648 1680 1892  720 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1024x768"x60.0  107.84  1024 1648 1680 1892  768 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "1024x600"x60.0  107.84  1024 1648 1680 1892  600 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "800x600"x60.0  107.84  800 1648 1680 1892  600 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "800x480"x60.0  107.84  800 1648 1680 1892  480 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): Modeline "640x480"x60.0  107.84  640 1648 1680 1892  480 902 908 950 -hsync -vsync (57.0 kHz e)
[  5581.944] (II) fglrx(0): EDID for output DFP1
[  5581.944] (II) fglrx(0): EDID for output CRT1
[  5581.944] (II) fglrx(0): Output LVDS connected
[  5581.944] (II) fglrx(0): Output DFP1 disconnected
[  5581.944] (II) fglrx(0): Output CRT1 disconnected
[  5581.944] (II) fglrx(0): Using exact sizes for initial modes
[  5581.944] (II) fglrx(0): Output LVDS using initial mode 1600x900
[  5581.944] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  5581.945] (II) fglrx(0): Display dimensions: (390, 230) mm
[  5581.945] (II) fglrx(0): DPI set to (104, 99)
[  5581.945] (II) fglrx(0): Eyefinity capable adapter detected.
[  5581.945] (II) fglrx(0): Adapter AMD Radeon 6600M and 6700M Series has 6 configurable heads and 1 displays connected.
[  5581.945] (==) fglrx(0):  PseudoColor visuals disabled
[  5581.945]


BearlyThere 03-31-2015 12:37 PM

To answer your question: no, I'm not trying to startx as root. I alt + F# to a different shell and login as a user. Here is the result of ls -l /usr/lib64/libGL*:

Code:

-rw-r--r-- 1 root root 1003986 Dec  9  2008 /usr/lib64/libGL.a
-rwxr-xr-x 1 root root    1239 Oct 21  2013 /usr/lib64/libGL.la*
lrwxrwxrwx 1 root root      10 Mar 28 23:00 /usr/lib64/libGL.so -> libGL.so.1*
lrwxrwxrwx 1 root root      12 Mar 28 23:00 /usr/lib64/libGL.so.1 -> libGL.so.1.2*
lrwxrwxrwx 1 root root      24 Mar 28 23:00 /usr/lib64/libGL.so.1.2 -> fglrx/fglrx-libGL.so.1.2*
-rw-r--r-- 1 root root 1070498 Mar 16  2013 /usr/lib64/libGLEW.a
lrwxrwxrwx 1 root root      16 Mar 25 11:50 /usr/lib64/libGLEW.so -> libGLEW.so.1.9.0
lrwxrwxrwx 1 root root      16 Mar 25 11:50 /usr/lib64/libGLEW.so.1.9 -> libGLEW.so.1.9.0
-rw-r--r-- 1 root root  528184 Mar 16  2013 /usr/lib64/libGLEW.so.1.9.0
-rw-r--r-- 1 root root  893982 Dec  9  2008 /usr/lib64/libGLU.a
-rwxr-xr-x 1 root root    1254 Feb 20  2013 /usr/lib64/libGLU.la*
lrwxrwxrwx 1 root root      13 Mar 28 15:28 /usr/lib64/libGLU.so -> libGLU.so.1.3*
lrwxrwxrwx 1 root root      15 Mar 28 15:30 /usr/lib64/libGLU.so.1 -> libGLU.so.1.3.1*
-rwxr-xr-x 1 root root  629132 Dec  9  2008 /usr/lib64/libGLU.so.1.3*
-rwxr-xr-x 1 root root  516416 Feb 20  2013 /usr/lib64/libGLU.so.1.3.1*
-rw-r--r-- 1 root root  45622 Dec  9  2008 /usr/lib64/libGLw.a
lrwxrwxrwx 1 root root      13 Mar 28 15:28 /usr/lib64/libGLw.so -> libGLw.so.1.0*
lrwxrwxrwx 1 root root      13 Mar 28 15:28 /usr/lib64/libGLw.so.1 -> libGLw.so.1.0*
-rwxr-xr-x 1 root root  39847 Dec  9  2008 /usr/lib64/libGLw.so.1.0*

It looks like I have one fglrx file in that directory. Are there supposed to be others?

Running aticonfig # --initial=check returns "Check: Found fglrx section."

business_kid 04-01-2015 03:28 AM

I haven't looked at a Catalyst install in 5 years or more. They 'obsoleted' my two year old video card in 2009.

In 2009, there would have been three fglrx files there. By chasing through the fglrx directory you can see what is installed.

That seems like a good reason for fglrx to go belly up on you. You can put in the symlinks yourself using ln -sf

veerain 04-01-2015 11:38 AM

Quote:

[ 5582.517] (EE)
Fatal server error:
[ 5582.517] (EE) could not open default font 'fixed'(EE)
[ 5582.517] (EE)
Problem lies with above error message. Don't you have any fonts installed. Atleast install xorg fixed fonts and truetype fonts.

BearlyThere 04-01-2015 12:08 PM

Veerain, that is one of the things that has been troubling me. I do have fonts installed. In my opening post you can see the output of my fc-cache command. The system reports success with all the fonts available on the slackware install dvd.

I have also tried uninstalling and reinstalling all my fonts through pkgtool. After the reinstall I re-ran the font install scripts as well. The Xorg log indicates font problems but I'm not sure of where in the process to look and what file should be looked in. Any ideas where I should start?


Business_kid, I had hoped that the install process would be relatively easy because my card is old. I was wrong. Thank you for your help working through my Catalyst problems. I'll look through the directory and post the results of whatever I find.

veerain 04-01-2015 09:03 PM

Do run:

Code:

grep -r ^fixed /usr/share/fonts
It should output something with fixed in it.

If it is not then install xorg-fonts-misc.

BearlyThere 04-02-2015 12:25 PM

Hi Veerain, This is the output:

CMD: grep -r ^fixed /usr/share/fonts
Code:

/usr/share/fonts/misc/fonts.alias:fixed        -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
/usr/share/fonts/cyrillic/fonts.alias:fixed  -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-koi8-r

I also did "fc-list" to see what fonts are installed:
Code:

/usr/share/fonts/Type1/n019003l.pfb: Nimbus Sans L:style=Regular
/usr/share/fonts/misc/ter-120b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/7x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/TTF/Meera_04.ttf: Meera:style=Regular
/usr/share/fonts/Type1/n021003l.pfb: Nimbus Roman No9 L:style=Regular
/usr/share/fonts/TTF/Kedage-n.ttf: Kedage:style=Normal
/usr/share/fonts/Type1/n019044l.pfb: Nimbus Sans L:style=Bold Condensed
/usr/share/fonts/TTF/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book
/usr/share/fonts/misc/ter-x12b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-x22b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/OTF/SyrCOMMalankara.otf: Serto Malankara:style=Regular
/usr/share/fonts/TTF/Sarai_07.ttf: Sarai:style=Regular
/usr/share/fonts/misc/ter-128b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/LikhanNormal.ttf: Likhan:style=Normal
/usr/share/fonts/TTF/Malige-t.ttf: Mallige:style=BoldItalic
/usr/share/fonts/misc/ter-x32b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-x18n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/Samyak-Devanagari.ttf: Samyak Devanagari:style=Regular
/usr/share/fonts/Type1/couri.pfa: Courier:style=Italic
/usr/share/fonts/TTF/suruma2.ttf: suruma:style=Medium
/usr/share/fonts/TTF/LiberationSansNarrow-BoldItalic.ttf: Liberation Sans Narrow:style=Bold Italic
/usr/share/fonts/misc/9x15.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/wqy-zenhei.ttc: WenQuanYi Zen Hei,,:style=Medium,
/usr/share/fonts/TTF/sahadeva.ttf: Sahadeva:style=Regular
/usr/share/fonts/TTF/luximbi.ttf: Luxi Mono:style=Bold Oblique
/usr/share/fonts/Type1/n021024l.pfb: Nimbus Roman No9 L:style=Medium Italic
/usr/share/fonts/TTF/LiberationSansNarrow-Regular.ttf: Liberation Sans Narrow:style=Regular
/usr/share/fonts/Type1/p052023l.pfb: URW Palladio L:style=Italic
/usr/share/fonts/Type1/n021004l.pfb: Nimbus Roman No9 L:style=Medium
/usr/share/fonts/misc/ter-x20n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/Rachana_04.ttf: Rachana:style=Regular
/usr/share/fonts/misc/10x20-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/OTF/SyrCOMJerusalemItalic.otf: Serto Jerusalem:style=Italic
/usr/share/fonts/TTF/lohit_as.ttf: Lohit Assamese:style=Regular
/usr/share/fonts/misc/6x13B.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/misc/ter-x18b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/Vemana.ttf: Vemana2000,Pothana2000:style=Regular,Pothana2000
/usr/share/fonts/OTF/SyrCOMTalada.otf: Estrangelo Talada:style=Regular
/usr/share/fonts/TTF/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book
/usr/share/fonts/misc/ter-x28n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/cu-alt12.pcf.gz: ClearlyU Alternate Glyphs:style=Regular
/usr/share/fonts/TTF/Saab.ttf: Saab:style=Regular
/usr/share/fonts/TTF/gargi.ttf: gargi:style=Medium
/usr/share/fonts/Type1/UTB_____.pfa: Utopia:style=Bold
/usr/share/fonts/Type1/c0419bt_.pfb: Courier 10 Pitch:style=Regular
/usr/share/fonts/misc/ter-x20b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
/usr/share/fonts/Type1/c059013l.pfb: Century Schoolbook L:style=Roman
/usr/share/fonts/TTF/sazanami-mincho.ttf: Sazanami Mincho,:style=Mincho-Regular,Regular
/usr/share/fonts/Type1/c0583bt_.pfb: Courier 10 Pitch:style=Bold
/usr/share/fonts/misc/10x20.pcf.gz: Fixed:style=Regular
/usr/share/fonts/misc/ter-x28b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/lohit_ks.ttf: Lohit Kashmiri:style=Regular
/usr/share/fonts/TTF/LiberationSans-Italic.ttf: Liberation Sans:style=Italic
/usr/share/fonts/TTF/luxirri.ttf: Luxi Serif:style=Oblique
/usr/share/fonts/Type1/l049013t.pfa: Luxi Serif:style=Regular
/usr/share/fonts/misc/8x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/misc/9x18B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/misc/ter-x12n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/ter-x22n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/8x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/TTF/luxirbi.ttf: Luxi Serif:style=Bold Oblique
/usr/share/fonts/TTF/lohit_ne.ttf: Lohit Nepali:style=Regular
/usr/share/fonts/misc/7x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/TTF/Malige-n.ttf: Mallige:style=Normal
/usr/share/fonts/misc/ter-118n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/6x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/misc/ter-x32n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/Type1/l047016t.pfa: Luxi Mono:style=Bold
/usr/share/fonts/TTF/luxisb.ttf: Luxi Sans:style=Bold
/usr/share/fonts/TTF/padmaa-Medium-0.5.ttf: padmaa,padmmaa:style=regular,Medium
/usr/share/fonts/misc/9x18B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/TTF/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold
/usr/share/fonts/TTF/LiberationMono-Regular.ttf: Liberation Mono:style=Regular
/usr/share/fonts/Type1/s050000l.pfb: Standard Symbols L:style=Regular
/usr/share/fonts/OTF/SyrCOMBatnan.otf: Serto Batnan:style=Regular
/usr/share/fonts/misc/ter-120n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/5x7-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/LiberationSansNarrow-Bold.ttf: Liberation Sans Narrow:style=Bold
/usr/share/fonts/misc/micro.pcf.gz: micro.pcf:style=Regular
/usr/share/fonts/misc/cu-pua12.pcf.gz: ClearlyU PUA:style=Regular
/usr/share/fonts/misc/clR6x12.pcf.gz: Clean:style=Regular
/usr/share/fonts/misc/9x15B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/TTF/Samyak-Gujarati.ttf: Samyak Gujarati:style=Regular
/usr/share/fonts/misc/7x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/misc/ter-128n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/Kedage-b.ttf: Kedage:style=Bold
/usr/share/fonts/Type1/b018012l.pfb: URW Bookman L:style=Light
/usr/share/fonts/Type1/UTBI____.pfa: Utopia:style=Bold Italic
/usr/share/fonts/misc/ter-x14n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/ter-x24n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold
/usr/share/fonts/TTF/lohit_kok.ttf: Lohit Konkani:style=Regular
/usr/share/fonts/TTF/aakar-medium.ttf: aakar:style=medium
/usr/share/fonts/misc/6x9-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/misc/12x24.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/lohit_ta.ttf: Lohit Tamil:style=Regular
/usr/share/fonts/Type1/c0632bt_.pfb: Bitstream Charter:style=Bold
/usr/share/fonts/TTF/LiberationSans-Bold.ttf: Liberation Sans:style=Bold
/usr/share/fonts/misc/cu12.pcf.gz: ClearlyU:style=Regular
/usr/share/fonts/TTF/luximr.ttf: Luxi Mono:style=Regular
/usr/share/fonts/Type1/c0611bt_.pfb: Courier 10 Pitch:style=Bold Italic
/usr/share/fonts/TTF/padmaa.ttf: padmaa,padmmaa:style=Normal,Medium
/usr/share/fonts/misc/6x13.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/OTF/SyrCOMBatnanBold.otf: Serto Batnan:style=Bold
/usr/share/fonts/TTF/Kalyani121.ttf: Kalyani:style=Book
/usr/share/fonts/TTF/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/TTF/padmaa-Bold.1.1.ttf: padmaa\-Bold.1.1,padmaa,padmmaa:style=Bold.1.1,bold,medium
/usr/share/fonts/misc/5x7.pcf.gz: Fixed:style=Regular
/usr/share/fonts/Type1/l048033t.pfa: Luxi Sans:style=Oblique
/usr/share/fonts/TTF/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic
/usr/share/fonts/OTF/SyrCOMCtesiphon.otf: East Syriac Ctesiphon:style=Regular
/usr/share/fonts/misc/6x13B-ISO8859-1.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/TTF/luxisri.ttf: Luxi Sans:style=Oblique
/usr/share/fonts/misc/6x13O.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/misc/ter-112n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/ter-122n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/utkal.ttf: ori1Uni,utkal:style=Medium
/usr/share/fonts/misc/4x6-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/Type1/n022003l.pfb: Nimbus Mono L:style=Regular
/usr/share/fonts/Type1/n019004l.pfb: Nimbus Sans L:style=Bold
/usr/share/fonts/TTF/DejaVuSerif.ttf: DejaVu Serif:style=Book
/usr/share/fonts/Type1/l049016t.pfa: Luxi Serif:style=Bold
/usr/share/fonts/misc/ter-132n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/TTF/lohit_te.ttf: Lohit Telugu:style=Regular
/usr/share/fonts/TTF/lohit_kn.ttf: Lohit Kannada:style=Regular
/usr/share/fonts/misc/ter-x16n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/Type1/courb.pfa: Courier:style=Bold
/usr/share/fonts/Type1/n022023l.pfb: Nimbus Mono L:style=Regular Oblique
/usr/share/fonts/misc/5x8-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/lohit_hi.ttf: Lohit Devanagari:style=Regular
/usr/share/fonts/Type1/a010033l.pfb: URW Gothic L:style=Book Oblique
/usr/share/fonts/misc/9x15B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/TTF/Kedage-t.ttf: Kedage:style=BoldItalic
/usr/share/fonts/Type1/l049036t.pfa: Luxi Serif:style=Bold Oblique
/usr/share/fonts/Type1/n019043l.pfb: Nimbus Sans L:style=Regular Condensed
/usr/share/fonts/TTF/ani.ttf: Ani,  Dvf:style=Regular
/usr/share/fonts/misc/ter-114n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/ter-124n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/OTF/SyrCOMMardin.otf: Serto Mardin:style=Regular
/usr/share/fonts/TTF/wqy-zenhei.ttc: WenQuanYi Zen Hei Mono,,:style=Medium,
/usr/share/fonts/TTF/lohit_pa.ttf: Lohit Punjabi:style=Regular
/usr/share/fonts/TTF/lohit_sd.ttf: Lohit Sindhi:style=Regular
/usr/share/fonts/TTF/Pothana2000.ttf: Pothana2000:style=Regular,Pothana2000
/usr/share/fonts/Type1/n022024l.pfb: Nimbus Mono L:style=Bold Oblique
/usr/share/fonts/Type1/l048013t.pfa: Luxi Sans:style=Regular
/usr/share/fonts/TTF/LiberationSans-Regular.ttf: Liberation Sans:style=Regular
/usr/share/fonts/Type1/c0582bt_.pfb: Courier 10 Pitch:style=Italic
/usr/share/fonts/misc/7x13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/luxisbi.ttf: Luxi Sans:style=Bold Oblique
/usr/share/fonts/misc/9x18-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold
/usr/share/fonts/Type1/c059016l.pfb: Century Schoolbook L:style=Bold
/usr/share/fonts/Type1/a010013l.pfb: URW Gothic L:style=Book
/usr/share/fonts/misc/8x13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/RaghuMalayalamSans2.ttf: RaghuMalayalam:style=Sans
/usr/share/fonts/misc/7x14B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/TTF/luxirb.ttf: Luxi Serif:style=Bold
/usr/share/fonts/OTF/SyrCOMMidyat.otf: Estrangelo Midyat:style=Regular
/usr/share/fonts/misc/6x10-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/samanata.ttf: Samanata:style=Regular
/usr/share/fonts/TTF/AnjaliOldLipi.ttf: AnjaliOldLipi:style=Regular
/usr/share/fonts/TTF/LiberationSansNarrow-Italic.ttf: Liberation Sans Narrow:style=Italic
/usr/share/fonts/misc/ter-116n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/misc/8x16.pcf.gz: Fixed:style=Regular
/usr/share/fonts/misc/7x14-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic
/usr/share/fonts/TTF/sazanami-gothic.ttf: Sazanami Gothic,:style=Gothic-Regular,Regular
/usr/share/fonts/Type1/b018032l.pfb: URW Bookman L:style=Light Italic
/usr/share/fonts/TTF/lohit_gu.ttf: Lohit Gujarati:style=Regular
/usr/share/fonts/misc/9x15-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique
/usr/share/fonts/TTF/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic
/usr/share/fonts/misc/18x18ko.pcf.gz: Fixed:style=ko
/usr/share/fonts/TTF/LiberationMono-Italic.ttf: Liberation Mono:style=Italic
/usr/share/fonts/TTF/Malige-b.ttf: Mallige:style=Bold
/usr/share/fonts/TTF/kalimati.ttf: Kalimati,:style=Regular,
/usr/share/fonts/TTF/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic
/usr/share/fonts/TTF/lohit_ml.ttf: Lohit Malayalam:style=Regular
/usr/share/fonts/TTF/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique
/usr/share/fonts/misc/7x14.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique
/usr/share/fonts/Type1/p052003l.pfb: URW Palladio L:style=Roman
/usr/share/fonts/Type1/b018015l.pfb: URW Bookman L:style=Demi Bold
/usr/share/fonts/OTF/SyrCOMEdessa.otf: Estrangelo Edessa:style=Regular
/usr/share/fonts/misc/arabic24.pcf.gz: Newspaper:style=Regular
/usr/share/fonts/TTF/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic
/usr/share/fonts/TTF/luximri.ttf: Luxi Mono:style=Oblique
/usr/share/fonts/TTF/Samyak-Malayalam.ttf: Samyak Malayalam:style=Medium
/usr/share/fonts/Type1/UTRG____.pfa: Utopia:style=Regular
/usr/share/fonts/Type1/UTI_____.pfa: Utopia:style=Italic
/usr/share/fonts/misc/deccurs.pcf.gz: deccurs.pcf:style=Regular
/usr/share/fonts/misc/5x8.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/chandas1-2.ttf: Chandas:style=Regular
/usr/share/fonts/OTF/SyrCOMUrhoyBold.otf: Serto Urhoy:style=Bold
/usr/share/fonts/TTF/Samyak-Oriya.ttf: Samyak Oriya:style=Regular
/usr/share/fonts/misc/8x13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/JamrulNormal.ttf: Jamrul:style=Normal
/usr/share/fonts/misc/7x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/OTF/SyrCOMAdiabene.otf: East Syriac Adiabene:style=Regular
/usr/share/fonts/TTF/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic
/usr/share/fonts/misc/clR6x12-ISO8859-1.pcf.gz: Clean:style=Regular
/usr/share/fonts/TTF/MuktiNarrowBold.ttf: Mukti Narrow,  :style=Regular,Bold
/usr/share/fonts/misc/cursor.pcf.gz: cursor.pcf:style=Regular
/usr/share/fonts/OTF/SyrCOMNisibinOutline.otf: Estrangelo Nisibin Outline:style=Regular
/usr/share/fonts/misc/7x14B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/Type1/d050000l.pfb: Dingbats:style=Regular
/usr/share/fonts/TTF/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic
/usr/share/fonts/Type1/l047033t.pfa: Luxi Mono:style=Oblique
/usr/share/fonts/OTF/SyrCOMQenNeshrin.otf: Estrangelo Quenneshrin:style=Regular
/usr/share/fonts/OTF/GohaTibebZemen.otf: Goha\-Tibeb Zemen:style=Regular
/usr/share/fonts/Type1/c0649bt_.pfb: Bitstream Charter:style=Italic
/usr/share/fonts/misc/ter-116b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/8x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/TTF/sinhala_lklug.ttf: LKLUG:style=Regular
/usr/share/fonts/Type1/c059033l.pfb: Century Schoolbook L:style=Italic
/usr/share/fonts/TTF/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular
/usr/share/fonts/Type1/a010035l.pfb: URW Gothic L:style=Demi Oblique
/usr/share/fonts/TTF/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight
/usr/share/fonts/TTF/nakula.ttf: Nakula:style=Regular
/usr/share/fonts/TTF/luximb.ttf: Luxi Mono:style=Bold
/usr/share/fonts/Type1/n019023l.pfb: Nimbus Sans L:style=Regular Italic
/usr/share/fonts/misc/18x18ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/OTF/SyrCOMUrhoy.otf: Serto Urhoy:style=Regular
/usr/share/fonts/Type1/cursor.pfa: Cursor:style=Regular
/usr/share/fonts/TTF/GohaTibebZemen.ttf: Goha\-Tibeb Zemen:style=Regular
/usr/share/fonts/Type1/c059036l.pfb: Century Schoolbook L:style=Bold Italic
/usr/share/fonts/TTF/luxisr.ttf: Luxi Sans:style=Regular
/usr/share/fonts/OTF/SyrCOMMardinBold.otf: Serto Mardin:style=Bold
/usr/share/fonts/misc/ter-114b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-124b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/Type1/l049033t.pfa: Luxi Serif:style=Oblique
/usr/share/fonts/OTF/SyrCOMNisibin.otf: Estrangelo Nisibin:style=Regular
/usr/share/fonts/Type1/z003034l.pfb: URW Chancery L:style=Medium Italic
/usr/share/fonts/Type1/l048016t.pfa: Luxi Sans:style=Bold
/usr/share/fonts/OTF/SyrCOMKharput.otf: Serto Kharput:style=Regular
/usr/share/fonts/misc/ter-x16b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/Type1/n019063l.pfb: Nimbus Sans L:style=Regular Condensed Italic
/usr/share/fonts/TTF/lohit_bn.ttf: Lohit Bengali:style=Regular
/usr/share/fonts/misc/12x13ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/Type1/courbi.pfa: Courier:style=Bold Italic
/usr/share/fonts/Type1/n019064l.pfb: Nimbus Sans L:style=Bold Condensed Italic
/usr/share/fonts/TTF/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique
/usr/share/fonts/OTF/SyrCOMAntioch.otf: Estrangelo Antioch:style=Regular
/usr/share/fonts/Type1/c0633bt_.pfb: Bitstream Charter:style=Bold Italic
/usr/share/fonts/Type1/b018035l.pfb: URW Bookman L:style=Demi Bold Italic
/usr/share/fonts/Type1/l047036t.pfa: Luxi Mono:style=Bold Oblique
/usr/share/fonts/TTF/Samyak-Tamil.ttf: Samyak Tamil:style=Regular
/usr/share/fonts/Type1/cour.pfa: Courier:style=Regular
/usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold
/usr/share/fonts/misc/6x10.pcf.gz: Fixed:style=Regular
/usr/share/fonts/Type1/a010015l.pfb: URW Gothic L:style=Demi
/usr/share/fonts/misc/decsess.pcf.gz: decsess.pcf:style=Regular
/usr/share/fonts/Type1/l048036t.pfa: Luxi Sans:style=Bold Oblique
/usr/share/fonts/TTF/lohit_mai.ttf: Lohit Maithili:style=Regular
/usr/share/fonts/misc/9x18.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/Dyuthi3.ttf: Dyuthi:style=Regular,
/usr/share/fonts/TTF/Kedage-i.ttf: Kedage:style=NormalItalic
/usr/share/fonts/misc/4x6.pcf.gz: Fixed:style=Regular
/usr/share/fonts/misc/8x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/TTF/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold
/usr/share/fonts/TTF/MuktiNarrow.ttf: Mukti Narrow,:style=Regular
/usr/share/fonts/TTF/lohit_or.ttf: Lohit Oriya:style=Regular
/usr/share/fonts/Type1/l047013t.pfa: Luxi Mono:style=Regular
/usr/share/fonts/TTF/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic
/usr/share/fonts/misc/6x12.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/Type1/p052004l.pfb: URW Palladio L:style=Bold
/usr/share/fonts/misc/ter-112b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-122b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-x14b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/misc/ter-x24b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique
/usr/share/fonts/Type1/n021023l.pfb: Nimbus Roman No9 L:style=Regular Italic
/usr/share/fonts/Type1/n019024l.pfb: Nimbus Sans L:style=Bold Italic
/usr/share/fonts/TTF/luxirr.ttf: Luxi Serif:style=Regular
/usr/share/fonts/Type1/p052024l.pfb: URW Palladio L:style=Bold Italic
/usr/share/fonts/misc/7x13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/Rekha.ttf: Rekha:style=Medium
/usr/share/fonts/misc/ter-132b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/OTF/SyrCOMJerusalemBold.otf: Serto Jerusalem:style=Bold
/usr/share/fonts/Type1/n022004l.pfb: Nimbus Mono L:style=Bold
/usr/share/fonts/misc/6x12-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/TTF/LiberationMono-Bold.ttf: Liberation Mono:style=Bold
/usr/share/fonts/Type1/c0648bt_.pfb: Bitstream Charter:style=Regular
/usr/share/fonts/OTF/SyrCOMTurAbdin.otf: Estrangelo TurAbdin:style=Regular
/usr/share/fonts/OTF/SyrCOMJerusalemOutline.otf: Serto Jerusalem Outline:style=Regular
/usr/share/fonts/TTF/mitra.ttf: Mitra Mono,\\u09ae\\u09bf\\u09a4\\u09cd\\u09b0:style=Regular
/usr/share/fonts/misc/6x13-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/TTF/Malige-i.ttf: Mallige:style=NormalItalic
/usr/share/fonts/TTF/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/misc/ter-118b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/TTF/TibMachUni.ttf: Tibetan Machine Uni:style=Regular
/usr/share/fonts/OTF/SyrCOMJerusalem.otf: Serto Jerusalem:style=Regular
/usr/share/fonts/misc/6x9.pcf.gz: Fixed:style=Regular
/usr/share/fonts/TTF/lohit_mr.ttf: Lohit Marathi:style=Regular
/usr/share/fonts/TTF/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold


BearlyThere 04-02-2015 12:44 PM

The Xorg file says that the
Code:

server cannot init the font path element /usr/share/fonts/.... , removing from list!
It looks like the Xorg server is being pointed at the correct font files but cannot load them for some reason. The font file extension present in all directories is "*.pcf.gz". Is this the right extension? Is there something else that could prevent the X server from accessing the fonts that are installed?

veerain 04-03-2015 12:52 PM

Try doing 'mkfontdir /usr/share/fonts/misc'.

Also try running startx as root user.

BearlyThere 04-03-2015 05:56 PM

Veerain:

Doing startx as root yields the same error.

'mkfontdir /usr/share/fonts/misc' finishes with no complaints.

Startx again and get the same error.

I noticed something about my fonts sail past as I was booting up and managed to dig up the following error messages:
Code:

updating gdk-pixbuff.loaders for x86_64-slackware-linux:
/usr/bin/gdk-pixbuf-query-loaders-64 --update-cache /usr/bin/gdk-pixbuf-query-loaders-64: error while loading shared libraries: libffi.so.6: cannot open shared object file : no such file or directory


updating pango.modules for x86_64-slackware-linux:
/usr/bin/pango-querymodules-64 \ > /etc/pango/x86_64-slackware-linux/pango.modules /usr/bin/pango-querymodules-64:
error while loading shared libraries: libffi.so.6: cannot open shared object file : no such file or directory


updating pango.modules for i486-slackware-linux: /usr/bin/pango-querymodules-32 \ > /etc/pango/i486-slacware-linux/pango.modules /usr/bin/pango-querymodules-32: error while loading shared libraries: libfontconfig.so.1: cannot open shared object files: No such file or directory

I looked into the files (libffi and libfontconfig). Both seem to be right where they're supposed to be despite the error message. The files are in the correct directory and have all the relevant symlinks. I don't understand why there is an error here either. Are these errors relevant to Xorg not starting?

veerain 04-04-2015 03:20 AM

Pango is used by GTK+ programs.

What you start with startx? What is in your ~/.xinitrc gets loaded?


All times are GMT -5. The time now is 08:58 PM.