Foro de elhacker.net

Sistemas Operativos => GNU/Linux => Mensaje iniciado por: arcobaleno22 en 14 Abril 2015, 09:13 am



Título: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 09:13 am
Hola amigos primeramente con saludarles y decir que opte por Linux por que mi pc no es de grandes recursos y generalmente lo ocupo para lo basico navergar ver peliculas escuchar musica.

Ahora mi problema es el siguiente tengo un monitor VGA que la resolucion maxima que soporta es 1280x1024.

En estos momentos la resolucion que maxima que me da linux es 1024x768.

He buscado la solucion a esto por todos lados, desde el comando XRANDR hasta el bendito xorg.conf pero no hay caso no puedo cambiar la resolucion y ya estoy perdiendo las esperanzas, instale este mismo linux en un notebook y no tuve que cambiar ninguna resolucion.

Por cierto cuando intento cambiar la resolucion con el comando xrandr al añadir el --newmode me sale este error

Código:
X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  16 (RRCreateMode)
  Serial number of failed request:  25
  Current serial number in output stream:  25

Espero me ayuden por que me encanta linux y en mi notebook funciona de maravillas.

Saludos.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: Gh057 en 14 Abril 2015, 11:05 am
Hola arcobaleno22 lo que sucede es que no te está tomando esa resolución de manera nativa; que gráfica tienes? es interna o externa? de última puedes optar instalarndo controladores privativos...


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: engel lex en 14 Abril 2015, 15:21 pm
yo pasé por algo similar con mi monitor...

lo primero que recomiendo...

apaga el monitor, desconectalo de corriente, sin corriente conectada, intenta encenderlo, esto lo "descargará", espera unos segundos y conectalo de nuevo, enciende e intenta identificarlo en la configuración....

si esto no sirve, a mi no me quedó más que experimentar con XRANDR para que me agarrara la resolución correcta (a mi me decia que estaba en la resolución correcta, pero el monitor decia lo contrario)

por favor, revisa que no sea problema de drivers, si no lo es, publica aquí la salida de tu comando XRANDR


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 17:32 pm
Hola que tal gracias por las respuestas, la grafica que tengo es interna la placa madre es una
MSI 760gm-p33 esto es lo que me aparece al usar el comando xrandr.

Código:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA-0 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0*
   800x600        60.3     56.2  
   848x480        60.0  
   640x480        59.9  
HDMI-0 disconnected (normal left inverted right x axis y axis)
  1280x1024_60.00 (0x2ce)  109.0MHz
        h: width  1280 start 1368 end 1496 total 1712 skew    0 clock   63.7KHz
        v: height 1024 start 1027 end 1034 total 1063           clock   59.9Hz


Y bueno tambien vi eso de los controladores privativos pero me aparence en blanco como si no hubiera nada.

Saludos.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: engel lex en 14 Abril 2015, 17:56 pm
ok, vas a intentar lo siguiente...

este script hará algunos pasos por ti, en caso que el modo de pantalla no funcione, volverá al que tenias

primero usaras el comando cvt para obetener los valores que necesitas

ej
Código
  1. cvt 1280 1024 60
son las coordenadas de ancho, alto y tasa de refresco (Hz)

eso te dará un valor de resultado como
Código:
# 1280x1024 59.89 Hz (CVT 1.31M4) hsync: 63.67 kHz; pclk: 109.00 MHz
Modeline "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync

vas a tomar lo que continua a "Modeline" y las comillas, es decir
Código:
109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync

en este script

Código
  1. #!/bin/bash
  2. TestNmbr=001
  3. echo "montando prueba_test$TestNmbr"
  4. xrandr --newmode "prueba_test$TestNmbr"  106.47  1440 1520 1672 1904  900 901 904 932  -HSync +Vsync
  5. echo "colocando el modo"
  6. xrandr --addmode VGA-0 prueba_test$TestNmbr
  7. echo "probando"
  8. xrandr --output VGA-0 --mode prueba_test$TestNmbr
  9. sleep 20
  10. echo "retornando a normal"
  11. xrandr --output VGA-0 --mode 1024x768
  12. xrandr --delmode VGA-0 prueba_test$TestNmbr
  13. sleep 5

en la linea marcada colocarás tus valores en caso que sirvan correctamente, guardas eso en un archivo.sh, le das permisos de ejecución y le das doble click (dile que lo muestre en consola para que sepas si terminó o no)

vas a tomar la salida del cvt (incluyendo las comillas esta vez)
Código:
"1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
y en consola
lo que está entre comillas es el nombre del modo, es importante,

Código
  1. xrandr --newmode #aqui el resultado de cvt
  2. xrandr --addmode VGA-0 #nombre del modo sin comillas
  3. xrandr --output VGA-0 #nombre del modo sin comillas
  4.  


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 18:17 pm
Hola que tal gracias por la pronta respuesta esos comandos los hice todos en la terminal espero que este bien, lo otro no se guardar un archi .sh soy novato en linux y bueno con lo del cuadro hice todo pero llegue hasta aqui.

