Go to main content
Oracle® Solaris 11 デスクトップのアクセシビリティーガイド

印刷ビューの終了

更新: 2015 年 10 月
 
 

Oracle Solaris x86 システムに 2 台の USB マウスデバイスを構成するには

  1. システムに 2 台目のマウスを接続する前に、既存のデバイスを一覧表示します。
    # ls -l /dev/usb/hid*
  2. システムに 2 台目のマウスを接続します。
  3. 新規デバイスを一覧表示します。
    # ls -l /dev/usb/hid*
  4. /etc/X11/xorg.conf ファイルで、ServerLayout セクションを次のように編集します。
    Section "ServerLayout"
             Identifier     "X.org Configured"
             Screen      0  "Screen0" 0 0
             InputDevice    "Mouse0" "CorePointer"
             InputDevice    "Mouse1"
             InputDevice    "Keyboard0" "CoreKeyboard"
    					EndSection
  5. InputDevice セクションを次のように編集します。
    Section "InputDevice"
             Identifier  "Mouse0"
             Driver      "mouse"
             Option      "Protocol" "VUID"
             Option      "Device" "/dev/mouse"
    EndSection
  6. 2 番目の InputDevice セクションを次のように編集します。
    Section "InputDevice"
             Identifier  "Mouse1"
             Driver      "mouse"
             Option      "Protocol" "VUID"
             Option      "StreamsModule" "usbms"
             Option      "Device" "/dev/usb/hidx"
    EndSection

    ここでは:

    /dev/usb/hidx は、手順 3 で識別されたデバイス名です。

  7. /etc/X11/xorg.conf ファイルを保存します。
  8. X サーバーを起動します。