Laptop screen resolution reduced to 800x600

Asked by Hoa Le

Toshiba Satellite Pro 4600 dual boot XP Pro & Hardy. Video card is Trident Microblade/XP which uses Intel 80815 chip. Upgraded to Intrepid (kernel 2.6.27-7 generic). Lost 1024x768 resolution a few upgrades back. Tried sudo displayconfig-gtk: command not found. Then gksudo gnome-display-properties but nothing happens.
System>preferences>screen resolution gives a pink "unknown" square, 800x600(4:3), 60 Hz. System>Administration>Hardware Driver gives "no proprietary driver detected in this system". This is strange because in Hardy, the system has both "ati_drv.so" and "trident_drv.so". I gather these are driver files that gave 1024x768 resolution.

I suspect somehow the existing Trident driver was not recognized by the new Xorg that comes with Intrepid. How do I find "xserver-xorg-video-trident" which is supposed to be in Intrepid, and how can I install or reinstall this (new?) driver? Could you help me regain 1024x768 video resolution? Thanks kindly.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu xorg Edit question
Assignee:
No assignee Edit question
Solved by:
Nate Chrysler
Solved:
Last query:
Last reply:
Revision history for this message
Hoa Le (leth5591) said :
#1

$lspci
00:00.0 Host bridge: Intel Corporation 82815 815 Chipset Host Bridge and Memory Controller Hub (rev 11)
00:01.0 PCI bridge: Intel Corporation 82815 815 Chipset AGP Bridge (rev 11)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 03)
00:1f.0 ISA bridge: Intel Corporation 82801BAM ISA Bridge (LPC) (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801BAM IDE U100 Controller (rev 03)
00:1f.2 USB Controller: Intel Corporation 82801BA/BAM USB Controller #1 (rev 03)
00:1f.4 USB Controller: Intel Corporation 82801BA/BAM USB Controller #1 (rev 03)
00:1f.5 Multimedia audio controller: Intel Corporation 82801BA/BAM AC'97 Audio Controller (rev 03)
00:1f.6 Modem: Intel Corporation 82801BA/BAM AC'97 Modem Controller (rev 03)
01:00.0 VGA compatible controller: Trident Microsystems CyberBlade/XP (rev 63)
02:08.0 Ethernet controller: Intel Corporation 82801BA/BAM/CA/CAM Ethernet Controller (rev 03)
02:0c.0 CardBus bridge: Texas Instruments PCI1410 PC card Cardbus Controller (rev 01)
02:0d.0 CardBus bridge: Toshiba America Info Systems ToPIC100 PCI to Cardbus Bridge with ZV Support (rev 31)
02:0d.1 CardBus bridge: Toshiba America Info Systems ToPIC100 PCI to Cardbus Bridge with ZV Support (rev 31)
0b:00.0 Ethernet controller: Atheros Communications Inc. Atheros AR5001X+ Wireless Network Adapter (rev 01)

Comment: My Ubuntu Intrepid RC1 currently has the following 3 files listed as installed; they are up-to-date.

xserver-xorg-core, xserver-xorg-video-trident and lib6.

Revision history for this message
Frank McCormick (fmccormick) said :
#2

Have you tried sudo dpkg-reconfigure xserver-xorg yet? However the success rate with that has fallen for me lately..I'vehad to resort to hand-crafting the xorg.conf file for various reasons. Do you or do you not have the trident driver/package available or installed ?

Revision history for this message
Hoa Le (leth5591) said :
#3

Hi Frank,

Yes, I did try "sudo dpkg-reconfigure (-phigh) xserver-xorg but these don't work at all. Trident video driver IS already on the system, that's why the resolution was 1024x768 with Hardy.

How do I hand-craft the xorg.conf file, such that the above driver is recognized when X starts?

Revision history for this message
Frank McCormick (fmccormick) said :
#4

Hi

  Send me your current xorg.conf file...or post it here.

Revision history for this message
Hoa Le (leth5591) said :
#5

Hello Frank,

Here's my current xorg.conf file. Let me know if you need additional info. Thanks a lot for your help.

Section "Device"
 Identifier "Configured Video Device"
EndSection

Section "Monitor"
 Identifier "Configured Monitor"
EndSection

Section "Screen"
 Identifier "Default Screen"
 Monitor "Configured Monitor"
 Device "Configured Video Device"
EndSection

Revision history for this message
Frank McCormick (fmccormick) said :
#6

Hoa Le wrote:
> Question #49247 on xorg in ubuntu changed:
> https://answers.launchpad.net/ubuntu/+source/xorg/+question/49247
>
> Status: Answered => Open
>
> Hoa Le is still having a problem:
> Hello Frank,
>
> Here's my current xorg.conf file. Let me know if you need additional
> info. Thanks a lot for your help.
>
> Section "Device"
> Identifier "Configured Video Device"
> EndSection
>
> Section "Monitor"
> Identifier "Configured Monitor"
> EndSection
>
> Section "Screen"
> Identifier "Default Screen"
> Monitor "Configured Monitor"
> Device "Configured Video Device"
> EndSection

OK try this as an xorg.conf

Section "Files"
EndSection

Section "InputDevice"
 Identifier "Generic Keyboard"
 Driver "kbd"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "us"
EndSection

Section "InputDevice"
 Identifier "Configured Mouse"
 Driver "mouse"
 Option "CorePointer"
 Option "Device" "/dev/input/mice"
 Option "Protocol" "ImPS/2"
 Option "ZAxisMapping" "4 5"
 Option "Emulate3Buttons" "true"
EndSection

Section "Module"

Load "glx"
Load "dri"

 Section "Device"
  Identifier "Trident driver"
         Driver trident_drv
 EndSection

 Section "Monitor"
  Identifier "Configured Monitor"
        option "ddc"
 EndSection

 Section "Screen"
  Identifier "Default Screen"
  Monitor "Configured Monitor"
  Device "trident driver"
        DefaultDepth 24
         subsection "Display"
                 Modes "1024x768"
         endsubsection
 EndSection

Just copy and paste this into an editor save it in /etc/X11 as xorg.conf

If it doesn't work...look at the xorg.log in /var/logs for some clues as
to what xorg doesn't like. If you can't sort it out, send me the log.

Frank

Revision history for this message
Hoa Le (leth5591) said :
#7

Hi Frank,
That didn't work, because after restarting I saw 2 messages: "EE: Problem parsing the config file and error parsing the config file". I then restarted the kernel in recovery mode. Going back into thexorg.conf file, I noticed the old file /etc/X11/xorg.conf.20080930210820 as follows:

Section "InputDevice"
 Identifier "Generic Keyboard"
 Driver "kbd"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "us"
 Option "XkbOptions" "lv3:ralt_switch"
EndSection

Section "InputDevice"
 Identifier "Configured Mouse"
 Driver "mouse"
 Option "CorePointer"
 Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
 Identifier "Synaptics Touchpad"
 Driver "synaptics"
 Option "SendCoreEvents" "true"
 Option "Device" "/dev/psaux"
 Option "Protocol" "auto-dev"
 Option "HorizEdgeScroll" "0"
EndSection

Section "Device"
 Identifier "Configured Video Device"
 Boardname "VESA driver (generic)"
 Busid "PCI:1:0:0"
 Driver "vesa"
 Screen 0
EndSection

Section "Monitor"
 Identifier "Configured Monitor"
 Vendorname "Generic LCD Display"
 Modelname "LCD Panel 1024x768"
 Horizsync 31.5-48.0
 Vertrefresh 56.0 - 65.0
  modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
  modeline "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
  modeline "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
  modeline "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -vsync -hsync
 Gamma 1.0
EndSection

Section "Screen"
 Identifier "Default Screen"
 Monitor "Configured Monitor"
 Device "Configured Video Device"
 Defaultdepth 24
 SubSection "Display"
  Depth 24
  Virtual 1024 768
  Modes "1024x768@60" "800x600@60" "800x600@56" "640x480@60"
 EndSubSection
EndSection

Section "ServerLayout"
 Identifier "Default Layout"
  screen 0 "Default Screen" 0 0
 Inputdevice "Synaptics Touchpad"
EndSection
Section "Module"
 Load "glx"
 Load "GLcore"
 Load "v4l"
EndSection
Section "device" #
 Identifier "device1"
 Boardname "VESA driver (generic)"
 Busid "PCI:1:0:0"
 Driver "vesa"
 Screen 1
EndSection
Section "screen" #
 Identifier "screen1"
 Device "device1"
 Defaultdepth 24
 Monitor "monitor1"
 SubSection "Display"
  Depth 24
  Modes "640x480@60"
 EndSubSection
EndSection
Section "monitor" #
 Identifier "monitor1"
 Vendorname "Plug 'n' Play"
 Modelname "Plug 'n' Play"
  modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
 Gamma 1.0
EndSection
Section "ServerFlags"
EndSection

I also saw the Xorg.failsafe.log.old and here it is:

X.Org X Server 1.5.2
Release Date: 10 October 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-16-server i686 Ubuntu
Current Operating System: Linux hoe1-laptop 2.6.27-7-generic #1 SMP Fri Oct 17 22:24:21 UTC 2008 i686
Build Date: 18 October 2008 10:09:44AM
xorg-server 2:1.5.2-2build1 (<email address hidden>)
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: "/var/log/Xorg.failsafe.log", Time: Sun Oct 19 23:56:38 2008
(++) Using config file: "/etc/X11/xorg.conf.failsafe"
(==) No Layout section. Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Configured Monitor"
(**) | |-->Device "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified. Using compiled-in default.
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
 Entry deleted from font path.
(==) FontPath set to:
 /usr/share/fonts/X11/misc,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
 If no devices become available, reconfigure HAL or disable AllowEmptyInput.
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81d8a40
(II) Module ABI versions:
 X.Org ANSI C Emulation: 0.4
 X.Org Video Driver: 4.1
 X.Org XInput driver : 2.1
 X.Org Server Extension : 1.1
 X.Org Font Renderer : 0.6
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0@1:0:0) Trident Microsystems CyberBlade/XP rev 99, Mem @ 0xfc000000/0, 0xfbc00000/0, 0xf8000000/0, 0xf7ff8000/0, BIOS @ 0x????????/65536
(II) System resource ranges:
 [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) LoadModule: "extmod"

