Menú principal

resolucion ubuntu

Publicado por Flequi, Mayo 16, 2008, 14:18:22

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

Flequi

bueno resulta que instale el ubuntu 8.04 y me permite solo la resolucion 1076 *768 , tengo una placa fx nvidia de 128, instale los drivers "new" y los legacy y con ambos la resolucion mas grande es la q mencione antes.. yo estoy acostumbrado a 1152 * 864.-

hay alguna manera de cambiarla sin q sea de la parte dde resoluciones de pantalla q ese es el valor maximo q me permite.-
de echo la anterior vez q instale si me permitia , si en linux en realidad me acostumbre a esa resolucion!!

saludos

Flequi

#1

EDIT> con la placa desistalada me deja cuando la instalo ya no!!

este es mi archivo xorg


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

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

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

Section "Device"
   Identifier   "Configured Video Device"
EndSection

Section "Monitor"
   Identifier   "Configured Monitor"
EndSection

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

Section "ServerLayout"
   Identifier   "Default Layout"
   Screen      "Default Screen"
EndSection

Camello_AR

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


Section "Screen"
   Identifier   "Default Screen"
   Monitor      "Configured Monitor"
   Device      "Configured Video Device"
   SubSection "Display"
      Depth   24
      Modes   "1152x864" "1024x768" "800x600"
   EndSubSection
EndSection


En la sub seccion display, agregas 1 por cada profundidad de pantalla (depth) (1,2,4,15,16,24) y en modes las resoluciones de pantalla que queres. Con el agregado que te deje podes ver en 16millones de colores en 1152, 1024 y 800 (ahora toy en lo de mis viejos, cuando vuelvo a casa el domingo te posteo todo bien pq tuve un problema similar hace dos o tres días y puse mi xorg asi)

Saludos

ZeiterZ

Ese xorg.conf no me gusta... le faltan cosas esenciales. Por ejemplo:

Section "Device"
   Identifier   "Configured Video Device"
EndSection


cuando debería tener algo como:

Section "Device"
        Identifier      "nVidia Corporation C51PV [GeForce 6150]"
[b]        Driver          "nv"[/b]
        BusID           "PCI:0:5:0"
        Option          "HWCursor" "false"
EndSection


donde la línea resalta es fundamental.

Te sugiero ejecutar:

$ sudo dpkg-reconfigure -phigh xserver-xorg

o buscar dentro de /etc/X11 algún archivo xorg.conf que contenga la última versión que anduvo bien.

Saludos.