デスクトップ上でマウスをゆっくり動かすと、ポインタがマウスを動かすのと反対の方向に数ピクセル(1つまたは2つ)ジャンプすることがよくあります。 Eclipseでいくつかのセミコロンの周りにカーソルを設定しようとすると恐ろしくなります。これは間違ったセット解像度の結果だと思います。これは、マウスが最初は非常に高速に設定されていたためだと思います。xset m 1/2 3
を実行しても、マウスは高速で不正確です。
それはすでに次のようにxorg.confを構成しようとしました:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "Device" "/dev/mouse"
Option "Protocol" "Auto"
Option "Name" "Logitech G3"
Option "Resolution" "2000"
EndSection
しかし、効果はありません。
[〜#〜] edit [〜#〜]しかし、私が認識した新しいことの1つは、マウスの設定で、スライダーを最大または最小にスライドできることです。マウスの行動(感度)は変わりません。 /var/log/Xorg.0.logでも、何か好奇心が強いことがわかりました。
[ 257.409] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/event1)
[ 257.409] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
[ 257.409] (II) Using input driver 'evdev' for 'Logitech USB Gaming Mouse'
[ 257.409] (**) Logitech USB Gaming Mouse: always reports core events
[ 257.409] (**) evdev: Logitech USB Gaming Mouse: Device: "/dev/input/event1"
[ 257.409] (--) evdev: Logitech USB Gaming Mouse: Vendor 0x46d Product 0xc042
[ 257.409] (--) evdev: Logitech USB Gaming Mouse: Found 20 mouse buttons
[ 257.409] (--) evdev: Logitech USB Gaming Mouse: Found scroll wheel(s)
[ 257.409] (--) evdev: Logitech USB Gaming Mouse: Found relative axes
[ 257.409] (--) evdev: Logitech USB Gaming Mouse: Found x and y relative axes
[ 257.409] (II) evdev: Logitech USB Gaming Mouse: Configuring as mouse
[ 257.409] (II) evdev: Logitech USB Gaming Mouse: Adding scrollwheel support
[ 257.409] (**) evdev: Logitech USB Gaming Mouse: YAxisMapping: buttons 4 and 5
[ 257.409] (**) evdev: Logitech USB Gaming Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 257.409] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.1/usb3/3-1/3-1:1.0/input/input1/event1"
[ 257.409] (II) XINPUT: Adding extended input device "Logitech USB Gaming Mouse" (type: MOUSE, id 8)
[ 257.409] (II) evdev: Logitech USB Gaming Mouse: initialized for relative axes.
[ 257.409] (**) Logitech USB Gaming Mouse: (accel) keeping acceleration scheme 1
[ 257.409] (**) Logitech USB Gaming Mouse: (accel) acceleration profile 0
[ 257.409] (**) Logitech USB Gaming Mouse: (accel) acceleration factor: 2.000
[ 257.409] (**) Logitech USB Gaming Mouse: (accel) acceleration threshold: 4
[ 257.409] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/mouse0)
[ 257.409] (II) No input driver specified, ignoring this device.
[ 257.409] (II) This device may have been added with another device file.
それでも私の質問は:
Debian wheezyでマウスを正しくセットアップするにはどうすればよいですか?
さて、それは時間がかかりました。しかし、私は解決策を得ました。 Meanhile私も新しいマウスを購入しました。
高dpiのマウスを使用している場合は、最小の加速度で標準のdpiを使用できます(とにかく高速になります)。次の手順に従います。
xinput
を取得します
$ Sudo apt-get install xinput
入力デバイスを一覧表示します
xinput --list
次のような出力が得られるはずです。
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ HID 1d57:0005 id=8 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=10 [slave keyboard (3)]
私の場合、「HAMAuRAGE」はHID 1d57:0005です。そのIDを覚えておいてください。
今、魔法がやってくる。私は解像度を上げたいのですが、debianobvは私にそうさせたくありません。入力:
xinput set-float-prop <id> 'Device Accel Constant Deceleration' <d>;
ここで、マウスのIDと減速係数に置き換えられます。あなたは少し遊んでいなければなりません。私のような。少なくともXは、変更を適用するために再起動する必要はありません。挨拶
編集:
永続的にするには、X11設定を編集します。
Sudo nano /etc/X11/xorg.conf
追加:オプション "ConstantDeceleration" "10"
例:
Section "InputClass"
Identifier "My mouse"
MatchIsPointer "true"
Option "ConstantDeceleration" "10"
EndSection