xrandr --output VGA-0 --mode 1204x768
xrandr: cannot find mode 1204x768


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: engel lex en 14 Abril 2015, 18:21 pm
para guardar un .sh, solo creas un archivo en blanco (click secundario, crear documento->documento vació) lo abres, pegas el contenido y al nombre le colocas .sh al final (aunque no es necesario)

le vas secundario, propiedades, te vas a la pestaña permisos y abajo está un cuadro "permitir ejecutar como programa"

esos comandos a mano dudo que hayan logrado mucho... cambio la resolución? se ve bien?


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 19:29 pm
Hola que tal sorry por el papelon de hace poco hice el documento .sh lo ejecute como un programa al iniciar la resolucion me cambia a 1280x1024 y se ve exelente pero luego cuando termina y vuelve a modo normall la resolucion es de 1024x768.

Saludos.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: engel lex en 14 Abril 2015, 19:33 pm
está bien, yo te di ese script porque hay veces que se estanca en un resolución no soportada por el monitor y no ves nada D: así que eso es por seguridad


si se ve bien, entonces (ya en consola normal linea a linea) has

vas a tomar la salida del cvt (incluyendo las comillas esta vez)
Código:
"1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
y en consola
lo que está entre comillas es el nombre del modo, es importante,

Código
  1. xrandr --newmode #aqui el resultado de cvt
  2. xrandr --addmode VGA-0 #nombre del modo sin comillas
  3. xrandr --output VGA-0 #nombre del modo sin comillas
  4.  


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 19:48 pm
Todo bien hasta que agregue la linea output. Me salio este error.

Código:
xrandr --output VGA-0 1280x1024_60.00
xrandr: unrecognized option '1280x1024_60.00'
Try 'xrandr --help' for more information.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: engel lex en 14 Abril 2015, 19:54 pm
intentalo de nuevo pero con comillas


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 20:02 pm
Pobre con comillas ahora y salio el mismo error de hace poco

Código:
xrandr --output VGA-0 "1280x1024_60.00"
xrandr: unrecognized option '1280x1024_60.00'
Try 'xrandr --help' for more information.

que desesperante.

saludos.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 14 Abril 2015, 20:02 pm
Es porque necesitas agregar --mode:

Código
  1. xrandr --output VGA-0 --mode 1280x1024_60.00


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 20:10 pm
Funciono, pero ahora mi duda es esta ¿cuando reinicio la pantalla sigue teniendo una pesima resolucion? hay alguna manera de dejarla permanente.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 14 Abril 2015, 20:20 pm
Yo lo pondria en el xorg.conf en /etc/X11/xorg.conf:

Código:
Section "Monitor"
    Identifier    "VGA-0"
    ModeLine //Aqui pegas la linea entera de tu ModeLine del comando CVT (o GTF).
    Option "PreferredMode" "NombreDeTuModo/E.g.1280x1024_60.00"
EndSection

Casualmente yo tengo las configuraciones de mis monitores dentro de /etc/X11/xorg.conf.d/ en un archivo que se llama: "99-monitors.conf".


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: Gh057 en 14 Abril 2015, 20:38 pm
Justo iba a comentar eso, mismo caso cuando se desea instalar los drivers fglrx para ati, es necesario apuntar la configuración en esa ubicación.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 21:08 pm
bueno chicos intente hacer eso del xorg.conf y reemplaze lo que tenia por lo que me habian escrito y cuando reinicie pff no se puede iniciar el servidor X, entre en desesperacion y lo que hice fue colocar mi disco de mint e iniciar de nuevo ahora estoy en el pc no se si por que se arreglo con el disco de mint pero el asunto es que estoy respaldando algunos archivos por si acaso, ahora se me formo un lio tremendo eso de editar el xorg.config dejo la captura de lo que hice y si hice algo mal, completamente estan en su derecho de gritarme un improperio.