(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 1.1
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"

(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 1.1
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"

(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 ABI class: X.Org Server Extension, version 1.1
(==) AIGLX enabled
(==) Exporting typical set of GLX visuals
(II) Loading extension GLX
(II) LoadModule: "freetype"

(II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
 compiled for 1.5.2, module version = 2.1.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.6
(II) Loading font FreeType
(II) LoadModule: "record"

(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.13.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 1.1
(II) Loading extension RECORD
(II) LoadModule: "dri"

(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 ABI class: X.Org Server Extension, version 1.1
(II) Loading extension XFree86-DRI
(II) LoadModule: "vesa"

(II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
(II) Module vesa: vendor="X.Org Foundation"
 compiled for 1.5.0, module version = 1.3.0
 Module class: X.Org Video Driver
 ABI class: X.Org Video Driver, version 4.1
(II) VESA: driver for VESA chipsets: vesa
(II) Primary Device is: PCI 01@00:00:0
(II) resource ranges after probing:
 [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"

(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.1.0
 ABI class: X.Org Video Driver, version 4.1
(II) Loading sub module "int10"
(II) LoadModule: "int10"

(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 ABI class: X.Org Video Driver, version 4.1
(II) VESA(0): initializing int10
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 2.0
(II) VESA(0): VESA VBE Total Mem: 16384 kB
(II) VESA(0): VESA VBE OEM: Trident CYBER 9910
(II) VESA(0): VESA VBE OEM Software Rev: 2.0
(II) VESA(0): VESA VBE OEM Vendor: TRIDENT MICROSYSTEMS INC.
(II) VESA(0): VESA VBE OEM Product: CYBER 9910
(II) VESA(0): VESA VBE OEM Product Rev: NTT 7.0 (24.25)
(II) VESA(0): Creating default Display subsection in Screen section
 "Default Screen" for depth/fbbpp 24/32
(==) VESA(0): Depth 24, (--) framebuffer bpp 32
(==) VESA(0): RGB weight 888
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) VESA(0): VESA VBE DDC supported
(II) VESA(0): VESA VBE DDC Level 2
(II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
f000:74ce: 01 ILLEGAL EXTENDED X86 OPCODE!
(II) VESA(0): VESA VBE DDC invalid
(II) VESA(0): Searching for matching VESA mode(s):
*Mode: 11b (1280x1024)
 ModeAttributes: 0x29b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 5120
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 2
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 11a (1280x1024)
 ModeAttributes: 0x29b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 2560
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 5
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 119 (1280x1024)
 ModeAttributes: 0x29b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 2560
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 5
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 1
 RsvdFieldPosition: 15
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
*Mode: 118 (1024x768)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 4096
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 4
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 107 (1280x1024)
 ModeAttributes: 0x29b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1280
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 11
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
*Mode: 112 (640x480)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 2560
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 12
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
*Mode: 115 (800x600)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 3200
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 7
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 116 (1024x768)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 2048
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 9
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 1
 RsvdFieldPosition: 15
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 117 (1024x768)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 2048
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 9
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 113 (800x600)
 ModeAttributes: 0x19b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1600
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 16
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 1
 RsvdFieldPosition: 15
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 114 (800x600)
 ModeAttributes: 0x19b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1600
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 16
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 110 (640x480)
 ModeAttributes: 0x19b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1280
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 24
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 1
 RsvdFieldPosition: 15
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 111 (640x480)
 ModeAttributes: 0x19b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1280
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 24
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 105 (1024x768)
 ModeAttributes: 0x39f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1024
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 20
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 106 (1280x1024)
 ModeAttributes: 0x29b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 160
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 3
 BankSize: 0
 NumberOfImages: 24
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 10d (320x200)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 640
 XResolution: 320
 YResolution: 200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 127
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 1
 RsvdFieldPosition: 15
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 10e (320x200)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 640
 XResolution: 320
 YResolution: 200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 127
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
*Mode: 10f (320x200)
 ModeAttributes: 0x39b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 1280
 XResolution: 320
 YResolution: 200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 63
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 100 (640x400)
 ModeAttributes: 0x19f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 640
 XResolution: 640
 YResolution: 400
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 63
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 101 (640x480)
 ModeAttributes: 0x19f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 640
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 50
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 103 (800x600)
 ModeAttributes: 0x19f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 800
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 31
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 104 (1024x768)
 ModeAttributes: 0x29f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 128
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 3
 BankSize: 0
 NumberOfImages: 41
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 109 (132x25)
 ModeAttributes: 0xe
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xb800
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 264
 XResolution: 132
 YResolution: 25
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 255
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 10a (132x43)
 ModeAttributes: 0xe
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xb800
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 264
 XResolution: 132
 YResolution: 43
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 255
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 10c (132x60)
 ModeAttributes: 0xe
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xb800
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 264
 XResolution: 132
 YResolution: 60
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 255
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 108 (80x60)
 ModeAttributes: 0xf
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xb800
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 160
 XResolution: 80
 YResolution: 60
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 255
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 102 (800x600)
 ModeAttributes: 0x9f
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 100
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 3
 BankSize: 0
 NumberOfImages: 63
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000
Mode: 6a (800x600)
 ModeAttributes: 0x9e
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0009466
 BytesPerScanline: 100
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 4
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 3
 BankSize: 0
 NumberOfImages: 63
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xfc000000

(II) VESA(0): Total Memory: 256 64KB banks (16384kB)
(II) VESA(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode "1280x1024" (no mode of this name)
(II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
(II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
(II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
(II) VESA(0): Not using built-in mode "320x200" (no mode of this name)
(WW) VESA(0): No valid modes left. Trying less strict filter...
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 50.00-70.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode "1280x1024" (hsync out of range)
(II) VESA(0): Not using built-in mode "1024x768" (hsync out of range)
(II) VESA(0): Not using built-in mode "320x200" (illegal horizontal timings)
(--) VESA(0): Virtual size is 800x600 (pitch 800)
(**) VESA(0): *Built-in mode "800x600"
(**) VESA(0): *Built-in mode "640x480"
(==) VESA(0): DPI set to (96, 96)
(II) VESA(0): Attempting to use 60Hz refresh for mode "800x600" (115)
(II) VESA(0): Attempting to use 60Hz refresh for mode "640x480" (112)
(**) VESA(0): Using "Shadow Framebuffer"
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"

(II) Loading /usr/lib/xorg/modules//libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.1.0
 ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "fb"
(II) LoadModule: "fb"

(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 1.0.0
 ABI class: X.Org ANSI C Emulation, version 0.4
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
 [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) Loading sub module "int10"
(II) LoadModule: "int10"

(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) VESA(0): initializing int10
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 2.0
(II) VESA(0): VESA VBE Total Mem: 16384 kB
(II) VESA(0): VESA VBE OEM: Trident CYBER 9910
(II) VESA(0): VESA VBE OEM Software Rev: 2.0
(II) VESA(0): VESA VBE OEM Vendor: TRIDENT MICROSYSTEMS INC.
(II) VESA(0): VESA VBE OEM Product: CYBER 9910
(II) VESA(0): VESA VBE OEM Product Rev: NTT 7.0 (24.25)
(II) VESA(0): virtual address = 0xb68e5000,
 physical address = 0xfc000000, size = 16777216
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Backing store disabled
(II) VESA(0): DPMS enabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) config/hal: Adding input device Macintosh mouse button emulation
(II) LoadModule: "evdev"

(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
 compiled for 1.5.2, module version = 2.0.99
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 2.1
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Configuring as mouse
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) config/hal: Adding input device ImPS/2 Generic Wheel Mouse
(**) ImPS/2 Generic Wheel Mouse: always reports core events
(**) ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event7"
(II) ImPS/2 Generic Wheel Mouse: Found x and y relative axes
(II) ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
(II) ImPS/2 Generic Wheel Mouse: Configuring as mouse
(II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE)
(**) ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
(**) ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) AT Translated Set 2 keyboard: xkb_rules: "evdev"
(**) Option "xkb_model" "pc105"
(**) AT Translated Set 2 keyboard: xkb_model: "pc105"
(**) Option "xkb_layout" "us"
(**) AT Translated Set 2 keyboard: xkb_layout: "us"
(II) config/hal: Adding input device Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel
(**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: always reports core events
(**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Device: "/dev/input/event2"
(II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found x and y relative axes
(II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found 4 mouse buttons
(II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Configuring as mouse
(II) XINPUT: Adding extended input device "Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel" (type: MOUSE)
(**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: YAxisMapping: buttons 4 and 5
(**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event6"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Video Bus: xkb_rules: "evdev"
(**) Option "xkb_model" "pc105"
(**) Video Bus: xkb_model: "pc105"
(**) Option "xkb_layout" "us"
(**) Video Bus: xkb_layout: "us"
(II) Macintosh mouse button emulation: Close
(II) UnloadModule: "evdev"
(II) ImPS/2 Generic Wheel Mouse: Close
(II) UnloadModule: "evdev"
(II) AT Translated Set 2 keyboard: Close
(II) UnloadModule: "evdev"
(II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Close
(II) UnloadModule: "evdev"
(II) Video Bus: Close
(II) UnloadModule: "evdev"

That's all for now. I am looking forward to hearing your suggestions.
Thank you kindly for your help.

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#8

Try to use displayconfig-gtk: Simple gtk tool to change xserver settings like graphics card driver or monitor.

-- Please open a Terminal from the menu Applications → Accessories → Terminal and type or better copy and paste:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install displayconfig-gtk

-- give your user password when requested, you don't see nothing when you type it, then press enter.

Then to configure your monitor resolution:

sudo displayconfig-gtk

then try to select and configure your monitor from the list or try to define your monitor by putting the inf file take from xp driver cd or floppy or from the net. If you are introuble due low resolution to push hidden botton out of the screen visual try to press
the ALT key on keyboard and drag the working windows to get access to buttons.

Reboot your pc.

Then go to menu System → Preferences → Screen resolution to try to get high screen resolution setup

Try more than once and keep the refresh/resolution frequency to the lowest value, then choose a high value and retry.

If this solves you problem, please mark as Solved. If not, please clarify your question.

Hope this helps

Revision history for this message
Hoa Le (leth5591) said :
#9

Hello marcobra,

As I said in my first post, displayconfig-gtk is not available when I upgraded to Intrepid beta (but was available in Hardy). Following your advice, i.e. "...sudo displayconfig-gtk" just to see what happen, this is what I got:

"Package displayconfig-gtk is not available, but is referred to by another package.
E: Package displayconfig-gtk has no installation candidate"

I also checked with Synaptic Package Manager but failed to find "displayconfig-gtk".

Sigh! Thanks anyhow.

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#10

You are right with Ubuntu 8.10 displayconfig-gtk was disappeared:
https://launchpad.net/ubuntu/intrepid/+source/displayconfig-gtk/0.3.10
and i cannot find any useful info for your Trident Microsystems CyberBlade/XP (rev 63)

Hope this helps

Revision history for this message
Frank McCormick (fmccormick) said :
#11

He
  I'll have to get back to you tomorrow but this xorg.conf file is
useless to you because it's using VESA, and not your trident_drv driver.
It loads the driver but then can't seem to find any modes it likes.

More tomorrow

Hoa Le wrote:
> Question #49247 on xorg in ubuntu changed:
> https://answers.launchpad.net/ubuntu/+source/xorg/+question/49247
>
> Status: Answered => Open
>
> Hoa Le is still having a problem:
> Hi Frank,
> That didn't work, because after restarting I saw 2 messages:

"EE: Problem parsing the config file and error parsing the config file".

I then restarted the kernel in recovery mode.

Going back into thexorg.conf file, I noticed the old file
/etc/X11/xorg.conf.20080930210820 as follows:
>
>
> Section "InputDevice"
> Identifier "Generic Keyboard"
> Driver "kbd"
> Option "XkbRules" "xorg"
> Option "XkbModel" "pc105"
> Option "XkbLayout" "us"
> Option "XkbOptions" "lv3:ralt_switch"
> EndSection
>
> Section "InputDevice"
> Identifier "Configured Mouse"
> Driver "mouse"
> Option "CorePointer"
> Option "Emulate3Buttons" "true"
> EndSection
>
> Section "InputDevice"
> Identifier "Synaptics Touchpad"
> Driver "synaptics"
> Option "SendCoreEvents" "true"
> Option "Device" "/dev/psaux"
> Option "Protocol" "auto-dev"
> Option "HorizEdgeScroll" "0"
> EndSection
>
> Section "Device"
> Identifier "Configured Video Device"
> Boardname "VESA driver (generic)"
> Busid "PCI:1:0:0"
> Driver "vesa"
> Screen 0
> EndSection
>
> Section "Monitor"
> Identifier "Configured Monitor"
> Vendorname "Generic LCD Display"
> Modelname "LCD Panel 1024x768"
> Horizsync 31.5-48.0
> Vertrefresh 56.0 - 65.0
> modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
> modeline "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
> modeline "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
> modeline "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -vsync -hsync
> Gamma 1.0
> EndSection
>
> Section "Screen"
> Identifier "Default Screen"
> Monitor "Configured Monitor"
> Device "Configured Video Device"
> Defaultdepth 24
> SubSection "Display"
> Depth 24
> Virtual 1024 768
> Modes "1024x768@60" "800x600@60" "800x600@56" "640x480@60"
> EndSubSection
> EndSection
>
> Section "ServerLayout"
> Identifier "Default Layout"
> screen 0 "Default Screen" 0 0
> Inputdevice "Synaptics Touchpad"
> EndSection
> Section "Module"
> Load "glx"
> Load "GLcore"
> Load "v4l"
> EndSection
> Section "device" #
> Identifier "device1"
> Boardname "VESA driver (generic)"
> Busid "PCI:1:0:0"
> Driver "vesa"
> Screen 1
> EndSection
> Section "screen" #
> Identifier "screen1"
> Device "device1"
> Defaultdepth 24
> Monitor "monitor1"
> SubSection "Display"
> Depth 24
> Modes "640x480@60"
> EndSubSection
> EndSection
> Section "monitor" #
> Identifier "monitor1"
> Vendorname "Plug 'n' Play"
> Modelname "Plug 'n' Play"
> modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
> Gamma 1.0
> EndSection
> Section "ServerFlags"
> EndSection
>

Revision history for this message
Best Nate Chrysler (nchrysler) said :
#12

Hello - I think I had a similar issue with a Toshiba Tecra M1 with the "cyberbladeXP4" chipset. I would boot up in Intrepid and only get 800x600, but the screen was obviously capable of 1024x768.

After a bunch of research, I realized that the only issue was the kernel/driver was using default sync rates, which were too low for a valid 1024x768. Here were the relevant lines from the log:

(II) VESA(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 Hz
-and-
(II) VESA(0): Not using built-in mode "1024x768" (hsync out of range)

After a bunch of trial and error, the change that got it working was simple: I added the following 2 lines to the "Monitor" section of the default xorg.conf, and restarted X (CTRL+ALT+Backspace):
HorizSync 28-50
VertRefresh 43-75

I hope this is helpful for someone! (or at least stays here long enough for the next time I install Ubuntu on this laptop!)

Revision history for this message
Hoa Le (leth5591) said :
#13

Thanks Nate Chrysler, that solved my question.

Revision history for this message
robcromar (robcromar) said :
#14

To Nate Chrysler:
This is by far the most effective and elegant solution to this problem I've found -- Solved my problem 100% as well! THANKS!

Revision history for this message
Tracy Mitchener (tracysandy30-gmail) said :
#15

Also a valid solution on an HP Pavilion XH555 with Trident Microsystems Cyberblade/XP (rev 63).
Thanks Nate Chrysler.

Revision history for this message
gogakuhei (gogakuhei) said :
#16

Add a Toshiba Satellite A20-S207 with a Trident CyberBlade XP2 graphics processor to the "fixed my problem" list. Thanks, Nate.