Paramétrage carte graphique et clavier

willmore -  
 willmore -
Bonjour

Je cherche 2 astuces :
- La première : comment activer le verrou numérique du clavier au démarrage (ou à la connexion sur le mode graphique) sur une Debian
- La deuxième : y a t'il un moiyen, sur une carte graphique GeForce NVIDIA, de passer sur Debain en résolution en 1024x768 ? J'ai beau essayé de modifier le fichier XF86Config4 (sur /etc/X11) ou de relancer la commande dpkg-reconfigure xserver-xfree86 (en prenant une carte nv) et modifier la résolution (voire la fréquznce ...), dans ce cas mon mode graphique ne se relance pas.

Merci d'avance de vos réponses amis "linuxiens".

Salutations
Configuration: Debian 2.6
Carte Graphique : Geforce

1 réponse

  1. Ubu
     
    Salut

    Pour ta premiere question: http://people.via.ecp.fr/~alexis/formation-linux/trucs-astuces.html

    Pour la deuxième, peut on avoir un extrait de ton XF86Config4 (celui qui fonctionne)?
    0
    1. willmore
       
      Bonjour

      Merci pour ta réponse.
      En fait, le apt-get install numlock x ne suffisait pas, j'ai du rajouter une ligne de commande au début de mon fichier defaut cd /etc/gdm/Init du style : test -x /usr/bin/numlockx && /usr/bin/numlockx on

      Pour le Fixhier XF86config-4, qui fonctionne, , le voici :

      Section "Files"
      FontPath "unix/:7100" # local font server
      # if the local font server has problems, we can fall back on these
      FontPath "/usr/lib/X11/fonts/misc"
      FontPath "/usr/lib/X11/fonts/cyrillic"
      FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
      FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
      FontPath "/usr/lib/X11/fonts/Type1"
      FontPath "/usr/lib/X11/fonts/CID"
      FontPath "/usr/lib/X11/fonts/Speedo"
      FontPath "/usr/lib/X11/fonts/100dpi"
      FontPath "/usr/lib/X11/fonts/75dpi"
      EndSection

      Section "Module"
      Load "GLcore"
      Load "bitmap"
      Load "dbe"
      Load "ddc"
      Load "dri"
      Load "extmod"
      Load "freetype"
      Load "glx"
      Load "int10"
      Load "record"
      Load "speedo"
      Load "type1"
      Load "vbe"
      EndSection

      Section "InputDevice"
      Identifier "Generic Keyboard"
      Driver "keyboard"
      Option "CoreKeyboard"
      Option "XkbRules" "xfree86"
      Option "XkbModel" "pc105"
      Option "XkbLayout" "fr"
      EndSection
      Section "InputDevice"
      Identifier "Configured Mouse"
      Driver "mouse"
      Option "CorePointer"
      Option "Device" "/dev/input/mice"
      Option "Protocol" "ImPS/2"
      Option "Emulate3Buttons" "true"
      Option "ZAxisMapping" "4 5"
      EndSection

      Section "Device"
      Identifier "Carte vidéo générique"
      Driver "nv"
      EndSection

      Section "Monitor"
      Identifier "K15ANC/R/A"
      HorizSync 30-61
      VertRefresh 55-76
      Option "DPMS"
      EndSection
      Section "Screen"
      Identifier "Default Screen"
      Device "Carte vidéo générique"
      Monitor "K15ANC/R/A"
      DefaultDepth 24
      SubSection "Display"
      Depth 1
      Modes "800x600" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 4
      Modes "800x600" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 8
      Modes "800x600" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 15
      Modes "800x600" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 16
      Modes "800x600" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 24
      Modes "800x600" "640x480"
      EndSubSection
      EndSection

      Section "ServerLayout"
      Identifier "Default Layout"
      Screen "Default Screen"
      InputDevice "Generic Keyboard"
      InputDevice "Configured Mouse"
      EndSection

      Section "DRI"
      Mode 0666
      EndSection

      Merci, à bientôt

      Willmore
      0