(http://i.imgur.com/Qma6IXu.png)

dejo el link de la imagen aparte por que a veces no funcionan las etiquetas.

http://i.imgur.com/Qma6IXu.png


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 14 Abril 2015, 21:29 pm
Necesitas quitar el // de tu ModeLine y necesitas cambiar "Resolucion Optima/E.g.1280x1024_60.00" por "1280x1024_60.00".


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 21:34 pm
"Resolucion Optima/E.g.1280x1024_60.00" por "1280x1024_60.00".

seria "1280x1024_60.00"/E.g.1280x1024_60.00"

o ""1280x1024_60.00".


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 14 Abril 2015, 22:31 pm
Bueno edite el archivo xorg.conf pero la resolucion sigue siendo mala y no la 1280x1024 que queria ahora quizas el otro archivo xorg.conf04142015 este dando problemas. :(

(http://i.imgur.com/cGptaNg.png)


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 14 Abril 2015, 22:55 pm
"Resolucion Optima/E.g.1280x1024_60.00" por "1280x1024_60.00".

seria "1280x1024_60.00"/E.g.1280x1024_60.00"

o ""1280x1024_60.00".

El Modo tiene que ser el mismo que has puesto entre comillas en la linea de ModeLine. Ese es el identificador del Modo. Prueba a ponerlo en /etc/X11/xorg.conf.d/99-monitors.conf. Si la carpeta xorg.conf.d no existe creala.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 15 Abril 2015, 04:36 am
haber me meti a la carpeta etc luego a x11 en x11 cree la carpeta xorg.conf.d y en esa carpeta cree el archivo 99-monitor.conf.

en resumen quedo de esta manera

/etc/X11/xorg.conf.d donde en xorg.conf.d quedo el archivo 99-monitor.conf.

donde 99-monitor.conf.

lleva este texto

Código:
Section "Monitor"
    Identifier    "VGA-0"
    ModeLine "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
    Option "PreferredMode" "1280x1024_60.00"
EndSection

¿esta bien? por cierto reinicie y la resolucion no mejora.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 15 Abril 2015, 05:16 am
Puedes poner tu log de Xorg? Y de ser posible el contenido del otro archivo Xorg.conf que tienes en /etc/X11 (el que tiene numeros al final, que es la fecha).

Los logs de Xorg estan en:

Código:
/var/log/Xorg.0.log
/var/log/Xorg.1.log

Por cierto, me habia olvidado de mencionar.... usa etiquetas code para pegar la informacion. Es mas facil navegar por los contenidos del archivo de esa forma:

[ code] Todos tus logs, textos aqui: [ /code]


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 15 Abril 2015, 05:22 am
Log de Xorg.0.log


Código:
[    20.168] 
X.Org X Server 1.15.1
Release Date: 2014-04-13
[    20.168] X Protocol Version 11, Revision 0
[    20.168] Build Operating System: Linux 3.2.0-76-generic x86_64 Ubuntu
[    20.168] Current Operating System: Linux Dangerous 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64
[    20.168] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-37-generic root=UUID=7561fabf-1de7-4f48-8ef2-a9246193da99 ro quiet splash vt.handoff=7
[    20.168] Build Date: 12 February 2015  02:49:29PM
[    20.168] xorg-server 2:1.15.1-0ubuntu2.7 (For technical support please see http://www.ubuntu.com/support)
[    20.168] Current version of pixman: 0.30.2
[    20.168] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[    20.168] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    20.168] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 14 23:32:42 2015
[    20.221] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    20.221] (==) No Layout section.  Using the first Screen section.
[    20.221] (==) No screen section available. Using defaults.
[    20.221] (**) |-->Screen "Default Screen Section" (0)
[    20.221] (**) |   |-->Monitor "<default monitor>"
[    20.222] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[    20.222] (==) Automatically adding devices
[    20.222] (==) Automatically enabling devices
[    20.222] (==) Automatically adding GPU devices
[    20.222] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    20.222] Entry deleted from font path.
[    20.222] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    20.222] Entry deleted from font path.
[    20.222] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    20.222] Entry deleted from font path.
[    20.222] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    20.222] Entry deleted from font path.
[    20.222] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    20.222] Entry deleted from font path.
[    20.222] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/Type1,
built-ins
[    20.222] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    20.222] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[    20.222] (II) Loader magic: 0x7f07d6bebd40
[    20.222] (II) Module ABI versions:
[    20.222] X.Org ANSI C Emulation: 0.4
[    20.222] X.Org Video Driver: 15.0
[    20.222] X.Org XInput driver : 20.0
[    20.222] X.Org Server Extension : 8.0
[    20.223] (II) xfree86: Adding drm device (/dev/dri/card0)
[    20.225] (--) PCI:*(0:1:5:0) 1002:9616:1002:0000 rev 0, Mem @ 0xd0000000/268435456, 0xfeaf0000/65536, 0xfe900000/1048576, I/O @ 0x0000d000/256
[    20.225] Initializing built-in extension Generic Event Extension
[    20.225] Initializing built-in extension SHAPE
[    20.225] Initializing built-in extension MIT-SHM
[    20.226] Initializing built-in extension XInputExtension
[    20.226] Initializing built-in extension XTEST
[    20.226] Initializing built-in extension BIG-REQUESTS
[    20.226] Initializing built-in extension SYNC
[    20.226] Initializing built-in extension XKEYBOARD
[    20.226] Initializing built-in extension XC-MISC
[    20.226] Initializing built-in extension SECURITY
[    20.226] Initializing built-in extension XINERAMA
[    20.226] Initializing built-in extension XFIXES
[    20.226] Initializing built-in extension RENDER
[    20.226] Initializing built-in extension RANDR
[    20.226] Initializing built-in extension COMPOSITE
[    20.226] Initializing built-in extension DAMAGE
[    20.226] Initializing built-in extension MIT-SCREEN-SAVER
[    20.226] Initializing built-in extension DOUBLE-BUFFER
[    20.226] Initializing built-in extension RECORD
[    20.226] Initializing built-in extension DPMS
[    20.226] Initializing built-in extension Present
[    20.226] Initializing built-in extension DRI3
[    20.226] Initializing built-in extension X-Resource
[    20.226] Initializing built-in extension XVideo
[    20.226] Initializing built-in extension XVideo-MotionCompensation
[    20.226] Initializing built-in extension SELinux
[    20.226] Initializing built-in extension XFree86-VidModeExtension
[    20.226] Initializing built-in extension XFree86-DGA
[    20.226] Initializing built-in extension XFree86-DRI
[    20.226] Initializing built-in extension DRI2
[    20.226] (II) LoadModule: "glx"
[    20.244] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    20.297] (II) Module glx: vendor="X.Org Foundation"
[    20.297] compiled for 1.15.1, module version = 1.0.0
[    20.297] ABI class: X.Org Server Extension, version 8.0
[    20.297] (==) AIGLX enabled
[    20.297] Loading extension GLX
[    20.297] (==) Matched fglrx as autoconfigured driver 0
[    20.297] (==) Matched ati as autoconfigured driver 1
[    20.297] (==) Matched fglrx as autoconfigured driver 2
[    20.297] (==) Matched ati as autoconfigured driver 3
[    20.297] (==) Matched modesetting as autoconfigured driver 4
[    20.297] (==) Matched fbdev as autoconfigured driver 5
[    20.297] (==) Matched vesa as autoconfigured driver 6
[    20.297] (==) Assigned the driver to the xf86ConfigLayout
[    20.297] (II) LoadModule: "fglrx"
[    20.298] (WW) Warning, couldn't open module fglrx
[    20.298] (II) UnloadModule: "fglrx"
[    20.298] (II) Unloading fglrx
[    20.298] (EE) Failed to load module "fglrx" (module does not exist, 0)
[    20.298] (II) LoadModule: "ati"
[    20.299] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    20.299] (II) Module ati: vendor="X.Org Foundation"
[    20.299] compiled for 1.15.1, module version = 7.5.99
[    20.299] Module class: X.Org Video Driver
[    20.299] ABI class: X.Org Video Driver, version 15.0
[    20.299] (II) LoadModule: "radeon"
[    20.300] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    20.335] (II) Module radeon: vendor="X.Org Foundation"
[    20.335] compiled for 1.15.1, module version = 7.5.99
[    20.335] Module class: X.Org Video Driver
[    20.335] ABI class: X.Org Video Driver, version 15.0
[    20.335] (II) LoadModule: "modesetting"
[    20.336] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    20.336] (II) Module modesetting: vendor="X.Org Foundation"
[    20.336] compiled for 1.15.0, module version = 0.8.1
[    20.336] Module class: X.Org Video Driver
[    20.336] ABI class: X.Org Video Driver, version 15.0
[    20.336] (II) LoadModule: "fbdev"
[    20.337] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    20.337] (II) Module fbdev: vendor="X.Org Foundation"
[    20.337] compiled for 1.15.0, module version = 0.4.4
[    20.337] Module class: X.Org Video Driver
[    20.337] ABI class: X.Org Video Driver, version 15.0
[    20.337] (II) LoadModule: "vesa"
[    20.337] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    20.338] (II) Module vesa: vendor="X.Org Foundation"
[    20.338] compiled for 1.15.0, module version = 2.3.3
[    20.338] Module class: X.Org Video Driver
[    20.338] ABI class: X.Org Video Driver, version 15.0
[    20.338] (==) Matched fglrx as autoconfigured driver 0
[    20.338] (==) Matched ati as autoconfigured driver 1
[    20.338] (==) Matched fglrx as autoconfigured driver 2
[    20.338] (==) Matched ati as autoconfigured driver 3
[    20.338] (==) Matched modesetting as autoconfigured driver 4
[    20.338] (==) Matched fbdev as autoconfigured driver 5
[    20.338] (==) Matched vesa as autoconfigured driver 6
[    20.338] (==) Assigned the driver to the xf86ConfigLayout
[    20.338] (II) LoadModule: "fglrx"
[    20.339] (WW) Warning, couldn't open module fglrx
[    20.339] (II) UnloadModule: "fglrx"
[    20.339] (II) Unloading fglrx
[    20.339] (EE) Failed to load module "fglrx" (module does not exist, 0)
[    20.339] (II) LoadModule: "ati"
[    20.339] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    20.339] (II) Module ati: vendor="X.Org Foundation"
[    20.339] compiled for 1.15.1, module version = 7.5.99
[    20.339] Module class: X.Org Video Driver
[    20.339] ABI class: X.Org Video Driver, version 15.0
[    20.339] (II) LoadModule: "modesetting"
[    20.340] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    20.340] (II) Module modesetting: vendor="X.Org Foundation"
[    20.340] compiled for 1.15.0, module version = 0.8.1
[    20.340] Module class: X.Org Video Driver
[    20.340] ABI class: X.Org Video Driver, version 15.0
[    20.340] (II) UnloadModule: "modesetting"
[    20.340] (II) Unloading modesetting
[    20.340] (II) Failed to load module "modesetting" (already loaded, 0)
[    20.340] (II) LoadModule: "fbdev"
[    20.340] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    20.340] (II) Module fbdev: vendor="X.Org Foundation"
[    20.340] compiled for 1.15.0, module version = 0.4.4
[    20.340] Module class: X.Org Video Driver
[    20.340] ABI class: X.Org Video Driver, version 15.0
[    20.340] (II) UnloadModule: "fbdev"
[    20.340] (II) Unloading fbdev
[    20.341] (II) Failed to load module "fbdev" (already loaded, 0)
[    20.341] (II) LoadModule: "vesa"
[    20.341] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    20.341] (II) Module vesa: vendor="X.Org Foundation"
[    20.341] compiled for 1.15.0, module version = 2.3.3
[    20.341] Module class: X.Org Video Driver
[    20.341] ABI class: X.Org Video Driver, version 15.0
[    20.341] (II) UnloadModule: "vesa"
[    20.341] (II) Unloading vesa
[    20.341] (II) Failed to load module "vesa" (already loaded, 0)
[    20.341] (II) RADEON: Driver for ATI Radeon chipsets:
ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
ATI Radeon Mobility X300 (M24) 3152 (PCIE),
ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
ATI Radeon X600 (RV380) 3E50 (PCIE),
ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
ATI Radeon IGP330M/340M/350M (U2) 4337,
ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
ATI Radeon X800PRO (R420) JI (AGP),
ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
ATI Radeon Mobility 9800 (M18) JN (AGP),
ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
ATI Radeon Mobility M7 LW (AGP),
ATI Mobility FireGL 7800 M7 LX (AGP),
ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
ATI FireGL Mobility 9000 (M9) Ld (AGP),
ATI Radeon Mobility 9000 (M9) Lf (AGP),
ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
ATI Radeon Mobility 9600 (M10) NQ (AGP),
ATI Radeon Mobility 9600 (M11) NR (AGP),
ATI Radeon Mobility 9600 (M10) NS (AGP),
ATI FireGL Mobility T2 (M10) NT (AGP),
ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
ATI Radeon Mobility X300 (M22) 5460 (PCIE),
ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
ATI Radeon X800PRO (R423) UI (PCIE),
ATI Radeon X800LE (R423) UJ (PCIE),
ATI Radeon X800SE (R423) UK (PCIE),
ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
ATI FireGL unknown (R423) UR (PCIE),
ATI FireGL unknown (R423) UT (PCIE),
ATI Mobility FireGL V5000 (M26) (PCIE),
ATI Mobility FireGL V5000 (M26) (PCIE),
ATI Mobility Radeon X700 XL (M26) (PCIE),
ATI Mobility Radeon X700 (M26) (PCIE),
ATI Mobility Radeon X700 (M26) (PCIE),
ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
ATI Radeon Mobility 9100 IGP (U3) 5835,
ATI Radeon XPRESS 200 5954 (PCIE),
ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
ATI Radeon XPRESS 200M 5975 (PCIE),
ATI Radeon XPRESS 200 5A41 (PCIE),
ATI Radeon XPRESS 200M 5A42 (PCIE),
ATI Radeon XPRESS 200 5A61 (PCIE),
ATI Radeon XPRESS 200M 5A62 (PCIE),
ATI Radeon X300 (RV370) 5B60 (PCIE),
ATI Radeon X600 (RV370) 5B62 (PCIE),
ATI Radeon X550 (RV370) 5B63 (PCIE),
ATI FireGL V3100 (RV370) 5B64 (PCIE),
ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
ATI Mobility Radeon X800 XT (M28) (PCIE),
ATI Mobility FireGL V5100 (M28) (PCIE),
ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
ATI Radeon X850 XT PE (R480) (PCIE),
ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
ATI Radeon X850 XT (R480) (PCIE),
ATI Radeon X800XT (R423) 5D57 (PCIE),
ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
ATI Radeon X700 PRO (RV410) (PCIE),
ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
ATI Mobility Radeon X1700, ATI Radeon X2300HD,
ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
AMD FireStream 9250, ATI FirePro V8700 (FireGL),
ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
ATI Mobility Radeon HD 4670, ATI FirePro M5750,
ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
ATI Mobility Radeon HD 3850 X2, ATI RV670,
ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
ATI FireGL V3600, ATI Radeon HD 2600 LE,
ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
ATI Radeon 4100, ATI Mobility Radeon HD 4200,
ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
AMD Radeon HD 6300 Series Graphics,
AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
ATI FirePro (FireGL) Graphics Adapter,
ATI FirePro (FireGL) Graphics Adapter,
ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
AMD Firestream 9350, ATI Radeon HD 5800 Series,
ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
ATI Mobility Radeon HD 5800 Series,
ATI FirePro (FireGL) Graphics Adapter,
ATI FirePro (FireGL) Graphics Adapter,
ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
ATI Mobility Radeon HD 5000 Series,
ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
ATI FirePro (FireGL) Graphics Adapter,
ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
ATI Mobility Radeon HD 5000 Series,
ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
ATI Mobility Radeon Graphics, CEDAR,
ATI FirePro (FireGL) Graphics Adapter,
ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
BARTS, BARTS, Mobility Radeon HD 6000 Series,
Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
[    20.349] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    20.349] (II) FBDEV: driver for framebuffer: fbdev
[    20.349] (II) VESA: driver for VESA chipsets: vesa
[    20.349] (++) using VT number 7

