View this PageEdit this PageUploads to this PageVersions of this PageHomeRecent ChangesSearchHelp Guide

Hacer funcionar el portátil de ControlId

Para que funcione el vídeo a la resución máxima


Hemos seguido las instrucciones de debian en dell 700m.

Pasos seguidos:
  1. Instalación del 915resolution en /usr/sbin
  2. Modificación del /etc/X11/XF86Config-4 para que contenga lo siguiente:
    [...]
    Section "Monitor"
    Identifier "Generic Monitor"
       HorizSync 30-90
       VertRefresh 50-160
       Option "DPMS"
       Modeline "1280x800_60.00" 83.46 1280 1344 1480 1680 800 801 804 828 -HSync +Vsync
    [...]
    Section "Screen"
       Identifier "Default Screen"
       Device "Generic Video Card"
       Monitor "Generic Monitor"
       DefaultDepth 24
       SubSection "Display"
       Depth 24
       Modes "1280x800"EndSubSection
    [...]
  3. Modificación de /etc/init.d/gdm para que inicialice el modo de vídeo en el arranque, añadiendo la siguiente línea después de la del "start)":
    /usr/sbin/915resolution 5c 1280 800

Para conseguir que funcione el touchpad en el nuevo inspiron 6400:
  1. instalación de xfree86-driver-synaptics con un apt-get
  2. Añadir al /etc/modules los módulos evdev mousedev
  3. Modificación del /etc/X11/XF86Config-4 para que contenga lo siguiente:
    [...]
    Section "InputDevice"
    Driver "synaptics"
    Identifier "Mouse[1]"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    # Option "SHMConfig" "on"
    # Option "Repeater" "/dev/ps2mouse"
    EndSection
    [...]
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Mouse[1]" "CorePointer"
    #InputDevice "Configured Mouse"
    InputDevice "Generic Mouse"
    EndSection