[Bug 325581] [NEW] kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-04 Thread Douglas Henke
Public bug reported:

Binary package hint: xserver-xorg-input-evdev

Under Ubuntu 8.10, my Kensington pocket mouse, model #72237, does not
move the cursor. (The buttons and wheel work, just not X or Y movement.)
This is a wireless mouse with a USB dongle, USB ID 0d62:1000. The kernel
recognizes the device, and udev creates the appropriate device files. I
can stop gdm, cat the event file and see data when I move the mouse.

The same device works fine under Ubuntu 8.04 (tested on two computers)
and WinXP (likewise). I have tried three machines with Ubuntu 8.10 (and
radically different hardware), and it fails in the same way on all of
them -- including one that dual-boots to 8.04 and then works fine. Also,
other USB mice work fine on all the 8.10 hosts.

It looks like the X server mistakes it for a keyboard. From my
/var/log/Xor.0.log:

(II) config/hal: Adding input device HID 0d62:1000
(**) HID 0d62:1000: always reports core events
(**) HID 0d62:1000: Device: "/dev/input/event2"
(II) HID 0d62:1000: Found x and y relative axes
(II) HID 0d62:1000: Found x and y absolute axes
(II) HID 0d62:1000: Found absolute touchpad
(II) HID 0d62:1000: Found 32 mouse buttons
(II) HID 0d62:1000: Found keys
(II) HID 0d62:1000: Configuring as mouse
(II) HID 0d62:1000: Configuring as keyboard
(II) XINPUT: Adding extended input device "HID 0d62:1000" (type: KEYBOARD)

Here is what "xinput list" says about it:

"HID 0d62:1000" id=5[XExtensionKeyboard]
Num_keys is 248
Min_keycode is 8
Max_keycode is 255
Num_buttons is 32
Num_axes is 2
Mode is Relative
Motion_buffer is 256
Axis 0 :
Min_value is -1
Max_value is -1
Resolution is 1
Axis 1 :
Min_value is -1
Max_value is -1
Resolution is 1

I'd be happy to provide any additional data that would help, or make any
suggested edits to my xorg.conf.

** Affects: xserver-xorg-input-evdev (Ubuntu)
 Importance: Undecided
 Status: New

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-04 Thread Douglas Henke
Update: After doing some more digging, I grow increasingly suspicious
that the root cause is not in evdev, but rather in HAL. It looks like
HAL may be reporting the wrong thing and then evdev just acts on the bad
information. (Please see the attached lshal output.)

I'm not sure about this analysis; comments from those with more
experience would be appreciated. I've tried putting some things in
/etc/hal/fdi/policy/ to make the device look less mouse-like, so far
without success. (The attached output is from a fresh boot with no such
modifications.)

** Attachment added: "lshal"
   http://launchpadlibrarian.net/22004407/lshal

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-05 Thread Douglas Henke
In my previous comment, please s/less mouse-like/more mouse-like/ .

I have managed to make the lshal output look convincingly mouse-like by
creating a file /etc/hal/fdi/information/00kensington.fdi which removes
'input.keys' and 'button' from the 'info.capabilities' like, thus:

 

  

  input.keys
  button

  


However, evdev still thinks it's a keyboard; the Xorg.0.log output
remains as per the original report.

I'm still not able to decide with confidence if this is a problem in
HAL, evdev or even the kernel HID driver (from which I assume HAL gets
device capability info by way of sysfs). Apologies to the evdev team if
I've reported this to the wrong place.

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-06 Thread Douglas Henke
The reason evdev is confused is that, apparently, ioctl(fd, EVIOCGBIT,
EV_KEY, ...) is returning capabilities that don't match the actual
device in question. (Come to think of it, EV_ABS coming back with
something for a mouse is odd, too.)

I'm not sure if the right solution is to add something to the quirks
list in the kernel usbhid stuff, and/or if a workaround in evdev would
be useful.

Would something like the attached help? (Still trying to figure out how
to build it myself so I can test...)

** Attachment added: "Possible workaround for evdev 2.1.1 - untested!"
   http://launchpadlibrarian.net/22056076/evdev.patch

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-06 Thread Douglas Henke
Tested; doesn't seem to break anything, but doesn't fix my problem
either. With the patch in place, the mouse is now being categorized as a
mouse and not a keyboard:

