• # Si quelqu'un passe par ici ...

    Posté par . En réponse au message configuration de slackware 15.0 sur HP Pavilion. Évalué à 2.

    Merci à legranblon et à Ellendhel pour les inforamtions transmises.

    Pour le point 2), voici une réponse partielle.

    Le script /etc/rc.d/rc.M contient les lignes suivantes :
    # Load a custom keymap if the user has an rc.keymap script.
    if [ -x /etc/rc.d/rc.keymap ]; then
    /etc/rc.d/rc.keymap
    fi
    Donc il suffit de créer un script /etc/rc.d/rc.keymap executable qui lance loadkeys fr

    Je vais essayer d'utiliser :
    #!/bin/sh
    # Load the keyboard map. More maps are in /usr/share/kbd/keymaps.
    if [ -x /usr/bin/loadkeys ]; then
    /usr/bin/loadkeys fr
    fi

    La suite au prochain numéro.