Oracle® Solaris 11 데스크탑 접근성 설명서

인쇄 보기 종료

업데이트 날짜: 2014년 7월
 
 

Oracle Solaris x86 시스템에서 USB 마우스 장치를 두 개 구성하려면

  1. 시스템에 두번째 마우스를 연결하기 전에 기존 장치를 나열합니다.
    # ls -l /dev/usb/hid*
  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. 다음과 같이 두번째 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 서버를 다시 시작합니다.