[    20.356] (II) [KMS] Kernel modesetting enabled.
[    20.356] (WW) Falling back to old probe method for modesetting
[    20.357] (WW) Falling back to old probe method for fbdev
[    20.357] (II) Loading sub module "fbdevhw"
[    20.357] (II) LoadModule: "fbdevhw"
[    20.357] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    20.357] (II) Module fbdevhw: vendor="X.Org Foundation"
[    20.357] compiled for 1.15.1, module version = 0.0.2
[    20.357] ABI class: X.Org Video Driver, version 15.0
[    20.357] (WW) Falling back to old probe method for vesa
[    20.357] (II) RADEON(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[    20.357] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    20.357] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    20.358] (==) RADEON(0): Default visual is TrueColor
[    20.358] (==) RADEON(0): RGB weight 888
[    20.358] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    20.358] (--) RADEON(0): Chipset: "ATI Radeon 3000 Graphics" (ChipID = 0x9616)
[    20.358] (II) Loading sub module "dri2"
[    20.358] (II) LoadModule: "dri2"
[    20.358] (II) Module "dri2" already built-in
[    20.358] (II) Loading sub module "exa"
[    20.358] (II) LoadModule: "exa"
[    20.358] (II) Loading /usr/lib/xorg/modules/libexa.so
[    20.359] (II) Module exa: vendor="X.Org Foundation"
[    20.359] compiled for 1.15.1, module version = 2.6.0
[    20.359] ABI class: X.Org Video Driver, version 15.0
[    20.359] (II) RADEON(0): KMS Color Tiling: enabled
[    20.359] (II) RADEON(0): KMS Color Tiling 2D: enabled
[    20.359] (II) RADEON(0): KMS Pageflipping: enabled
[    20.359] (II) RADEON(0): SwapBuffers wait for vsync: enabled
[    20.373] (II) RADEON(0): Output VGA-0 has no monitor section
[    20.374] (II) RADEON(0): Output HDMI-0 has no monitor section
[    20.385] (II) RADEON(0): EDID for output VGA-0
[    20.385] (II) RADEON(0): Printing probed modes for output VGA-0
[    20.385] (II) RADEON(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    20.385] (II) RADEON(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    20.385] (II) RADEON(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    20.385] (II) RADEON(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 +hsync +vsync (31.0 kHz e)
[    20.385] (II) RADEON(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[    20.386] (II) RADEON(0): EDID for output HDMI-0
[    20.386] (II) RADEON(0): Output VGA-0 connected
[    20.386] (II) RADEON(0): Output HDMI-0 disconnected
[    20.386] (II) RADEON(0): Using exact sizes for initial modes
[    20.386] (II) RADEON(0): Output VGA-0 using initial mode 1024x768
[    20.386] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    20.386] (II) RADEON(0): mem size init: gart size :1fdef000 vram size: s:10000000 visible:fcc0000
[    20.386] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
[    20.386] (==) RADEON(0): DPI set to (96, 96)
[    20.386] (II) Loading sub module "fb"
[    20.386] (II) LoadModule: "fb"
[    20.386] (II) Loading /usr/lib/xorg/modules/libfb.so
[    20.386] (II) Module fb: vendor="X.Org Foundation"
[    20.386] compiled for 1.15.1, module version = 1.0.0
[    20.386] ABI class: X.Org ANSI C Emulation, version 0.4
[    20.387] (II) Loading sub module "ramdac"
[    20.387] (II) LoadModule: "ramdac"
[    20.387] (II) Module "ramdac" already built-in
[    20.387] (II) UnloadModule: "modesetting"
[    20.387] (II) Unloading modesetting
[    20.387] (II) UnloadModule: "fbdev"
[    20.387] (II) Unloading fbdev
[    20.387] (II) UnloadSubModule: "fbdevhw"
[    20.387] (II) Unloading fbdevhw
[    20.387] (II) UnloadModule: "vesa"
[    20.387] (II) Unloading vesa
[    20.387] (--) Depth 24 pixmap format is 32 bpp
[    20.387] (II) RADEON(0): [DRI2] Setup complete
[    20.387] (II) RADEON(0): [DRI2]   DRI driver: r600
[    20.387] (II) RADEON(0): [DRI2]   VDPAU driver: r600
[    20.387] (II) RADEON(0): Front buffer size: 3072K
[    20.387] (II) RADEON(0): VRAM usage limit set to 230140K
[    20.387] (==) RADEON(0): DRI3 disabled
[    20.387] (==) RADEON(0): Backing store enabled
[    20.387] (II) RADEON(0): Direct rendering enabled
[    20.387] (II) EXA(0): Driver allocated offscreen pixmaps
[    20.387] (II) EXA(0): Driver registered support for the following operations:
[    20.387] (II)         Solid
[    20.387] (II)         Copy
[    20.387] (II)         Composite (RENDER acceleration)
[    20.387] (II)         UploadToScreen
[    20.387] (II)         DownloadFromScreen
[    20.387] (II) RADEON(0): Acceleration enabled
[    20.387] (==) RADEON(0): DPMS enabled
[    20.387] (==) RADEON(0): Silken mouse enabled
[    20.387] (II) RADEON(0): Set up textured video
[    20.387] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
[    20.387] (II) RADEON(0): [XvMC] Extension initialized.
[    20.387] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    20.387] (--) RandR disabled
[    20.398] (II) SELinux: Disabled on system
[    20.578] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    20.578] (II) AIGLX: enabled GLX_ARB_create_context
[    20.578] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    20.578] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    20.578] (II) AIGLX: enabled GLX_INTEL_swap_event
[    20.578] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    20.578] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[    20.578] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[    20.578] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    20.580] (II) AIGLX: Loaded and initialized r600
[    20.580] (II) GLX: Initialized DRI2 GL provider for screen 0
[    20.582] (II) RADEON(0): Setting screen physical size to 270 x 203
[    20.593] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    20.624] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    20.624] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    20.624] (II) LoadModule: "evdev"
[    20.625] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    20.647] (II) Module evdev: vendor="X.Org Foundation"
[    20.647] compiled for 1.15.0, module version = 2.8.2
[    20.647] Module class: X.Org XInput Driver
[    20.647] ABI class: X.Org XInput driver, version 20.0
[    20.647] (II) Using input driver 'evdev' for 'Power Button'
[    20.647] (**) Power Button: always reports core events
[    20.647] (**) evdev: Power Button: Device: "/dev/input/event1"
[    20.647] (--) evdev: Power Button: Vendor 0 Product 0x1
[    20.647] (--) evdev: Power Button: Found keys
[    20.647] (II) evdev: Power Button: Configuring as keyboard
[    20.647] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    20.647] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    20.647] (**) Option "xkb_rules" "evdev"
[    20.647] (**) Option "xkb_model" "pc105"
[    20.647] (**) Option "xkb_layout" "es"
[    20.652] (II) XKB: reuse xkmfile /var/lib/xkb/server-FFBD4FDC8093CCB415CD73029FDA64F4B077A3E7.xkm
[    20.654] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    20.654] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    20.654] (II) Using input driver 'evdev' for 'Power Button'
[    20.654] (**) Power Button: always reports core events
[    20.654] (**) evdev: Power Button: Device: "/dev/input/event0"
[    20.654] (--) evdev: Power Button: Vendor 0 Product 0x1
[    20.654] (--) evdev: Power Button: Found keys
[    20.654] (II) evdev: Power Button: Configuring as keyboard
[    20.654] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[    20.654] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    20.654] (**) Option "xkb_rules" "evdev"
[    20.655] (**) Option "xkb_model" "pc105"
[    20.655] (**) Option "xkb_layout" "es"
[    20.655] (II) config/udev: Adding drm device (/dev/dri/card0) card0 /sys/devices/pci0000:00/0000:00:01.0/0000:01:05.0/drm/card0
[    20.655] (II) config/udev: Ignoring already known drm device (/dev/dri/card0)
[    20.656] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event3)
[    20.657] (**) A4TECH USB Device: Applying InputClass "evdev keyboard catchall"
[    20.657] (II) Using input driver 'evdev' for 'A4TECH USB Device'
[    20.657] (**) A4TECH USB Device: always reports core events
[    20.657] (**) evdev: A4TECH USB Device: Device: "/dev/input/event3"
[    20.657] (II) evdev: A4TECH USB Device: Using mtdev for this device
[    20.657] (--) evdev: A4TECH USB Device: Vendor 0x9da Product 0x9090
[    20.657] (--) evdev: A4TECH USB Device: Found 1 mouse buttons
[    20.657] (--) evdev: A4TECH USB Device: Found scroll wheel(s)
[    20.657] (--) evdev: A4TECH USB Device: Found relative axes
[    20.657] (--) evdev: A4TECH USB Device: Found absolute axes
[    20.657] (--) evdev: A4TECH USB Device: Found absolute multitouch axes
[    20.657] (--) evdev: A4TECH USB Device: Found x and y absolute axes
[    20.657] (--) evdev: A4TECH USB Device: Found keys
[    20.657] (II) evdev: A4TECH USB Device: Forcing relative x/y axes to exist.
[    20.657] (II) evdev: A4TECH USB Device: Configuring as mouse
[    20.657] (II) evdev: A4TECH USB Device: Configuring as keyboard
[    20.657] (II) evdev: A4TECH USB Device: Adding scrollwheel support
[    20.657] (**) evdev: A4TECH USB Device: YAxisMapping: buttons 4 and 5
[    20.657] (**) evdev: A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    20.657] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-3/4-3:1.0/input/input3/event3"
[    20.657] (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: KEYBOARD, id 8)
[    20.657] (**) Option "xkb_rules" "evdev"
[    20.657] (**) Option "xkb_model" "pc105"
[    20.657] (**) Option "xkb_layout" "es"
[    20.658] (II) evdev: A4TECH USB Device: initialized for relative axes.
[    20.658] (WW) evdev: A4TECH USB Device: ignoring absolute axes.
[    20.658] (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
[    20.659] (**) A4TECH USB Device: (accel) acceleration profile 0
[    20.659] (**) A4TECH USB Device: (accel) acceleration factor: 2.000
[    20.659] (**) A4TECH USB Device: (accel) acceleration threshold: 4
[    20.659] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/js0)
[    20.659] (II) No input driver specified, ignoring this device.
[    20.659] (II) This device may have been added with another device file.
[    20.660] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event4)
[    20.660] (**) A4TECH USB Device: Applying InputClass "evdev pointer catchall"
[    20.660] (II) Using input driver 'evdev' for 'A4TECH USB Device'
[    20.660] (**) A4TECH USB Device: always reports core events
[    20.660] (**) evdev: A4TECH USB Device: Device: "/dev/input/event4"
[    20.660] (--) evdev: A4TECH USB Device: Vendor 0x9da Product 0x9090
[    20.660] (--) evdev: A4TECH USB Device: Found 20 mouse buttons
[    20.660] (--) evdev: A4TECH USB Device: Found scroll wheel(s)
[    20.660] (--) evdev: A4TECH USB Device: Found relative axes
[    20.660] (--) evdev: A4TECH USB Device: Found x and y relative axes
[    20.660] (II) evdev: A4TECH USB Device: Configuring as mouse
[    20.660] (II) evdev: A4TECH USB Device: Adding scrollwheel support
[    20.660] (**) evdev: A4TECH USB Device: YAxisMapping: buttons 4 and 5
[    20.660] (**) evdev: A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    20.660] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-3/4-3:1.1/input/input4/event4"
[    20.660] (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: MOUSE, id 9)
[    20.660] (II) evdev: A4TECH USB Device: initialized for relative axes.
[    20.660] (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
[    20.660] (**) A4TECH USB Device: (accel) acceleration profile 0
[    20.660] (**) A4TECH USB Device: (accel) acceleration factor: 2.000
[    20.660] (**) A4TECH USB Device: (accel) acceleration threshold: 4
[    20.660] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/mouse0)
[    20.660] (II) No input driver specified, ignoring this device.
[    20.660] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event7)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event6)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event5)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event12)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event11)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event10)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.661] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event9)
[    20.661] (II) No input driver specified, ignoring this device.
[    20.661] (II) This device may have been added with another device file.
[    20.662] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event8)
[    20.662] (II) No input driver specified, ignoring this device.
[    20.662] (II) This device may have been added with another device file.
[    20.662] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    20.662] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    20.662] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    20.662] (**) AT Translated Set 2 keyboard: always reports core events
[    20.662] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[    20.662] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    20.662] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    20.662] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    20.662] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    20.662] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[    20.662] (**) Option "xkb_rules" "evdev"
[    20.662] (**) Option "xkb_model" "pc105"
[    20.662] (**) Option "xkb_layout" "es"
[    25.649] (II) XKB: reuse xkmfile /var/lib/xkb/server-34CEB476A3CB596DA76FD7010A029F76732EF824.xkm
[    25.696] (II) XKB: reuse xkmfile /var/lib/xkb/server-4968D24C59EB905E8B3DE6B1AD4DB0BD19C330FF.xkm
[    30.900] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[    30.903] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[    30.906] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[    30.909] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[    30.913] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[    30.916] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm
[   106.500] (II) XKB: reuse xkmfile /var/lib/xkb/server-B5A2E554E837CB3EEDA047317C3AEBA162EE8607.xkm

