<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
It should be like that...  But it never worked when I tried ...
sometimes the core keyboard went crazy printing lots of randoz
caracters...<br>
<br>
may be I need all the options ?<br>
<br>
I never found a proper solution.<br>
<br>
Mr E_T wrote:
<blockquote cite="mid200601190053.44651.troll@arach.net.au" type="cite">
  <pre wrap="">On Wednesday 18 January 2006 23:10, david752004 wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hello

I need to plug several USB keyboard on my laptop with fedora core 4.
It works well, but all keyboards have the same layout, while I want a 
different layout for each keyboard.

For example :     keyboard 1 -> us qwerty
                           keyboard 2 -> greek...

I tried to change xorg.conf, but it did not work.
    </pre>
  </blockquote>
  <pre wrap=""><!---->Must use the raw devices in the following from xorg.conf
Not tested but the basics should be there

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Keyboard2"
    InputDevice "Keyboard3"
EndSection

Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "kbd"
    Device      "/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier  "Keyboard2"
    Driver      "kbd"
    Device      "/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "el_GR"
EndSection

Section "InputDevice"
    Identifier  "Keyboard3"
    Driver      "kbd"
    Device      "/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "ko"
EndSection

  </pre>
</blockquote>
</body>
</html>