Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Debian GNU/Linux Reference Guide
Prev Home Next

9.4.3 El servidor X

V�ase XFree86(1x) para informaci�n sobre el servidor X.

Invoque el servidor X desde una consola local:

     $ startx -- :<display> vtXX
     e.g.:
     $ startx -- :1 vt8 -bpp 16
     ... ejecuci�n en una terminal vt8 conectada a localhost:1 with 16 bpp mode

Los argumentos a continuaci�n de -- son para el servidor X.

Observaci�n: al usar el script ~/.xserverrc para personalizar el proceso de arranque del servidor X aseg�rese de usar exec con el servidor real. Caso contrario el servidor ser� lento al arrancar o al salir. Por ejemplo:

     #!/bin/sh
     exec /usr/bin/X11/X -dpi 100 -nolisten tcp

9.4.3.1 Configurar el servidor X4

Para volver a configurar el servidor X4,

     # dpkg-reconfigure --priority=low xserver-common
     # dpkg-reconfigure --priority=low xserver-xfree86

generar� el archivo /etc/X11/XF86Config-4 y configurar� X usando el script dexconf.


9.4.3.2 Configurar el servidor X3

Para volver a configurar el servidor X3,

     # dpkg-reconfigure --priority=low xserver-common-v3
     # dpkg-reconfigure --priority=low xserver-mach64

generar� el archivo /etc/X11/XF86Config y configurar� X usando el script xf86config-v3.


9.4.3.3 Configurar el servidor X4 en forma manual

Para a�adir personalizaciones, no edite el archivo de configuraci�n en medio del texto (v�lido para X4):

     ### BEGIN DEBCONF SECTION
     [snip]
     ### END DEBCONF SECTION

En cambio, a�ada las personalizaciones antes del mismo. Por ejemplo, para usar un dispositivo de video personalizado, a�ada algo similar a lo siguiente al principio del archivo:

     Section "Device"
       Identifier        "Custom Device"
       Driver            "ati"
       Option            "NoAccel"
     EndSection
     
     Section "Screen"
       Identifier  "Custom Screen"
       Device      "Custom Device"
       Monitor     "Generic Monitor"
       DefaultDepth 24
       Subsection "Display"
         Depth       8
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       16
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       24
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
     EndSection
     
     Section "ServerLayout"
         Identifier        "Custom"
         Screen            "Custom Screen"
         InputDevice       "Generic Keyboard" "CoreKeyboard"
         InputDevice       "Configured Mouse" "CorePointer"
     EndSection

Debian GNU/Linux Reference Guide
Prev Home Next

 
 
  Published under the terms of the GNU General Public License Design by Interspire