y esto es lo que trae el Xorg.conf. de la carpeta X11

Código:
Section "Monitor"
    Identifier    "VGA-0"
    ModeLine "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
    Option "PreferredMode" "1280x1024_60.00"
EndSection


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 15 Abril 2015, 06:43 am
Amigos termine solucionandolo con este video

https://www.youtube.com/watch?v=jnxNS8OZB7Q

gracias por su ayuda se valora muchisimo, y bueno me quedo en linux cualquier duda acudire con ustedes saludos.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 15 Abril 2015, 14:03 pm
Amigos termine solucionandolo con este video

https://www.youtube.com/watch?v=jnxNS8OZB7Q

gracias por su ayuda se valora muchisimo, y bueno me quedo en linux cualquier duda acudire con ustedes saludos.

Bueno esa es otra forma, correr el script al inicio de session. Creo que lo unico malo de eso es que el login sigue estando en la resolucion pequeña.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 15 Abril 2015, 15:35 pm
Ehmmm el login se me ve bien con la resolucion que queria.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: MinusFour en 15 Abril 2015, 17:59 pm
Vale no me habia dado cuenta que el script corre antes que se levante la interfaz grafica del Login.


Título: Re: Problem de resolucion Linux Mint 17
Publicado por: arcobaleno22 en 15 Abril 2015, 20:07 pm
Igual muchisimas gracias por su ayuda aprendi muchisimo igual con los datos que me entregaban saludos.