Resultados 1 al 12 de 12

Habiliar tarjeta Nvidia en Ubuntu 7.04

  1. #1 Habiliar tarjeta Nvidia en Ubuntu 7.04 
    Avanzado
    Fecha de ingreso
    Aug 2004
    Mensajes
    201
    Descargas
    0
    Uploads
    0
    Saludos a todos. Hace tiempo que no se me ve el pelo por aquí, no se porqué la verdad.

    Resulta que que tengo una placa base mastock con una CPU de arquitectura AMD64 con una tarjeta aceleradora NVIDIA GeForce 6100 nForce 430. Hace tiempo instalé la última distribución de Ubuntu (Ubuntu 7.04-desktop-amd64) y lo reconoce todo bien excepto la aceleradora (y quizás haya algún problemilla con la de sonido, que se escucha muy bajito).

    He intentado solucinarlo de la siguiente manera:

    1. He actualizado el núcleo.
    apt-get update
    2. He instalado los paquetes de los programas controladores de nvidia.
    apt-get install nvidia-kernel-common
    apt-get install nvidia-glx-new (que incluye los paquetes nvidia-glx y nvidia
    settings)
    3. He configurado el sistema para que use estos controladores
    modprobe nvidia
    update modules
    4. Incluí nvidia en el archivo de configuración de de los módulos de arranque
    (etc/modules), añadiendo la línea "nvidia" al final del fichero.
    5. Configuré el sistema gráfico para que cargase el módulo de envidia. Pa ello
    edité el fichero Xorg.conf.
    nano /etc/X11/Xorg.conf
    Busqué la sección "devices" y sustituí la línea del controlador "vesa" por la
    controlador "nvidia".

    Pero no ha dado resultado. Al reiniciar he me ha dado un fallo de congiguración en el Xwindows y he tenido que reiniciar en modo de recuperación para dejarlo todo como estaba y que vuelva a arrancar el entorno gráfico.

    ¿Alguien me puede hechar un cable?
    From mind to code
    Citar  
     

  2. #2  
    Moderador Global
    Fecha de ingreso
    Aug 2005
    Mensajes
    6.279
    Descargas
    7
    Uploads
    0
    Hola scanner,

    Cita Iniciado por scanner Ver mensaje
    lo reconoce todo bien excepto la aceleradora
    Lo que ocurre es que la aceleración gráfica en tarjetas nvidia sólo es posibla usando el driver propietario. Mucha gente recomienda automatix para instalar y configurar controladores propietarios.

    (y quizás haya algún problemilla con la de sonido, que se escucha muy bajito).
    Seguramente sólo se trate de la regulación del nivel de sonido. Puedes corregirlo con kmix o alsamixer si estás usando alsa.

    He intentado solucinarlo de la siguiente manera:

    1. He actualizado el núcleo.
    apt-get update
    Con eso actualizarías los repositorios de los paquetes para apt.

    2. He instalado los paquetes de los programas controladores de nvidia.
    apt-get install nvidia-kernel-common
    apt-get install nvidia-glx-new (que incluye los paquetes nvidia-glx y nvidia
    settings)
    3. He configurado el sistema para que use estos controladores
    modprobe nvidia
    update modules
    4. Incluí nvidia en el archivo de configuración de de los módulos de arranque
    (etc/modules), añadiendo la línea "nvidia" al final del fichero.
    5. Configuré el sistema gráfico para que cargase el módulo de envidia. Pa ello
    edité el fichero Xorg.conf.
    nano /etc/X11/Xorg.conf
    Busqué la sección "devices" y sustituí la línea del controlador "vesa" por la
    controlador "nvidia".

    Pero no ha dado resultado. Al reiniciar he me ha dado un fallo de congiguración en el Xwindows y he tenido que reiniciar en modo de recuperación para dejarlo todo como estaba y que vuelva a arrancar el entorno gráfico.

    ¿Alguien me puede hechar un cable?
    Primero de todo debes asegurarte de tener en tus repositorios la entrada correspondiente al software propietario para tu destribución (non-free)

    También has de estar seguro de tener el correspondiente módulo para el kernel. Para mí, y bajo debian, sería el paquete nvidia-kernel-2.6.18-4-486

    Después de esto será cuando instales el paquete nvidia-glx

    Ahora ya podrías configurar las X para usar el driver nvidia.

    Tienes que borrar (o comentar) las líneas referidas a los módulos "dri" o "GLCore" y asegurarte de que tienes ésta:
    Código:
    Load "glx"
    También cambiar, como ya hiciste, la opción "Driver" a 'nvidia'

    Si falla todo esto... ¡¡espero que tengas una copia de seguridad de /etc/X11/xorg.conf!! Es lo primero.

    Ahora limpiamos el búfer.........

    No el del PC, sino el de nuestro cerebro xD

    Hay una forma más sencilla de instalar el módulo, y es con la asistencia de module-assistant

    Sólo habría que:
    Código:
    # apt-get install module-assistant gcc nvidia-kernel-common
    Código:
    # m-a update
    Código:
    # m-a prepare
    Código:
    # m-a auto-install nvidia
    Salu2


    Keep on Rollin'

    . . . . . . . . . . . . . . . . . . . .
    [[ NORMAS DEL FORO ]]
    . . . . . . . . . . . . . . . . . . . .
    __________
    Citar  
     

  3. #3  
    Avanzado
    Fecha de ingreso
    Aug 2004
    Mensajes
    201
    Descargas
    0
    Uploads
    0
    Muchas gracias j8k6f4v9j. Me ha venido muy bien lo de "Kmix" para el sonido, pero en por lo de la tarjeta Nvidia ha vuelto ha darme exactamente el mismo error; el Xorg.conf mal configurado, por lo que no carga el entorno gráfico.

    He tenido que cargar el sistema en modo de recuperación y dejarlo todo como estaba, por lo que ahora estoy como al principio, pero al menos con el sonido en condiciones.

    No se que habré hecho mal, tal vez el controlador que he instalado no sea el de mi tarjeta (lo hice con el asistente) o no he modificado la línea del Xorg.conf que debia (modifiqué la linea del driver del apartado "Devices").
    From mind to code
    Citar  
     

  4. #4  
    Moderador Global
    Fecha de ingreso
    Aug 2005
    Mensajes
    6.279
    Descargas
    7
    Uploads
    0
    Pega aquí o en nopaste.com tu xorg.conf y la salida de error (la tienes en /var/log/Xorg.0.log )

    Salu2


    Keep on Rollin'

    . . . . . . . . . . . . . . . . . . . .
    [[ NORMAS DEL FORO ]]
    . . . . . . . . . . . . . . . . . . . .
    __________
    Citar  
     

  5. #5  
    Moderador HH
    Fecha de ingreso
    Mar 2003
    Ubicación
    Galiza
    Mensajes
    3.919
    Descargas
    8
    Uploads
    1
    Yo también tuve problemas similares con Ubunto 7.04 en un PC con el mismo chipset (con la gráfica más concretamente) pero debe ser cosa de Ubunto porque nunca tuve problemas con FreeSpire ni Sise, incluso el otro día me instale la última versión de FeeSpire y a la primera todo. Aunque a mi me sucedio con la versión de 32 bits, con la de 64 bits también queria tocarme los huevos pero al final consegui que tirara sin problemas (bueno tampoco que le diera mucho tiempo para que diera problemas, al día siguiente elimine esa instalación).

    La mejor solucion es que pases de Ubunto y prueben con una distribución un poco más "seria", si quieres algo sencillo y que no te de problemas y se parezca a Ubunto (aunque más bien habría que decir Kubunto ya que su escritorio predefinido es KDE) prueba FreeSpire, por encima te vendrá con codecs, drivers... La verdad es que escepto que no ten envian copia a casa gratis, las comparaciones entre FreeSpire y Ubunto no dejan en muy buen lugar a ubunto y eso que su forma de trabajar es similar...

    Un Saludo
    He conocido muchos dioses. Quien niegue su existencia está tan ciego como el que confía en ellos con una fe desmesurada. Robert E. Howard
    La suerte ayuda a la mente preparada.
    Citar  
     

  6. #6  
    Avanzado
    Fecha de ingreso
    Aug 2004
    Mensajes
    201
    Descargas
    0
    Uploads
    0
    Bueno, aquí esta la salida del error. Yo no entiendo ni papa, a ver si Vd. me puede decir algo.

    X Window System Version 7.2.0
    Release Date: 22 January 2007
    X Protocol Version 11, Revision 0, Release 7.2
    Build Operating System: Linux Ubuntu
    Current Operating System: Linux AMD64 2.6.20-16-generic #2 SMP Thu Jun 7 19:00:28 UTC 2007 x86_64
    Build Date: 04 April 2007
    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.0.log", Time: Fri Jun 22 16:40:47 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Default Layout"
    (**) |-->Screen "Default Screen" (0)
    (**) | |-->Monitor "Generic Monitor"
    (**) | |-->Device "Generic Video Card"
    (**) |-->Input Device "Generic Keyboard"
    (**) |-->Input Device "Configured Mouse"
    (**) |-->Input Device "stylus"
    (**) |-->Input Device "cursor"
    (**) |-->Input Device "eraser"
    (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,
    /usr/share/fonts/X11/misc,
    /usr/X11R6/lib/X11/fonts/misc,
    /usr/share/fonts/X11/cyrillic,
    /usr/share/fonts/X11/100dpi/:unscaled,
    /usr/share/fonts/X11/75dpi/:unscaled,
    /usr/share/fonts/X11/Type1,
    /usr/X11R6/lib/X11/fonts/Type1,
    /usr/share/fonts/X11/100dpi,
    /usr/share/fonts/X11/75dpi,
    /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
    (==) RgbPath set to "/etc/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x7a16e0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.1
    X.Org XInput driver : 0.7
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.1
    (++) using VT number 7

    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 10de,03ea card 1458,5001 rev a1 class 05,00,00 hdr 00
    (II) PCI: 00:01:0: chip 10de,03e0 card 1458,0c11 rev a2 class 06,01,00 hdr 80
    (II) PCI: 00:01:1: chip 10de,03eb card 1458,0c11 rev a2 class 0c,05,00 hdr 80
    (II) PCI: 00:01:2: chip 10de,03f5 card 1458,0c11 rev a2 class 05,00,00 hdr 80
    (II) PCI: 00:02:0: chip 10de,03f1 card 1458,5004 rev a2 class 0c,03,10 hdr 80
    (II) PCI: 00:02:1: chip 10de,03f2 card 1458,5004 rev a2 class 0c,03,20 hdr 80
    (II) PCI: 00:04:0: chip 10de,03f3 card 0000,0000 rev a1 class 06,04,01 hdr 01
    (II) PCI: 00:05:0: chip 10de,03f0 card 1458,a002 rev a2 class 04,03,00 hdr 80
    (II) PCI: 00:06:0: chip 10de,03ec card 1458,5002 rev a2 class 01,01,8a hdr 00
    (II) PCI: 00:07:0: chip 10de,03ef card 1458,e000 rev a2 class 06,80,00 hdr 00
    (II) PCI: 00:08:0: chip 10de,03f6 card 1458,b002 rev a2 class 01,01,85 hdr 80
    (II) PCI: 00:08:1: chip 10de,03f6 card 1458,b002 rev a2 class 01,01,85 hdr 80
    (II) PCI: 00:09:0: chip 10de,03e8 card 0000,0000 rev a2 class 06,04,00 hdr 01
    (II) PCI: 00:0b:0: chip 10de,03e9 card 0000,0000 rev a2 class 06,04,00 hdr 01
    (II) PCI: 00:0c:0: chip 10de,03e9 card 0000,0000 rev a2 class 06,04,00 hdr 01
    (II) PCI: 00:0d:0: chip 10de,03d0 card 1458,d000 rev a2 class 03,00,00 hdr 00
    (II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 01:0e:0: chip 104c,8024 card 1458,1000 rev 00 class 0c,00,10 hdr 00
    (II) PCI: End of PCI scan
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:4:0), (0,1,1), BCTRL: 0x0200 (VGA_EN is cleared)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xf5000000 - 0xf50fffff (0x100000) MX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:9:0), (0,2,2), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:11:0), (0,3,3), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x00009000 - 0x00009fff (0x1000) IX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 4: bridge is at (0:12:0), (0,4,4), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 4 I/O range:
    [0] -1 0 0x00008000 - 0x00008fff (0x1000) IX[B]
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:24:0), (0,0,4), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
    (--) PCI:*(0:13:0) nVidia Corporation GeForce 6100 nForce 430 rev 162, Mem @ 0xf2000000/24, 0xe0000000/28, 0xf3000000/24
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 - 0x000000ff (0x100) IX[B]
    (II) Active PCI resource ranges:
    [0] -1 0 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [1] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [2] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [3] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [4] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [5] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [6] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [7] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [8] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [9] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [10] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [11] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [12] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [13] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [14] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [15] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [16] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [17] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [18] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [19] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [20] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [21] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [22] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [23] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [24] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [25] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [1] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [2] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [3] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [4] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [5] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [6] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [7] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [8] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [9] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [10] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [11] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [12] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [13] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [14] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [15] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [16] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [17] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [18] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [19] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [20] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [21] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [22] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [23] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [24] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [25] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 - 0x000000ff (0x100) IX[B]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [5] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [6] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [7] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [8] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [9] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [10] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [11] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [12] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [14] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [17] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [22] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [27] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [28] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [29] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [30] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [31] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    (II) LoadModule: "i2c"
    (II) Loading /usr/lib/xorg/modules//libi2c.so
    (II) Module i2c: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.2.0
    ABI class: X.Org Video Driver, version 1.1
    (II) LoadModule: "ddc"
    (II) Loading /usr/lib/xorg/modules//libddc.so
    (II) Module ddc: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.1
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (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: "freetype"
    (II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 7.2.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.9631
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) Loading extension GLX
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.1
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.0
    ABI class: X.Org Video Driver, version 1.1
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.3.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.1
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "wacom"
    (II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
    (II) Module wacom: vendor="X.Org Foundation"
    compiled for 4.3.99.902, module version = 1.0.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) Wacom driver level: 47-0.7.7-7 $
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00:0d:0
    (--) Chipset vesa found
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [5] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [6] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [7] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [8] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [9] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [10] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [11] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [12] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [14] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [17] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [22] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [27] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [28] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [29] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [30] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [31] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [5] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [6] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [7] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [8] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [9] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [10] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [11] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [12] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [14] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
    [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [20] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [21] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [22] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [23] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [24] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [25] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [26] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [27] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [28] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [29] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [30] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [31] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [32] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [33] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [34] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
    [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
    (II) Setting vga for screen 0.
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Reloading /usr/lib/xorg/modules//libvbe.so
    (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 3.0
    (II) VESA(0): VESA VBE Total Mem: 65536 kB
    (II) VESA(0): VESA VBE OEM: NVIDIA
    (II) VESA(0): VESA VBE OEM Software Rev: 5.97
    (II) VESA(0): VESA VBE OEM Vendor: Build 060809.4

    (II) VESA(0): VESA VBE OEM Product: MCP61 - mcp61-80
    (II) VESA(0): VESA VBE OEM Product Rev: Chip Rev
    (**) 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) Reloading /usr/lib/xorg/modules//libddc.so
    (II) VESA(0): VESA VBE DDC supported
    (II) VESA(0): VESA VBE DDC Level none
    (II) VESA(0): VESA VBE DDC transfer in appr. 0 sec.
    (II) VESA(0): VESA VBE DDC read failed
    (II) VESA(0): Searching for matching VESA mode(s):
    Mode: 100 (640x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 640
    XResolution: 640
    YResolution: 400
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 14
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 14
    LinNumberOfImagePages: 14
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 101 (640x480)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 640
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 10
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 10
    LinNumberOfImagePages: 10
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 102 (800x600)
    ModeAttributes: 0x31f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 100
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 4
    BitsPerPixel: 4
    NumberOfBanks: 1
    MemoryModel: 3
    BankSize: 0
    NumberOfImages: 14
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 100
    BnkNumberOfImagePages: 14
    LinNumberOfImagePages: 14
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 108500000
    Mode: 103 (800x600)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 800
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 6
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 800
    BnkNumberOfImagePages: 6
    LinNumberOfImagePages: 6
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 104 (1024x768)
    ModeAttributes: 0x31f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 128
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 4
    BitsPerPixel: 4
    NumberOfBanks: 1
    MemoryModel: 3
    BankSize: 0
    NumberOfImages: 6
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 128
    BnkNumberOfImagePages: 6
    LinNumberOfImagePages: 6
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 108500000
    Mode: 105 (1024x768)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1024
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 3
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1024
    BnkNumberOfImagePages: 3
    LinNumberOfImagePages: 3
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 106 (1280x1024)
    ModeAttributes: 0x31f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 160
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 4
    BitsPerPixel: 4
    NumberOfBanks: 1
    MemoryModel: 3
    BankSize: 0
    NumberOfImages: 3
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 160
    BnkNumberOfImagePages: 3
    LinNumberOfImagePages: 3
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 108500000
    Mode: 107 (1280x1024)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 10e (320x200)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 640
    XResolution: 320
    YResolution: 200
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 30
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 30
    LinNumberOfImagePages: 30
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 10f (320x200)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 320
    YResolution: 200
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 14
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 14
    LinNumberOfImagePages: 14
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 111 (640x480)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 4
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 4
    LinNumberOfImagePages: 4
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 112 (640x480)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 2560
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 2560
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 114 (800x600)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1600
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 2
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1600
    BnkNumberOfImagePages: 2
    LinNumberOfImagePages: 2
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 115 (800x600)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 3200
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 3200
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 117 (1024x768)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 2048
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 2048
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 118 (1024x768)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 4096
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 4096
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 11a (1280x1024)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 2560
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 2560
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *(II) VESA(0): Not using built-in mode "1280x1024" (hsync out of range)
    Mode: 11b (1280x1024)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 5120
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 5120
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 130 (320x200)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 320
    XResolution: 320
    YResolution: 200
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 62
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 320
    BnkNumberOfImagePages: 62
    LinNumberOfImagePages: 62
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 131 (320x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 320
    XResolution: 320
    YResolution: 400
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 30
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 320
    BnkNumberOfImagePages: 30
    LinNumberOfImagePages: 30
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 132 (320x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 640
    XResolution: 320
    YResolution: 400
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 14
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 14
    LinNumberOfImagePages: 14
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 133 (320x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 320
    YResolution: 400
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 6
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 6
    LinNumberOfImagePages: 6
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 134 (320x240)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 320
    XResolution: 320
    YResolution: 240
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 30
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 320
    BnkNumberOfImagePages: 30
    LinNumberOfImagePages: 30
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 135 (320x240)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 640
    XResolution: 320
    YResolution: 240
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 19
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 19
    LinNumberOfImagePages: 19
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *Mode: 136 (320x240)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 320
    YResolution: 240
    XCharSize: 8
    YCharSize: 8
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 10
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 10
    LinNumberOfImagePages: 10
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 13d (640x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1280
    XResolution: 640
    YResolution: 400
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 6
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 6
    LinNumberOfImagePages: 6
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *(II) VESA(0): Not using built-in mode "640x400" (vrefresh out of range)
    Mode: 13e (640x400)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 2560
    XResolution: 640
    YResolution: 400
    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: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 2560
    BnkNumberOfImagePages: 2
    LinNumberOfImagePages: 2
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000
    Mode: 145 (1600x1200)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1600
    XResolution: 1600
    YResolution: 1200
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1600
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 146 (1600x1200)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 3200
    XResolution: 1600
    YResolution: 1200
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 3200
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 147 (1400x1050)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 1400
    XResolution: 1400
    YResolution: 1050
    XCharSize: 8
    YCharSize: 14
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 1400
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    Mode: 148 (1400x1050)
    ModeAttributes: 0x39f
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 2800
    XResolution: 1400
    YResolution: 1050
    XCharSize: 8
    YCharSize: 14
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 2800
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 229500000
    *(II) VESA(0): Not using built-in mode "2048x1536" (hsync out of range)
    Mode: 152 (2048x1536)
    ModeAttributes: 0x3db
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc0009e4d
    BytesPerScanline: 8192
    XResolution: 2048
    YResolution: 1536
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xe0000000
    LinBytesPerScanLine: 8192
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 229500000

    (II) VESA(0): Total Memory: 1024 64KB banks (65536kB)
    (II) VESA(0): Generic Monitor: Using hsync range of 28.00-51.00 kHz
    (II) VESA(0): Generic Monitor: Using vrefresh range of 43.00-60.00 Hz
    (--) VESA(0): Virtual size is 1024x768 (pitch 1024)
    (**) VESA(0): *Built-in mode "1024x768"
    (**) VESA(0): *Built-in mode "800x600"
    (**) VESA(0): *Built-in mode "640x480"
    (==) VESA(0): DPI set to (75, 75)
    (II) VESA(0): Attempting to use 60Hz refresh for mode "1024x768" (118)
    (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 7.2.0, module version = 1.1.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (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 7.2.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(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 0xf5000000 - 0xf5003fff (0x4000) MX[B]
    [5] -1 0 0xf5004000 - 0xf50047ff (0x800) MX[B]
    [6] -1 0 0xf5104000 - 0xf5104fff (0x1000) MX[B]
    [7] -1 0 0xf5108000 - 0xf5108fff (0x1000) MX[B]
    [8] -1 0 0xf5107000 - 0xf5107fff (0x1000) MX[B]
    [9] -1 0 0xf5100000 - 0xf5103fff (0x4000) MX[B]
    [10] -1 0 0xf5106000 - 0xf51060ff (0x100) MX[B]
    [11] -1 0 0xf5105000 - 0xf5105fff (0x1000) MX[B]
    [12] -1 0 0xf3000000 - 0xf3ffffff (0x1000000) MX[B](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
    [14] -1 0 0xf2000000 - 0xf2ffffff (0x1000000) MX[B](B)
    [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
    [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [20] -1 0 0x0000e400 - 0x0000e40f (0x10) IX[B]
    [21] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
    [22] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
    [23] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
    [24] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
    [25] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
    [26] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
    [27] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
    [28] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
    [29] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
    [30] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [31] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
    [32] -1 0 0x0000b800 - 0x0000b83f (0x40) IX[B]
    [33] -1 0 0x00001c00 - 0x00001c3f (0x40) IX[B]
    [34] -1 0 0x0000b000 - 0x0000b03f (0x40) IX[B]
    [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
    [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[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 3.0
    (II) VESA(0): VESA VBE Total Mem: 65536 kB
    (II) VESA(0): VESA VBE OEM: NVIDIA
    (II) VESA(0): VESA VBE OEM Software Rev: 5.97
    (II) VESA(0): VESA VBE OEM Vendor: Build 060809.4

    (II) VESA(0): VESA VBE OEM Product: MCP61 - mcp61-80
    (II) VESA(0): VESA VBE OEM Product Rev: Chip Rev
    (==) VESA(0): Write-combining range (0xe0000000,0x4000000)
    (II) VESA(0): virtual address = 0x2b1da5d43000,
    physical address = 0xe0000000, size = 67108864
    (==) VESA(0): Default visual is TrueColor
    (==) VESA(0): Backing store disabled
    (**) Option "dpms"
    (**) VESA(0): DPMS enabled
    (==) RandR enabled
    (II) Setting vga for screen 0.
    (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 XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (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
    (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    (**) Option "CoreKeyboard"
    (**) Generic Keyboard: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Generic Keyboard: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Generic Keyboard: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Generic Keyboard: XkbModel: "pc105"
    (**) Option "XkbLayout" "es"
    (**) Generic Keyboard: XkbLayout: "es"
    (**) Option "CustomKeycodes" "off"
    (**) Generic Keyboard: CustomKeycodes disabled
    (**) Option "Protocol" "ImPS/2"
    (**) Configured Mouse: Device: "/dev/input/mice"
    (**) Configured Mouse: Protocol: "ImPS/2"
    (**) Option "CorePointer"
    (**) Configured Mouse: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (**) Option "Emulate3Buttons" "true"
    (**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5"
    (**) Configured Mouse: ZAxisMapping: buttons 4 and 5
    (**) Configured Mouse: Buttons: 9
    (**) Option "SendCoreEvents"
    (**) stylus: always reports core events
    (**) stylus device is /dev/input/wacom
    (**) stylus is in absolute mode
    (**) stylus: forcing TabletPC ISD V4 protocol
    (**) WACOM: suppress value is 2
    (**) Option "BaudRate" "9600"
    (**) stylus: serial speed 9600
    (**) Option "SendCoreEvents"
    (**) cursor: always reports core events
    (**) cursor device is /dev/input/wacom
    (**) cursor is in relative mode
    (**) cursor: forcing TabletPC ISD V4 protocol
    (**) WACOM: suppress value is 2
    (**) Option "BaudRate" "9600"
    (**) cursor: serial speed 9600
    (**) Option "SendCoreEvents"
    (**) eraser: always reports core events
    (**) eraser device is /dev/input/wacom
    (**) eraser is in absolute mode
    (**) eraser: forcing TabletPC ISD V4 protocol
    (**) WACOM: suppress value is 2
    (**) Option "BaudRate" "9600"
    (**) eraser: serial speed 9600
    (II) XINPUT: Adding extended input device "eraser" (type: Wacom Eraser)
    (II) XINPUT: Adding extended input device "cursor" (type: Wacom Cursor)
    (II) XINPUT: Adding extended input device "stylus" (type: Wacom Stylus)
    (II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
    (II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
    (**) Option "Device" "/dev/input/wacom"
    (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
    No such file or directory.
    Error opening /dev/input/wacom : Success
    (**) Option "Device" "/dev/input/wacom"
    (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
    No such file or directory.
    Error opening /dev/input/wacom : Success
    (**) Option "Device" "/dev/input/wacom"
    (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
    No such file or directory.
    Error opening /dev/input/wacom : Success
    (II) Configured Mouse: ps2EnableDataReporting: succeeded
    Could not init font path element /usr/X11R6/lib/X11/fonts/misc, removing from list!
    Could not init font path element /usr/share/fonts/X11/cyrillic, removing from list!
    Could not init font path element /usr/X11R6/lib/X11/fonts/Type1, removing from list!
    SetGrabKeysState - disabled
    SetGrabKeysState - enabled
    From mind to code
    Citar  
     

  7. #7  
    Avanzado
    Fecha de ingreso
    Aug 2004
    Mensajes
    201
    Descargas
    0
    Uploads
    0
    Cita Iniciado por gondar_f Ver mensaje
    las comparaciones entre FreeSpire y Ubunto no dejan en muy buen lugar a ubunto y eso que su forma de trabajar es similar...
    Un Saludo
    Si para dentro de una semana no he conseguido que tire mi tarjeta acelaradora me paso a FreeSpire.

    Gracias a todos por intentar echarme un cable.
    From mind to code
    Citar  
     

  8. #8  
    Moderador Global
    Fecha de ingreso
    Aug 2005
    Mensajes
    6.279
    Descargas
    7
    Uploads
    0
    Primero tienes el error de glx, y eso es porque no tienes el driver oficial de nvidia compilado e instalado o no lo estás usando (no has pegado el contenido del archivo /etc/X11/xorg.conf)
    (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    Y luego puedes borrar las secciones completas que buscan /dev/input/wacom, si no vas a usar este tipo de dispositivos
    (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
    Salu2


    Keep on Rollin'

    . . . . . . . . . . . . . . . . . . . .
    [[ NORMAS DEL FORO ]]
    . . . . . . . . . . . . . . . . . . . .
    __________
    Citar  
     

  9. #9  
    Colaborador HH
    Fecha de ingreso
    Jun 2006
    Ubicación
    Uruguay
    Mensajes
    1.451
    Descargas
    11
    Uploads
    0
    Yo tengo nvidia e instalé los drivers enseguida con automatix

    http://www.getautomatix.com/wiki/index.php?title=Installation#Ubuntu_7.04_.28Feisty_i386.29

    es un deb. más facil no podia ser

    Espero que te sirva.

    Saludos,
    Cypress
    Louis Armstrong le dice a Ella Fitzgerald
    "take another drink of wine, and maybe you change your mind"
    Citar  
     

  10. #10  
    Avanzado
    Fecha de ingreso
    Aug 2004
    Mensajes
    201
    Descargas
    0
    Uploads
    0
    Ese automatix es la leche. No solo me ha instalado bien los componentes para la tarjeta envidia sino que me ha instalado libdvdcss para visualizar DVDs con Totem entre otras cosas. Por fin tengo aceleración gráfica.

    Gracias a todos.
    From mind to code
    Citar  
     

  11. #11  
    Moderador Global
    Fecha de ingreso
    Aug 2005
    Mensajes
    6.279
    Descargas
    7
    Uploads
    0
    Es cierto que ayuda a mucha gente. Lo llevo oyendo un tiempo.

    Salu2


    Keep on Rollin'

    . . . . . . . . . . . . . . . . . . . .
    [[ NORMAS DEL FORO ]]
    . . . . . . . . . . . . . . . . . . . .
    __________
    Citar  
     

  12. #12  
    Moderador HH
    Fecha de ingreso
    Mar 2003
    Ubicación
    Galiza
    Mensajes
    3.919
    Descargas
    8
    Uploads
    1
    Tendre que provarlo yo también, porque desde luego con la forma más tradicional mira que hay problemas...

    Un Saludo
    He conocido muchos dioses. Quien niegue su existencia está tan ciego como el que confía en ellos con una fe desmesurada. Robert E. Howard
    La suerte ayuda a la mente preparada.
    Citar  
     

Temas similares

  1. tarjeta sonido externa emu 0404 con ubuntu 9
    Por fideos en el foro MULTIMEDIA
    Respuestas: 0
    Último mensaje: 18-08-2009, 13:25
  2. nvidia nforce networking controller para ubuntu
    Por scanner en el foro LINUX - MAC - OTROS
    Respuestas: 1
    Último mensaje: 26-02-2007, 00:53
  3. Problema con una tarjeta Nvidia GeForce 4MX420.
    Por usebra en el foro HARDWARE
    Respuestas: 2
    Último mensaje: 04-03-2006, 17:30
  4. tarjeta NVIDIA
    Por elgranpichu en el foro HARDWARE
    Respuestas: 4
    Último mensaje: 17-08-2003, 11:04

Marcadores

Marcadores