x61t 에서 태블릿 활성화 하기
By SeukWon Kang
우분투 8.10을 설치/업그레이드 했더니 애써(?) 잡아둔 테블릿 설정이 지워졌습니다.
1 # xorg.conf (X.Org X Window System server configuration file) 2 # 3 # This file was generated by dexconf, the Debian X Configuration tool, using 4 # values from the debconf database. 5 # 6 # Edit this file with caution, and see the xorg.conf manual page. 7 # (Type “man xorg.conf” at the shell prompt.) 8 # 9 # This file is automatically updated on xserver-xorg package upgrades *only* 10 # if it has not been modified since the last upgrade of the xserver-xorg 11 # package. 12 # 13 # Note that some configuration settings that could be done previously 14 # in this file, now are automatically configured by the server and settings 15 # here are ignored. 16 # 17 # If you have edited this file but would like it to be automatically updated 18 # again, run the following command: 19 # sudo dpkg-reconfigure -phigh xserver-xorg 20 21 Section “Device” 22 Identifier “Configured Video Device” 23 EndSection 24 25 Section “Monitor” 26 Identifier “Configured Monitor” 27 EndSection 28 29 Section “Screen” 30 Identifier “Default Screen” 31 Monitor “Configured Monitor” 32 Device “Configured Video Device” 33 EndSection 34 35 #BEGIN TABLET SECTION 36 Section “InputDevice” 37 Driver “wacom” 38 Identifier “stylus” 39 Option “Device” “/dev/input/wacom” # USB ONLY 40 Option “Type” “stylus” 41 Option “USB” “on” # USB ONLY 42 Option “ForceDevice” “ISDV4” # Tablet PC ONLY 43 Option “Button2” “3” # Added for stylus click 44 EndSection 45 46 Section “InputDevice” 47 Driver “wacom” 48 Identifier “eraser” 49 Option “Device” “/dev/input/wacom” # USB ONLY 50 Option “Type” “eraser” 51 Option “USB” “on” # USB ONLY 52 Option “ForceDevice” “ISDV4” # Tablet PC ONLY 53 Option “Button3” “2” # Added for eraser working 54 EndSection 55 56 Section “InputDevice” 57 Driver “wacom” 58 Identifier “cursor” 59 Option “Device” “/dev/input/wacom” # USB ONLY 60 Option “Type” “cursor” 61 Option “USB” “on” # USB ONLY 62 Option “ForceDevice” “ISDV4” # Tablet PC ONLY 63 EndSection 64 65 # This section is for the TabletPC that supports touch 66 #Section “InputDevice” 67 # Driver “wacom” 68 # Identifier “touch” 69 # Option “Device” “/dev/input/wacom” # USB ONLY 70 # Option “Type” “touch” 71 # Option “ForceDevice” “ISDV4” # Tablet PC ONLY 72 # Option “USB” “on” # USB ONLY 73 #EndSection 74 #END TABLET SECTION 75 76 Section “ServerLayout” 77 Identifier “Default Layout” 78 Screen “Default Screen” 79 # InputDevice “Synaptics Touchpad” 80 81 #added to get tablet working 82 InputDevice “stylus” “SendCoreEvents” 83 InputDevice “cursor” “SendCoreEvents” 84 InputDevice “eraser” “SendCoreEvents” 85 # InputDevice “touch” “SendCoreEvents” 86 EndSection
으로 하면 간단하게 다시 복구 가능.