domingo, 4 de abril de 2010

Cambio de Dirección URL

He cambiado la dirección URL del blog a:

http://negronmontoya.blogspot.com

lunes, 15 de marzo de 2010

Agregando una nueva resolución en Ubuntu

Esta vez comentaré una forma de cómo agregar una nueva resolución en Ubuntu. Ojo: a mí me funcionó con Ubuntu 9.04 montado en VirtualBox, pero no necesariamente funciona. Nada perdemos con intentarlo.

Entrar a un Terminal y editar el archivo xorg.conf:

sudo gedit /etc/X11/xorg.conf

A continuación les pongo lo que dice mi archivo para que coloquen las líneas que le faltan correspondientes a la resolución que deseen. La mía es 1200x800.

# 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.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# 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 "Device"
Identifier "Configured Video Device"
Option "UseFBDev" "true"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

Saludos!!