Debian Wheezy'de tuhaf fare davranışı (ürkek imleç)


3

Faremi yavaşça masaüstünün üzerine getirdiğimde, işaretçi genellikle faremi hareket ettirdiğim yöne doğru birkaç piksel (bir veya iki) atlar. Korkunç bir şekilde imleci tutuculuktaki bazı noktalı virgüllerin etrafına koymaya çalışırken. Sanırım bu yanlış ayarlanmış bir çözünürlüğün sonucudur. Sanırım bunun sebebi farenin başlangıçta çok hızlı bir şekilde ayarlanmış olmasıdır. xset m 1/2 3, fare sadece benim için hızlı ve belirsizdir.

Xorg.conf dosyasını şu şekilde yapılandırmaya çalıştı:

Section "InputDevice"
    Identifier  "Configured Mouse"
    Driver      "mouse"
    Option      "Device"    "/dev/mouse"
    Option      "Protocol"  "Auto"
    Option      "Name" "Logitech G3"
    Option      "Resolution" "2000"
EndSection

Ancak etkisi yok.

DÜZENLE Ancak tanıdığım yeni bir şey, fare ayarlarında kaydırıcıyı maks. Veya min. Fare davranışı (hassasiyet) değişmez. Ben de /var/log/Xorg.0.log’da çok cüretkar bir şey buldum:

[   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.

Hala sorum şu:

Faremi Debian wheezy içinde doğru şekilde nasıl ayarlarım?

Yanıtlar:


2

Tamam, bu biraz zaman aldı. Ama bir çözüm buldum. Bu arada yeni bir fare bile aldım.

Yüksek dpi değerine sahip bir fareniz varsa, standart dpi'sini minimum ivmelenme ile kullanabilirsiniz (ki yine de hızlı olacak) aşağıdaki adımları izleyin:

  1. Almak xinput

    $ sudo apt-get install xinput

  2. Giriş cihazlarınızı listeleyin

    xinput --list

    Böyle bir çıktı almalısınız:

    ⎡ 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)]
    
  3. Benim durumum "HAMA ÜRETİMİ" HID 1d57: 0005. Kimliğini hatırla.

  4. Şimdi sihir geliyor. Çözümü arttırmayı tercih ederdim ama Debian Obv benden istemiyor. Yazın:

    xinput set-float-prop <id> 'Device Accel Constant Deceleration' <d>;
    

farenizin kimliği ve yavaşlama faktörü ile değiştirilecek yer. Biraz oynamak zorundasın. Benim gibi. En azından X, değişiklikleri uygulamak için yeniden başlatmaya gerek duymaz. Greets

DÜZENLE:

Kalıcı yapmak için X11 ayarlarını düzenleyin.

sudo nano /etc/X11/xorg.conf

Ekle: Seçenek "ConstantDeceleration" "10"

Örnek:

Section "InputClass"
   Identifier "My mouse"
   MatchIsPointer "true"
   Option "ConstantDeceleration" "10"
EndSection
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.