(II) config/hal: Adding input device HID 0d62:1000
(**) HID 0d62:1000: always reports core events
(**) HID 0d62:1000: Device: "/dev/input/event10"
(II) HID 0d62:1000: Found 32 mouse buttons
(II) HID 0d62:1000: Found x and y relative axes
(II) HID 0d62:1000: Found x and y absolute axes
(II) HID 0d62:1000: Found absolute touchpad
(II) HID 0d62:1000: Found keys
(II) HID 0d62:1000: Configuring as mouse
(**) HID 0d62:1000: YAxisMapping: buttons 4 and 5
(**) HID 0d62:1000: EmulateWheelButton: 4, EmulateWheelInertia: 10, 
EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "HID 0d62:1000" (type: MOUSE)
(**) Option "xkb_rules" "evdev"
(**) HID 0d62:1000: xkb_rules: "evdev"
(**) Option "xkb_model" "evdev"
(**) HID 0d62:1000: xkb_model: "evdev"
(**) Option "xkb_layout" "us"
(**) HID 0d62:1000: xkb_layout: "us"

It still doesn't make the cursor move, though. (And it is still getting
keyboard-related options applied to it.)

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-06 Thread Douglas Henke

** Attachment added: "working patch against evdev 2.1.1"
   http://launchpadlibrarian.net/22059082/evdev.patch

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-02-06 Thread Douglas Henke
Here are the comments that I meant to apply to the above patch; they
somehow didn't "take":

Okay, got it. The attached patch makes my Kensington pocket mouse work
again, and doesn't break any of the other input devices I have sitting
around. (Caveat: I have no touchscreens.)

The basic ideas are:
   1) If a device says it has relative axes, then any claim that it also has 
absolute axes is a lie.

   2) A device can only be one of touchscreen, mouse or keyboard. If it looks 
like several, then
   take the first thing from that list it claims to be.

Bear in mind I haven't ever seen the usbhid, hald or evdev code before a
couple days ago, so please apply vigorous quality control before pushing
this into anything that'll be used by somebody's grandmother!

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2010-05-11 Thread Douglas Henke
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: xserver-xorg-input-evdev
  
  Under Ubuntu 8.10, my Kensington pocket mouse, model #72237, does not
  move the cursor. (The buttons and wheel work, just not X or Y movement.)
  This is a wireless mouse with a USB dongle, USB ID 0d62:1000. The kernel
  recognizes the device, and udev creates the appropriate device files. I
  can stop gdm, cat the event file and see data when I move the mouse.
  
  The same device works fine under Ubuntu 8.04 (tested on two computers)
  and WinXP (likewise). I have tried three machines with Ubuntu 8.10 (and
  radically different hardware), and it fails in the same way on all of
  them -- including one that dual-boots to 8.04 and then works fine. Also,
  other USB mice work fine on all the 8.10 hosts.
  
  It looks like the X server mistakes it for a keyboard. From my
  /var/log/Xor.0.log:
  
  (II) config/hal: Adding input device HID 0d62:1000
  (**) HID 0d62:1000: always reports core events
  (**) HID 0d62:1000: Device: "/dev/input/event2"
  (II) HID 0d62:1000: Found x and y relative axes
  (II) HID 0d62:1000: Found x and y absolute axes
  (II) HID 0d62:1000: Found absolute touchpad
  (II) HID 0d62:1000: Found 32 mouse buttons
  (II) HID 0d62:1000: Found keys
  (II) HID 0d62:1000: Configuring as mouse
  (II) HID 0d62:1000: Configuring as keyboard
  (II) XINPUT: Adding extended input device "HID 0d62:1000" (type: KEYBOARD)
  
  Here is what "xinput list" says about it:
  
  "HID 0d62:1000"   id=5[XExtensionKeyboard]
Num_keys is 248
Min_keycode is 8
Max_keycode is 255
Num_buttons is 32
Num_axes is 2
Mode is Relative
Motion_buffer is 256
Axis 0 :
Min_value is -1
Max_value is -1
Resolution is 1
Axis 1 :
Min_value is -1
Max_value is -1
Resolution is 1
  
- I'd be happy to provide any additional data that would help, or make any
- suggested edits to my xorg.conf.
+ I'd be happy to provide any additional data that would help, or make any 
suggested edits to my xorg.conf.
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
+ AplayDevices:
+   List of PLAYBACK Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  henke  1535 F pulseaudio
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info:
+  Card hw:0 'Intel'/'HDA Intel at 0x5854 irq 16'
+Mixer name : 'Realtek ALC268'
+Components : 'HDA:10ec0268,1025015b,00100101'
+Controls  : 8
+Simple ctrls  : 5
+ CheckboxSubmission: c003c793cae090991827803bc76423b6
+ CheckboxSystem: c69722ecac764861be52925fa50b4dcc
+ DistroRelease: Ubuntu 10.04
+ DkmsStatus: Error: [Errno 2] No such file or directory
+ HibernationDevice: RESUME=UUID=4c8ee15c-d4e4-45ba-a036-4cd81df6ccb0
+ MachineType: Acer AOA150
+ Package: xserver-xorg-input-evdev 1:2.3.2-5ubuntu1
+ PackageArchitecture: i386
+ ProcCmdLine: root=UUID=e87d53ec-2f11-42fe-a591-8a858aea7353 ro quiet splash
+ ProcEnviron:
+  PATH=(custom, user)
+  LANG=en_US.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
+ Regression: Yes
+ Reproducible: Yes
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ Tags: lucid  regression-release needs-upstream-testing lucid lucid
+ Uname: Linux 2.6.32-21-generic i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ WpaSupplicantLog:
+  
+ dmi.bios.date: 10/06/2008
+ dmi.bios.vendor: Acer
+ dmi.bios.version: v0.3310
+ dmi.board.asset.tag: Base Board Asset Tag
+ dmi.board.vendor: Acer
+ dmi.board.version: Base Board Version
+ dmi.chassis.type: 1
+ dmi.chassis.vendor: Chassis Manufacturer
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAcer:bvrv0.3310:bd10/06/2008:svnAcer:pnAOA150:pvr1:rvnAcer:rn:rvrBaseBoardVersion:cvnChassisManufacturer:ct1:cvrChassisVersion:
+ dmi.product.name: AOA150
+ dmi.product.version: 1
+ dmi.sys.vendor: Acer
+ system:
+  distro: Ubuntu
+  codename:   lucid
+  architecture:   i686
+  kernel: 2.6.32-21-generic

** Attachment added: "AlsaDevices.txt"
   http://launchpadlibrarian.net/48292224/AlsaDevices.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu

[Bug 325581] BootDmesg.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "BootDmesg.txt"
   http://launchpadlibrarian.net/48292225/BootDmesg.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Card0.Amixer.values.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Card0.Amixer.values.txt"
   http://launchpadlibrarian.net/48292226/Card0.Amixer.values.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Card0.Codecs.codec.0.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Card0.Codecs.codec.0.txt"
   http://launchpadlibrarian.net/48292227/Card0.Codecs.codec.0.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] GdmLog.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "GdmLog.txt"
   http://launchpadlibrarian.net/48292236/GdmLog.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] GdmLog1.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "GdmLog1.txt"
   http://launchpadlibrarian.net/48292238/GdmLog1.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] CurrentDmesg.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "CurrentDmesg.txt"
   http://launchpadlibrarian.net/48292229/CurrentDmesg.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Dependencies.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/48292230/Dependencies.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] GdmLog2.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "GdmLog2.txt"
   http://launchpadlibrarian.net/48292239/GdmLog2.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] IwConfig.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "IwConfig.txt"
   http://launchpadlibrarian.net/48292240/IwConfig.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Lspci.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Lspci.txt"
   http://launchpadlibrarian.net/48292242/Lspci.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] PciDisplay.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "PciDisplay.txt"
   http://launchpadlibrarian.net/48292246/PciDisplay.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Lsusb.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Lsusb.txt"
   http://launchpadlibrarian.net/48292244/Lsusb.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] ProcCpuinfo.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "ProcCpuinfo.txt"
   http://launchpadlibrarian.net/48292249/ProcCpuinfo.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] PciMultimedia.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "PciMultimedia.txt"
   http://launchpadlibrarian.net/48292247/PciMultimedia.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] RelatedPackageVersions.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "RelatedPackageVersions.txt"
   http://launchpadlibrarian.net/48292256/RelatedPackageVersions.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] ProcInterrupts.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "ProcInterrupts.txt"
   http://launchpadlibrarian.net/48292253/ProcInterrupts.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] WifiSyslog.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "WifiSyslog.txt"
   http://launchpadlibrarian.net/48292263/WifiSyslog.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] XorgConf.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/48292265/XorgConf.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] UdevLog.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "UdevLog.txt"
   http://launchpadlibrarian.net/48292262/UdevLog.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] ProcModules.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "ProcModules.txt"
   http://launchpadlibrarian.net/48292255/ProcModules.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] XorgLog.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/48292297/XorgLog.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] XorgLogOld.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/48292338/XorgLogOld.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] glxinfo.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "glxinfo.txt"
   http://launchpadlibrarian.net/48292342/glxinfo.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] monitors.xml.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "monitors.xml.txt"
   http://launchpadlibrarian.net/48292344/monitors.xml.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] xdpyinfo.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "xdpyinfo.txt"
   http://launchpadlibrarian.net/48292353/xdpyinfo.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] setxkbmap.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "setxkbmap.txt"
   http://launchpadlibrarian.net/48292349/setxkbmap.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] UdevDb.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "UdevDb.txt"
   http://launchpadlibrarian.net/48292257/UdevDb.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Xrandr.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "Xrandr.txt"
   http://launchpadlibrarian.net/48292340/Xrandr.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] xkbcomp.txt

2010-05-11 Thread Douglas Henke
apport information

** Attachment added: "xkbcomp.txt"
   http://launchpadlibrarian.net/48292354/xkbcomp.txt

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325581] Re: kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10

2009-10-15 Thread Douglas Henke
Bryce @#8: Happy to help. I am in complete agreement with your ideas
about 1) a fix at the kernel level being better than a workaround at the
evdev level (though perhaps both would be a worthy idea, in a belt-and-
suspenders kind of way; are there any real-life devices which have both
absolute and relative axes?) and 2) getting more eyes on it before it
goes out to Joe Average User.

I'll keep the notification message in my queue and ping you around
January-ish unless I hear from you before.

Happy hacking!

-- 
kensington pocket mouse model #72237 USB 0d62:1000 not working under 8.10
https://bugs.launchpad.net/bugs/325581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1347781] [NEW] package ubuntu-docs 14.04.3 failed to install/upgrade: symbolic link '/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size has changed from 67 to 60

2014-07-23 Thread Douglas Henke
Public bug reported:

As root, apt-get upgrade produces the output:

Preparing to unpack .../ubuntu-docs_14.04.4_all.deb ...
Unpacking ubuntu-docs (14.04.4) over (14.04.3) ...
dpkg: error processing archive 
/var/cache/apt/archives/ubuntu-docs_14.04.4_all.deb (--unpack):
 symbolic link '/usr/share/help/si/ubuntu-help/accounts-disable-service.page' 
size has changed from 67 to 60
[...]
Errors were encountered while processing:
 /var/cache/apt/archives/ubuntu-docs_14.04.4_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

The symlink in question looks like this:

lrwxrwxrwx 1 root root 67 Apr  8 03:46 /usr/share/help/si/ubuntu-help
/accounts-disable-service.page -> ../../../help-langpack/si/ubuntu-help
/display-dimscreen.page

My system is:

Description:Ubuntu 14.04.1 LTS
Release:14.04

running on a VirtualBox VM under a Win7 host.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: ubuntu-docs 14.04.3
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic i686
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: i386
Date: Tue Jul 22 09:37:28 2014
DuplicateSignature: package:ubuntu-docs:14.04.3:symbolic link 
'/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size has changed 
from 67 to 60
ErrorMessage: symbolic link 
'/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size has changed 
from 67 to 60
InstallationDate: Installed on 2010-10-22 (1369 days ago)
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
PackageArchitecture: all
SourcePackage: ubuntu-docs
Title: package ubuntu-docs 14.04.3 failed to install/upgrade: symbolic link 
'/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size has changed 
from 67 to 60
UpgradeStatus: Upgraded to trusty on 2014-04-24 (89 days ago)

** Affects: ubuntu-docs (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1347781

Title:
  package ubuntu-docs 14.04.3 failed to install/upgrade: symbolic link
  '/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size
  has changed from 67 to 60

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-docs/+bug/1347781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1347781] Re: package ubuntu-docs 14.04.3 failed to install/upgrade: symbolic link '/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size has changed from 67 to 60

2014-07-23 Thread Douglas Henke
Manually removing the /usr/share/help/si/ubuntu-help/accounts-disable-
service.page symlink appears to fix the problem. Once I did so, I was
able to re-run "apt-get upgrade" with no errors.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1347781

Title:
  package ubuntu-docs 14.04.3 failed to install/upgrade: symbolic link
  '/usr/share/help/si/ubuntu-help/accounts-disable-service.page' size
  has changed from 67 to 60

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-docs/+bug/1347781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs