Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[Résolu][Serveur X] Probleme de clavier (plus d'accents)
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index French
View previous topic :: View next topic  
Author Message
adrislayer
n00b
n00b


Joined: 16 Aug 2005
Posts: 48

PostPosted: Sat Sep 29, 2007 2:32 pm    Post subject: [Résolu][Serveur X] Probleme de clavier (plus d'accents) Reply with quote

Bonjour,

voici mon probleme, je n'arrive plus a ecrire avec des accents avec mon clavier depuis une mise a jour, malheureusement je ne sais plus quels paquets ont ete mis a jour.

apres avoir regarde par ci par la j'ai decide de re-emerger xf86-input-keyboard et ca n'a rien donne.

mon kernel est bien configure en utf-8 et mes variables d'environnement egalement:
Code:
cat /etc/env.d/02locale
LANG="fr_FR.UTF-8"
LANGUAGE="fr_FR.UTF-8"
LC_ALL="fr_FR.UTF-8"


par contre ce qui pourrait etre a l'origine de la "panne" c'est le fait que j'utilise les drivers d'ati et que par consequence j'ai du masquer quelques petits trucs:
Code:
cat /etc/portage/package.mask
sys-kernel/gentoo-sources
>=x11-base/xorg-server-1.4
>=x11-proto/renderproto-0.9.3
>=x11-libs/libXrender-0.9.4
>=x11-drivers/xf86-input-keyboard-1.2
ne faites pas attention au masquage de gentoo-sources, je l'ai juste fait pour la transition entre le kernel suspend2 et le gentoo-sources.

sinon voici mon xorg.conf qui a toujours bien fonctionne:
Code:
cat /etc/X11/xorg.conf
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"   # Double buffer extension

    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

#    Load       "type1"
#    Load       "speedo"
    Load       "freetype"
#    Load       "xtt"
    Load       "dri"
    Load       "glx"
    Load       "synaptics"

EndSection


Section "Files"

#    RgbPath    "/usr/share/X11/rgb"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/75dpi/"
#    ModulePath "/usr/lib/modules"

EndSection


Section "ServerFlags"

EndSection


Section "InputDevice"

    Identifier   "Keyboard1"
    Driver          "kbd"
    Option      "XkbLayout"     "be"

EndSection


Section "InputDevice"

    Identifier            "Souris"
    Driver                   "mouse"
    Option "Protocol"    "IMPS/2"
    Option "Device"      "/dev/input/mice"
    Option               "ZAxisMapping" "4 5"

EndSection


Section "InputDevice"
        Identifier  "TouchPad"
        Driver      "synaptics"
        Option      "Device"          "/dev/input/mouse0"
        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.09"
        Option      "MaxSpeed"        "0.18"
        Option      "AccelFactor"     "0.0015"
        Option      "SHMConfig"       "true"
EndSection


Section "Modes"
        Identifier "16:10"

        # 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
        Modeline "1280x800_60.00"  83.46  1280 1344 1480 1680  800 801 804 828  -HSync +Vsync

        # 1280x800 @ 85.00 Hz (GTF) hsync: 71.40 kHz; pclk: 123.38 MHz
        Modeline "1280x800_85.00"  123.38  1280 1368 1504 1728  800 801 804 840  -HSync +Vsync

EndSection

Section "Modes"
   Identifier  "4:3"
   Modeline    "1280x1024_75.00" 83.46  1280 1344 1480 1680  800 801 804 828  -HSync +Vsync

EndSection

Section "Monitor"

    Identifier  "EcranAcer"
    ModelName   "WXGA LCD Display"
    UseModes    "16:10"
    Option      "DPMS"          "true"
    DisplaySize 322 201
EndSection


Section "Monitor"
   Identifier  "EcranAlternatif"
   UseModes    "4:3"
EndSection

Section "Device"
    Identifier   "Ati Radeon 9700 Mobility"
    VendorName   "Ati"
    Driver      "fglrx"
    Option      "DRI"           "true"
    Option      "VideoOverlay"  "on"
    Option          "AGPMode"   "4"
    Option          "AGPFastWrite"      "True"
    Option          "EnablePageFlip"    "True"

EndSection

Section "Screen"
    Identifier  "Screen 1"
    Device      "Ati Radeon 9700 Mobility"
    Monitor     "EcranAcer"
    DefaultDepth 24

    Subsection "Display"
        Depth       24
        Modes       "1280x800"
        ViewPort    0 0
    EndSubsection
EndSection

Section "ServerLayout"

    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "TouchPad"    "CorePointer"
    InputDevice "Souris"      "SendCoreEvents"
    InputDevice "Keyboard1"   "CoreKeyboard"
    Option      "OffTime"     "2"

EndSection


Section "DRI"
        Mode         0666
EndSection


Section "Extensions"
        Option      "XVideo"    "Enable"
        Option      "Composite" "false"
EndSection


mon keymaps est egalement bien configure:
Code:
KEYMAP="be-latin1"


pour rappel je n'arrive plus a taper les accents, c'est-a-dire: tous les a, e, u et les touches en alt + ctrl qui font des accents.

je me tourne vers vous car je ne comprends plus du tout ce petit probleme.

ps: eviter les solution a la emerge -e world svp. et merci de votre futur aide :)


Last edited by adrislayer on Sat Sep 29, 2007 3:50 pm; edited 2 times in total
Back to top
View user's profile Send private message
chris256
n00b
n00b


Joined: 04 Jun 2006
Posts: 21

PostPosted: Sat Sep 29, 2007 2:50 pm    Post subject: Reply with quote

Salut ,

Ce post devrait t'aider à résoudre ton problème .
_________________
Sorry for my bad English , I'm French .
Back to top
View user's profile Send private message
adrislayer
n00b
n00b


Joined: 16 Aug 2005
Posts: 48

PostPosted: Sat Sep 29, 2007 3:01 pm    Post subject: Reply with quote

merci bien, je viens d'aller voir a l'instant et du coup j'ai re-downgrader encore le xf86-input-keyboard jusqu'au maximum... mais rien n'y fait ca ne marche toujours pas.

ps: je viens de tester en mode console, le clavier fonctionne normalement. Du coup c'est un probleme au niveau du xorg, je vais voir si google ne peut pas me renseigner un peu d'avantage.
Back to top
View user's profile Send private message
geekounet
Bodhisattva
Bodhisattva


Joined: 11 Oct 2004
Posts: 3772
Location: Wellington, Aotearoa

PostPosted: Sat Sep 29, 2007 3:18 pm    Post subject: Reply with quote

Salut !
Peux-tu mettre ton titre du topic en conformité avec les conventions de notre forum s'il te plait ? Merci :)

C'est xkeyboard-config qu'il faut rétrograder, pas xf86-input-keyboard ;)
Et n'oublie pas le etc-update !
Back to top
View user's profile Send private message
GentooUser@Clubic
l33t
l33t


Joined: 01 Nov 2004
Posts: 829

PostPosted: Sat Sep 29, 2007 3:19 pm    Post subject: Reply with quote

Heu c'est x11-misc/xkeyboard-config qu'il faut downgrader !

Sinon je crois avoir lu sur le bugzilla q'un emerge -a1 xorg-server corige aussi le bug.



EDIT : j'ai testé reemerger xorg-server après avoir emergé xkeyboard-config-1.1 et ça marche !

Mon /etc/portage/package.mask est a nouveau vide :D
Back to top
View user's profile Send private message
adrislayer
n00b
n00b


Joined: 16 Aug 2005
Posts: 48

PostPosted: Sat Sep 29, 2007 3:34 pm    Post subject: Reply with quote

merci pour votre reponse, et desole pour le format du titre du post, voila qui est regle, je vais tester le downgrade du paquage config des qu'un emerge aura fini.

EDIT: problème résolu, merci à vous deux. voilà mon package.mask désormais (j'utilise fglrx pour ça que y'en a autant).
Code:
sys-kernel/gentoo-sources
>=x11-base/xorg-server-1.4
>=x11-proto/renderproto-0.9.3
>=x11-libs/libXrender-0.9.4
>=x11-drivers/xf86-input-keyboard-1.2
>=x11-misc/xkeyboard-config-1.1
Back to top
View user's profile Send private message
bivittatus
l33t
l33t


Joined: 31 Jan 2006
Posts: 687
Location: Roissy-en-Brie (France)

PostPosted: Sat Sep 29, 2007 5:26 pm    Post subject: Reply with quote

GentooUser@Clubic wrote:
EDIT : j'ai testé reemerger xorg-server après avoir emergé xkeyboard-config-1.1 et ça marche !


+1...je viens de la faire et ça fonctionne!!! :wink:

Merci
_________________
Linus TORVALDS: "Je ne suis pas là pour détruire Microsoft. Ce sera juste un effet secondaire tout à fait involontaire."
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index French All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum