[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-27 Thread Thomas E. Horner
I've re-built 1.4.15-2ubuntu0.18.04.1 from source locally and I get the
same connect issue.

The issue is caused by the patch "mosquitto-1.4.15-cve-2018-12546".
With that one removed and mosquitto-1.4.x-cve-2018-12550.patch and 
mosquitto-1.4.x-cve-2018-12551.patch re-added the binary works again.

With *all* patches fully applied again but only the lines I mentioned in
#7 commented out, mosquitto works again. So definitely that's the issue.

I didn't analyse the ACL system thoroughly but this has to do with the
ACL not being set explicitly for the user, which - according to my
understanding - is perfectly legal. See my /etc/mosquitto/users.acl from
post #5.


I've locally changed
if(context->username && context->acl_list == NULL){
  return MOSQ_ERR_INVAL;
}

to
if(context->username && context->acl_list == NULL){
  _mosquitto_log_printf(NULL, MOSQ_LOG_NOTICE, "ACL entry not found for 
client with username \"%s\"", context->username);
  return MOSQ_ERR_SUCCESS;
}


The root cause might be a misunderstanding of the original code that
this patch moves into a new function. It seems that original code was
only meant to *load* the users's ACLs (if any) and not to *find* that
ACLs.

So basically the function acl__find_acls seems to be named wrong. The
name should be more like acl__load_acls and the function should return
success *even* if there's *NO* ACL found specific for that user.

Alternatively mosquitto_acl_check needs to be called in
read_handle_server.c when acl__find_acls returns MOSQ_ERR_INVAL so that
the %c and %u pattern matching will be performed, but probably the first
option above is the better one.

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
I see that the acl handling has been changed.

+  if(context->username && context->acl_list == NULL){
+  return MOSQ_ERR_INVAL;
+  }

Not sure this has anything to do with the issue.

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
/etc/mosquitto/conf.d/local.conf is attached

** Attachment added: "local.conf"
   
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+attachment/5238275/+files/local.conf

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
/etc/mosquitto/users.acl is attached

** Attachment added: "users.acl"
   
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+attachment/5238276/+files/users.acl

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
local.conf is the only config file inside /etc/mosquitto/conf.d/

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
mosquitto.conf is attaced

** Attachment added: "mosquitto.conf"
   
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+attachment/5238274/+files/mosquitto.conf

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] Re: mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
users.pwd does *not* contain any empty lines or comments
and each line *does* contain the ":" character

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

Title:
  mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client ,
  disconnecting."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815732/+subscriptions

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

[Bug 1815732] [NEW] mosquitto 1.4.15-2ubuntu0.18.04.1 "Socket error on client , disconnecting."

2019-02-13 Thread Thomas E. Horner
Public bug reported:

mosquitto version 1.4.15-2ubuntu0.18.04.1 introduces the following
issue:

1550048392: mosquitto version 1.4.15 (build date Wed, 06 Feb 2019 17:03:31 
+) starting
1550048392: Config loaded from /etc/mosquitto/mosquitto.conf.
1550048392: Opening ipv4 listen socket on port 8883.
1550048392: Opening ipv6 listen socket on port 8883.
1550048392: Opening ipv4 listen socket on port 1883.
1550048392: Opening ipv6 listen socket on port 1883.
1550048393: New connection from [client-ip-removed-before-posting] on port 8883.
1550048393: New connection from [client-ip-removed-before-posting] on port 8883.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client [client-name-removed-before-posting]5c550b4417cd1 
disconnected.
1550048394: Socket error on client , disconnecting.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client iot-bbq5c550b4434687 disconnected.
1550048394: Socket error on client , disconnecting.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client iot-bbq5c550b4441570 disconnected.
1550048394: Socket error on client , disconnecting.
1550048395: Client esp32-shutter-304e363633178717 disconnected.
1550048395: Socket error on client , disconnecting.
1550048395: Client esp32-rcswitch-304e363633107453 disconnected.
1550048395: Socket error on client , disconnecting.
1550048395: New connection from [client-ip-removed-before-posting] on port 8883.
1550048395: New connection from [client-ip-removed-before-posting] on port 8883.
1550048397: Socket error on client , disconnecting.
1550048397: Socket error on client , disconnecting.
1550048398: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: Client cypher disconnected.
1550048399: Socket error on client , disconnecting.
1550048400: Socket error on client , disconnecting.
1550048400: New connection from [client-ip-removed-before-posting] on port 8883.
1550048401: Socket error on client , disconnecting.
1550048401: New connection from [client-ip-removed-before-posting] on port 8883.
1550048402: Socket error on client , disconnecting.
1550048403: Socket error on client , disconnecting.
1550048403: New connection from [client-ip-removed-before-posting] on port 8883.
1550048404: New connection from [client-ip-removed-before-posting] on port 8883.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048405: Socket error on client , disconnecting.
1550048405: New connection from [client-ip-removed-before-posting] on port 8883.
1550048406: Socket error on client , disconnecting.
1550048406: New connection from [client-ip-removed-before-posting] on port 8883.
1550048407: Socket error on client , disconnecting.
1550048408: New connection from [client-ip-removed-before-posting] on port 8883.
1550048408: Socket error on client , disconnecting.
1550048409: New connection from [client-ip-removed-before-posting] on port 8883.
1550048409: Socket error on client , disconnecting.
1550048410: Socket error on client , disconnecting.
1550048410: New connection from [client-ip-removed-before-posting] on port 8883.
1550048412: Socket error on client , disconnecting.
1550048414: New connection from [client-ip-removed-before-posting] on port 8883.
1550048414: New connection from [client-ip-removed-before-posting] on port 8883.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048415: Socket error on client , disconnecting.
1550048416: New connection from [client-ip-removed-before-posting] on port 8883.
1550048416: Socket error on client , disconnecting.
1550048416: New connection from [client-ip-removed-before-posting] on port 8883.
1550048418: Socket error on client , disconnecting.
1550048418: Socket error on client , disconnecting.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048420: Socket error on client , disconnecting.
1550048421: Socket error on client , disconnecting.
1550048421: New connection from [client-ip-removed-before-posting] on port 8883.
1550048421: Socket error on client , disconnecting.
1550048422: New connection from 

[Bug 1815695] Re: Update incorrect, introduces possible crash

2019-02-13 Thread Thomas E. Horner
Please delete the above comment. Sorry!

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

Title:
  Update incorrect, introduces possible crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mosquitto/+bug/1815695/+subscriptions

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

[Bug 1815695] Re: Update incorrect, introduces possible crash

2019-02-13 Thread Thomas E. Horner
mosquitto version 1.4.15-2ubuntu0.18.04.1 brings the following issue:

1550048392: mosquitto version 1.4.15 (build date Wed, 06 Feb 2019 17:03:31 
+) starting
1550048392: Config loaded from /etc/mosquitto/mosquitto.conf.
1550048392: Opening ipv4 listen socket on port 8883.
1550048392: Opening ipv6 listen socket on port 8883.
1550048392: Opening ipv4 listen socket on port 1883.
1550048392: Opening ipv6 listen socket on port 1883.
1550048393: New connection from [client-ip-removed-before-posting] on port 8883.
1550048393: New connection from [client-ip-removed-before-posting] on port 8883.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client [client-name-removed-before-posting]5c550b4417cd1 
disconnected.
1550048394: Socket error on client , disconnecting.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client iot-bbq5c550b4434687 disconnected.
1550048394: Socket error on client , disconnecting.
1550048394: New connection from 127.0.0.1 on port 1883.
1550048394: Client iot-bbq5c550b4441570 disconnected.
1550048394: Socket error on client , disconnecting.
1550048395: Client esp32-shutter-304e363633178717 disconnected.
1550048395: Socket error on client , disconnecting.
1550048395: Client esp32-rcswitch-304e363633107453 disconnected.
1550048395: Socket error on client , disconnecting.
1550048395: New connection from [client-ip-removed-before-posting] on port 8883.
1550048395: New connection from [client-ip-removed-before-posting] on port 8883.
1550048397: Socket error on client , disconnecting.
1550048397: Socket error on client , disconnecting.
1550048398: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: New connection from [client-ip-removed-before-posting] on port 8883.
1550048399: Client cypher disconnected.
1550048399: Socket error on client , disconnecting.
1550048400: Socket error on client , disconnecting.
1550048400: New connection from [client-ip-removed-before-posting] on port 8883.
1550048401: Socket error on client , disconnecting.
1550048401: New connection from [client-ip-removed-before-posting] on port 8883.
1550048402: Socket error on client , disconnecting.
1550048403: Socket error on client , disconnecting.
1550048403: New connection from [client-ip-removed-before-posting] on port 8883.
1550048404: New connection from [client-ip-removed-before-posting] on port 8883.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048404: New connection from 127.0.0.1 on port 1883.
1550048404: Socket error on client , disconnecting.
1550048405: Socket error on client , disconnecting.
1550048405: New connection from [client-ip-removed-before-posting] on port 8883.
1550048406: Socket error on client , disconnecting.
1550048406: New connection from [client-ip-removed-before-posting] on port 8883.
1550048407: Socket error on client , disconnecting.
1550048408: New connection from [client-ip-removed-before-posting] on port 8883.
1550048408: Socket error on client , disconnecting.
1550048409: New connection from [client-ip-removed-before-posting] on port 8883.
1550048409: Socket error on client , disconnecting.
1550048410: Socket error on client , disconnecting.
1550048410: New connection from [client-ip-removed-before-posting] on port 8883.
1550048412: Socket error on client , disconnecting.
1550048414: New connection from [client-ip-removed-before-posting] on port 8883.
1550048414: New connection from [client-ip-removed-before-posting] on port 8883.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048414: New connection from 127.0.0.1 on port 1883.
1550048414: Socket error on client , disconnecting.
1550048415: Socket error on client , disconnecting.
1550048416: New connection from [client-ip-removed-before-posting] on port 8883.
1550048416: Socket error on client , disconnecting.
1550048416: New connection from [client-ip-removed-before-posting] on port 8883.
1550048418: Socket error on client , disconnecting.
1550048418: Socket error on client , disconnecting.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048419: New connection from [client-ip-removed-before-posting] on port 8883.
1550048420: Socket error on client , disconnecting.
1550048421: Socket error on client , disconnecting.
1550048421: New connection from [client-ip-removed-before-posting] on port 8883.
1550048421: Socket error on client , disconnecting.
1550048422: New connection from [client-ip-removed-before-posting] on port 8883.

[Bug 1765153] Re: Cannot open /dev/rfcommX as regular user

2018-04-19 Thread Thomas E. Horner
1)
mfg: Heinrichs Weikamp
model: OSTC4

2)
couldn't verify if it has worked with a previous version of ubuntu

3)
using sudo it works
without using sudo it doesn't
the user is member of several groups including the dialout group

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

Title:
  Cannot open /dev/rfcommX as regular user

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1765153/+subscriptions

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

[Bug 1765153] [NEW] Cannot open /dev/rfcommX as regular user

2018-04-18 Thread Thomas E. Horner
Public bug reported:

see Bug 570692

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-45-generic 4.4.0-45.66
ProcVersionSignature: Ubuntu 4.4.0-45.66-generic 4.4.21
Uname: Linux 4.4.0-45-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia
ApportVersion: 2.20.1-0ubuntu2.16
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  horner 3787 F pulseaudio
 /dev/snd/seq:timidity   1897 F timidity
Date: Wed Apr 18 19:56:21 2018
HibernationDevice: RESUME=UUID=df31c7b2-5ad3-453f-93e9-db96c8ac8e2c
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MachineType: System manufacturer System Product Name
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-45-generic 
root=UUID=c4837fb2-0225-4050-8b25-dda5cfd4edc2 ro splash quiet splash
PulseList:
 Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
 No PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-4.4.0-45-generic N/A
 linux-backports-modules-4.4.0-45-generic  N/A
 linux-firmware1.157.17
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/14/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0404
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5N7A-VM
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0404:bd10/14/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5N7A-VM:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug third-party-packages xenial

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

Title:
  Cannot open /dev/rfcommX as regular user

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1765153/+subscriptions

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

[Bug 570692] Re: Ubuntu 10.04 Can't open RFCOMM device: Permission denied

2018-03-26 Thread Thomas E. Horner
still occurs in Ubuntu 16.04.4 LTS

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

Title:
  Ubuntu 10.04 Can't open RFCOMM device: Permission denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/570692/+subscriptions

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

[Bug 515386] Re: No attachment when Thunderbird is set as default client.

2016-01-18 Thread Thomas E. Horner
Updated fix for 15.10

--- xdg-email.old   2015-09-16 22:36:49.0 +0200
+++ xdg-email.new   2016-01-18 16:38:29.755859228 +0100
@@ -225,7 +225,7 @@
 file="$dir/applications/$desktop"
 [ -r "$file" ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
-command="`grep -E "^Exec(\[[^]=]*])?=" "$file" | cut -d= -f 2- | sed 
-e 's/ .*$//'`"
+command="`grep -E "^Exec(\[[^]=]*])?=" "$file" | head -n 1 | cut -d= 
-f 2- | sed -e 's/ .*$//'`"
 command="`which "$command"`"
 readlink -f "$command"
 return
@@ -648,7 +648,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default "x-scheme-handler/mailto"`
-client=`desktop_file_to_binary "$browser"`
+client=`desktop_file_to_binary "$desktop"`
 echo $client | grep thunderbird > /dev/null 2>&1
 if [ $? -eq 0 ] ; then
 run_thunderbird "$client" "$1"

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

Title:
  No attachment when Thunderbird is set as default client.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

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


[Bug 1529067] [NEW] package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to install/upgrade: package linux-image-extra-4.2.0-22-generic is already installed and configured

2015-12-24 Thread Thomas E. Horner
Public bug reported:

-

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: linux-image-extra-4.2.0-22-generic 4.2.0-22.27
ProcVersionSignature: Ubuntu 4.2.0-21.25-generic 4.2.6
Uname: Linux 4.2.0-21-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.19.1-0ubuntu5
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  horner 3433 F pulseaudio
Date: Thu Dec 24 12:35:38 2015
DpkgHistoryLog:
 Start-Date: 2015-12-24  12:35:34
 Commandline: aptdaemon role='role-commit-packages' sender=':1.107'
 Install: picard:amd64 (1.3.2-2), libchromaprint-tools:amd64 (1.2-1build1, 
automatic), python-libdiscid:amd64 (0.4.1-3, automatic)
DuplicateSignature: 
package:linux-image-extra-4.2.0-22-generic:4.2.0-22.27:package 
linux-image-extra-4.2.0-22-generic is already installed and configured
ErrorMessage: package linux-image-extra-4.2.0-22-generic is already installed 
and configured
HibernationDevice: RESUME=UUID=df31c7b2-5ad3-453f-93e9-db96c8ac8e2c
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: System manufacturer System Product Name
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-21-generic 
root=UUID=c4837fb2-0225-4050-8b25-dda5cfd4edc2 ro splash quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-29ubuntu0.2
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: dpkg
Title: package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to 
install/upgrade: package linux-image-extra-4.2.0-22-generic is already 
installed and configured
UdevLog: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/14/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0404
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5N7A-VM
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0404:bd10/14/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5N7A-VM:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: dpkg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: already-installed amd64 apport-package need-duplicate-check wily

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

Title:
  package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to
  install/upgrade: package linux-image-extra-4.2.0-22-generic is already
  installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1529067/+subscriptions

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


[Bug 1529068] [NEW] package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to install/upgrade: package linux-image-extra-4.2.0-22-generic is already installed and configured

2015-12-24 Thread Thomas E. Horner
Public bug reported:

-

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: linux-image-extra-4.2.0-22-generic 4.2.0-22.27
ProcVersionSignature: Ubuntu 4.2.0-21.25-generic 4.2.6
Uname: Linux 4.2.0-21-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.19.1-0ubuntu5
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  horner 3433 F pulseaudio
Date: Thu Dec 24 12:35:38 2015
DpkgHistoryLog:
 Start-Date: 2015-12-24  12:35:34
 Commandline: aptdaemon role='role-commit-packages' sender=':1.107'
 Install: picard:amd64 (1.3.2-2), libchromaprint-tools:amd64 (1.2-1build1, 
automatic), python-libdiscid:amd64 (0.4.1-3, automatic)
DuplicateSignature: 
package:linux-image-extra-4.2.0-22-generic:4.2.0-22.27:package 
linux-image-extra-4.2.0-22-generic is already installed and configured
ErrorMessage: package linux-image-extra-4.2.0-22-generic is already installed 
and configured
HibernationDevice: RESUME=UUID=df31c7b2-5ad3-453f-93e9-db96c8ac8e2c
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: System manufacturer System Product Name
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-21-generic 
root=UUID=c4837fb2-0225-4050-8b25-dda5cfd4edc2 ro splash quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-29ubuntu0.2
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: dpkg
Title: package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to 
install/upgrade: package linux-image-extra-4.2.0-22-generic is already 
installed and configured
UdevLog: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/14/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0404
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5N7A-VM
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0404:bd10/14/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5N7A-VM:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: dpkg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: already-installed amd64 apport-package need-duplicate-check wily

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

Title:
  package linux-image-extra-4.2.0-22-generic 4.2.0-22.27 failed to
  install/upgrade: package linux-image-extra-4.2.0-22-generic is already
  installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1529068/+subscriptions

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


[Bug 1508718] Re: NetworkManager - error initialzing editor

2015-11-19 Thread Thomas E. Horner
Definitely happens as described.
Makes the mobile broadband unusable.

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

Title:
  NetworkManager - error initialzing editor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1508718/+subscriptions

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


[Bug 515386] Re: No attachment when Thunderbird is set as default client.

2015-07-15 Thread Thomas E. Horner
with the following patch simple-scan - Email works correctly on
Ubuntu 15.04 again:

diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email   2015-01-26 09:14:22.0 +0100
+++ fixed/xdg-email 2015-07-15 15:33:30.353509685 +0200
@@ -321,7 +321,7 @@
 file=$dir/applications/$desktop
 [ -r $file ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
-command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed 
-e 's/ .*$//'`
+command=`grep -E ^Exec(\[[^]=]*])?= $file | head -n 1 | cut -d= 
-f 2- | sed -e 's/ .*$//'`
 command=`which $command`
 readlink -f $command
 return
@@ -512,7 +512,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default x-scheme-handler/mailto`
-client=`desktop_file_to_binary $browser`
+client=`desktop_file_to_binary $desktop`
 echo $client | grep thunderbird  /dev/null 21
 if [ $? -eq 0 ] ; then
 run_thunderbird $client $1

the first change makes sure that only the first occurrence of Exec in 
thunderbird's desktop file is considered: | head -n 1.
the second change is a fix for what is clearly a bug (having $browser instead 
of the correct variable $desktop).
it's a little sad to see nothing happen here as this is a pain for a lot of 
users and quite easy to fix.

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

Title:
  No attachment when Thunderbird is set as default client.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

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


[Bug 1361906] Re: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

2015-02-02 Thread Thomas E. Horner
Nautilus (well, of cause actually gvfsd-ftp) now works as expected!

gvfs/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-backends/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-bin/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-common/utopic-proposed,now 1.20.2-1ubuntu3 all
gvfs-daemons/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-fuse/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-libs/utopic-proposed,now 1.20.2-1ubuntu3 amd64

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

Title:
  gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

To manage notifications about this bug go to:
https://bugs.launchpad.net/gvfs/+bug/1361906/+subscriptions

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


[Bug 1361906] Re: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

2015-02-02 Thread Thomas E. Horner
on my system the following command was required to update gvfs without
removing dependent programs:

sudo apt-get install gvfs/utopic-proposed gvfs-daemons/utopic-proposed
gvfs-libs/utopic-proposed gvfs-common/utopic-proposed gvfs:i386/utopic-
proposed gvfs-libs:i386/utopic-proposed gvfs-backends/utopic-proposed
gvfs-bin/utopic-proposed gvfs-fuse/utopic-proposed

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

Title:
  gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

To manage notifications about this bug go to:
https://bugs.launchpad.net/gvfs/+bug/1361906/+subscriptions

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


[Bug 515386] Re: No attachment when Thunderbird is set as default client.

2015-01-01 Thread Thomas E. Horner
with the following patch simple-scan - Email works correctly on
Ubuntu 14.10 again:

the first change makes sure that only the first occurrence of Exec in 
thunderbird's desktop file is considered: | head -n 1.
the second change is a fix for what is clearly a bug (having $browser instead 
of the correct variable $desktop).


diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email   2014-07-16 11:43:48.0 +0200
+++ fixed/xdg-email 2014-12-30 17:44:27.990930489 +0100
@@ -321,7 +321,7 @@
 file=$dir/applications/$desktop
 [ -r $file ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
-command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed 
-e 's/ .*$//'`
+command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed 
-e 's/ .*$//' | head -n 1`
 command=`which $command`
 readlink -f $command
 return
@@ -512,7 +512,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default x-scheme-handler/mailto`
-client=`desktop_file_to_binary $browser`
+client=`desktop_file_to_binary $desktop`
 echo $client | grep thunderbird  /dev/null 21
 if [ $? -eq 0 ] ; then
 run_thunderbird $client $1

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

Title:
  No attachment when Thunderbird is set as default client.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

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


[Bug 1277884] Re: xdg-email does not attach file with thunderbird

2015-01-01 Thread Thomas E. Horner
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

** This bug has been marked a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.

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

Title:
  xdg-email does not attach file with thunderbird

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

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


[Bug 1401632] Re: xdg-email fails to add attachment with Thunderbird

2015-01-01 Thread Thomas E. Horner
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

** This bug has been marked a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.

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

Title:
  xdg-email fails to add attachment with Thunderbird

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

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


[Bug 1019259] Re: xdg-email fails to launch Thunderbird

2015-01-01 Thread Thomas E. Horner
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

i confirm that adding the patch sending email works again.
for readability i'd like to propose using | head -n 1, tough:

the first change makes sure that only the first occurrence of Exec in 
thunderbird's desktop file is considered: | head -n 1.
the second change is a fix for what is clearly a bug (having $browser instead 
of the correct variable $desktop).

diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email 2014-07-16 11:43:48.0 +0200
+++ fixed/xdg-email 2014-12-30 17:44:27.990930489 +0100
@@ -321,7 +321,7 @@
 file=$dir/applications/$desktop
 [ -r $file ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
- command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//'`
+ command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//' | head -n 1`
 command=`which $command`
 readlink -f $command
 return
@@ -512,7 +512,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default x-scheme-handler/mailto`
- client=`desktop_file_to_binary $browser`
+ client=`desktop_file_to_binary $desktop`
 echo $client | grep thunderbird  /dev/null 21
 if [ $? -eq 0 ] ; then
 run_thunderbird $client $1


** This bug has been marked a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.

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

Title:
  xdg-email fails to launch Thunderbird

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

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


[Bug 1242611] Re: email not possible

2015-01-01 Thread Thomas E. Horner
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

with the following patch shutter - Email works correctly on Ubuntu
14.10 again:

the first change makes sure that only the first occurrence of Exec in 
thunderbird's desktop file is considered: | head -n 1.
the second change is a fix for what is clearly a bug (having $browser instead 
of the correct variable $desktop).

diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email 2014-07-16 11:43:48.0 +0200
+++ fixed/xdg-email 2014-12-30 17:44:27.990930489 +0100
@@ -321,7 +321,7 @@
 file=$dir/applications/$desktop
 [ -r $file ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
- command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//'`
+ command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//' | head -n 1`
 command=`which $command`
 readlink -f $command
 return
@@ -512,7 +512,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default x-scheme-handler/mailto`
- client=`desktop_file_to_binary $browser`
+ client=`desktop_file_to_binary $desktop`
 echo $client | grep thunderbird  /dev/null 21
 if [ $? -eq 0 ] ; then
 run_thunderbird $client $1


** This bug has been marked a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.

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

Title:
  email not possible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shutter/+bug/1242611/+subscriptions

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


[Bug 1397423] [NEW] nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to build

2014-11-28 Thread Thomas E. Horner
Public bug reported:

error nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module
failed to build

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: nvidia-331-uvm 331.89-0ubuntu5
ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
Uname: Linux 3.16.0-24-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
DKMSKernelVersion: 3.16.0-25-generic
Date: Fri Nov 28 19:22:24 2014
PackageVersion: 331.89-0ubuntu5
SourcePackage: nvidia-graphics-drivers-331
Title: nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to 
build
UpgradeStatus: Upgraded to utopic on 2014-10-29 (30 days ago)

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package utopic

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

Title:
  nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to
  build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1397423/+subscriptions

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


[Bug 1080787] Re: hp scanner 5300c does no longer work after upgrading to quantal

2014-09-27 Thread Thomas E. Horner
Amazing!
Following the guideline mgfrobozz posted on 2014-09-26 and applying the patch 
patch_1080787.txt indeed scanning works again!
@mgfrobozz: Thanks a lot :-)

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

Title:
  hp scanner 5300c does no longer work after upgrading to quantal

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

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


[Bug 1232788] Re: mir_demo_client_flicker crashed with SIGSEGV in __GI___pthread_mutex_lock() from MirSurface::get_cpu_region()

2013-10-10 Thread Thomas E. Horner
upgraded to latest daily image + all available package updates

dpkg -s libmirserver6
Version: 0.0.14+13.10.20131010-0ubuntu1

mir_demo_client_basic: still seems to work as before when the reported crash 
happened but (by design) does not output anything
mir_demo_client_eglflash: does still work as before when the reported crash 
happened
mir_demo_client_eglplasma: does still work as before when the reported crash 
happened
mir_demo_client_egltriangle: does still work as before when the reported crash 
happened
mir_demo_client_fingerpaint: doesn't seem work anymore (see below)
mir_demo_client_flicker: doesn't seem work anymore (see below)
mir_demo_client_multiwin: doesn't seem work anymore (see below)
mir_demo_client_scroll: doesn't seem work anymore (see below)


output of mir_demo_client_fingerpaint: no output until [Ctrl]+[C] and after 
that just Signal 2 received. Good night.

output of mir_demo_client_flicker:
ubuntu@ubuntu:~$ sudo mir_demo_client_flicker 
Starting
Connected
Surface created
1 FPS
no more output after that - i hit [Ctrl]+[C]

output of mir_demo_client_multiwin: no output until [Ctrl]+[C] and after
that just Signal 2 received. Good night.

output of mir_demo_client_scroll:
ubuntu@ubuntu:~$ sudo mir_demo_client_scroll 
Starting
Connected
Surface created
libEGL warning: unsupported platform (null)
no more output after that - i hit [Ctrl]+[C]

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

Title:
  mir_demo_client_flicker crashed with SIGSEGV in
  __GI___pthread_mutex_lock() from MirSurface::get_cpu_region()

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1232788/+subscriptions

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


[Bug 1232788] Re: unity-system-compositor: mir_demo_client_flicker crashed with SIGSEGV in __GI___pthread_mutex_lock() from MirSurface::get_cpu_region()

2013-10-10 Thread Thomas E. Horner
i confirm that after stopping lightdm and starting one of the mir demo
servers the demo clients work as expected.

one bad behaviour is the following:
1) having stopped lightdm and the demo servers
2) hit [Ctrl]+[Alt]+[F7]
3) no screen updates anymore, no switching back with keyboard
only way out seems to be to access the system via ssh and start lightdm

and yes, the software clients just hang when connecting to the non-demo
mir server :)

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

Title:
  unity-system-compositor: mir_demo_client_flicker crashed with SIGSEGV
  in __GI___pthread_mutex_lock() from MirSurface::get_cpu_region()

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1232788/+subscriptions

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


[Bug 1080787] Re: hp scanner 5300c does no longer work after upgrading to quantal

2013-04-12 Thread Thomas E. Horner
i'm running X on a local machine with gnome-terminal as console.
of cause the output and outcome is the same if i enter the commands on the 
real console.

dmesg
[  371.392052] usb 4-3: new full-speed USB device number 2 using ohci_hcd
[  371.621052] usb 4-3: New USB device found, idVendor=03f0, idProduct=0701
[  371.621056] usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  371.621060] usb 4-3: Product: Hewlett Packard ScanJet 5300C/5370C 
[  371.621062] usb 4-3: Manufacturer: Hewlett Packard
[  371.621065] usb 4-3: SerialNumber: 

lsusb
Bus 003 Device 002: ID 08e6:3437 Gemplus GemPC Twin SmartCard Reader
Bus 003 Device 003: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle 
(HCI mode)
Bus 004 Device 002: ID 03f0:0701 Hewlett-Packard ScanJet 5300c/5370c
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

sudo scanimage -L
No scanners were identified. If you were expecting something different,
check that the scanner is plugged in, turned on and detected by the
sane-find-scanner tool (if appropriate). Please read the documentation
which came with this software (README, FAQ, manpages).

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

Title:
  hp scanner 5300c does no longer work after upgrading to quantal

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

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


[Bug 1080787] Re: hp scanner 5300c does no longer work after upgrading to quantal

2013-04-12 Thread Thomas E. Horner
sudo sane-find-scanner

  # sane-find-scanner will now attempt to detect your scanner. If the
  # result is different from what you expected, first make sure your
  # scanner is powered up and properly connected to your computer.

  # No SCSI scanners found. If you expected something different, make sure that
  # you have loaded a kernel SCSI driver for your SCSI adapter.

  # No USB scanners found. If you expected something different, make sure that
  # you have loaded a kernel driver for your USB host controller and have setup
  # the USB system correctly. See man sane-usb for details.

  # Not checking for parallel port scanners.

  # Most Scanners connected to the parallel port or other proprietary ports
  # can't be detected by this program.

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

Title:
  hp scanner 5300c does no longer work after upgrading to quantal

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

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


[Bug 1080787] Re: hp scanner 5300c does no longer work after upgrading to quantal

2013-04-12 Thread Thomas E. Horner
diff -u /tmp/40-libsane.rules.old /tmp/40-libsane.rules.new

--- /tmp/40-libsane.rules.old   2013-04-12 13:42:57.852351382 +0200
+++ /tmp/40-libsane.rules.new   2013-04-12 13:42:39.772351383 +0200
@@ -1,5 +1,5 @@
 # This file was automatically created based on description files (*.desc)
-# by sane-desc 3.5 from sane-backends 1.0.22
+# by sane-desc 3.5 from sane-backends 1.0.23
 #
 # udev rules file for supported USB and SCSI devices
 #
@@ -87,6 +87,8 @@
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==1705, ENV{libsane_matched}=yes
 # Hewlett-Packard ScanJet 7650
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==1805, ENV{libsane_matched}=yes
+# Hewlett-Packard ScanJet 4850C
+ATTRS{idVendor}==03f0, ATTRS{idProduct}==1b05, ENV{libsane_matched}=yes
 # Hewlett-Packard ScanJet 3530C | Hewlett-Packard ScanJet 3570C
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==2005, ENV{libsane_matched}=yes
 # Hewlett-Packard ScanJet 3500C
@@ -115,6 +117,8 @@
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==4505, ENV{libsane_matched}=yes
 # Hewlett-Packard ScanJet G4050
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==4605, ENV{libsane_matched}=yes
+# Hewlett-Packard ScanJet N6310
+ATTRS{idVendor}==03f0, ATTRS{idProduct}==4705, ENV{libsane_matched}=yes
 # Hewlett-Packard LaserJet M1120 MFP
 ATTRS{idVendor}==03f0, ATTRS{idProduct}==5617, ENV{libsane_matched}=yes
 # Hewlett-Packard LaserJet M1120n MFP
@@ -123,6 +127,58 @@
 ATTRS{idVendor}==0400, ATTRS{idProduct}==1000, ENV{libsane_matched}=yes
 # Mustek BearPaw 1200 | Mustek BearPaw 2400
 ATTRS{idVendor}==0400, ATTRS{idProduct}==1001, ENV{libsane_matched}=yes
+# Kodak ESP 5100
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4025, ENV{libsane_matched}=yes
+# Kodak ESP 5300
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4026, ENV{libsane_matched}=yes
+# Kodak ESP 5500
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4027, ENV{libsane_matched}=yes
+# Kodak ESP 5000
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4028, ENV{libsane_matched}=yes
+# Kodak ESP 3300
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4031, ENV{libsane_matched}=yes
+# Kodak ESP 5
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4032, ENV{libsane_matched}=yes
+# Kodak ESP 7
+ATTRS{idVendor}==040a, ATTRS{idProduct}==403e, ENV{libsane_matched}=yes
+# Kodak ESP 9
+ATTRS{idVendor}==040a, ATTRS{idProduct}==403f, ENV{libsane_matched}=yes
+# Kodak ESP 5200
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4041, ENV{libsane_matched}=yes
+# Kodak ESP 3200
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4043, ENV{libsane_matched}=yes
+# Kodak ESP 4100
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4053, ENV{libsane_matched}=yes
+# Kodak ESP 6100
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4054, ENV{libsane_matched}=yes
+# Kodak ESP 7200
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4056, ENV{libsane_matched}=yes
+# Kodak ESP C110
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4057, ENV{libsane_matched}=yes
+# Kodak ESP C115
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4058, ENV{libsane_matched}=yes
+# Kodak ESP 2150
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4059, ENV{libsane_matched}=yes
+# Kodak ESP C310
+ATTRS{idVendor}==040a, ATTRS{idProduct}==405d, ENV{libsane_matched}=yes
+# Kodak ESP C315
+ATTRS{idVendor}==040a, ATTRS{idProduct}==405e, ENV{libsane_matched}=yes
+# Advent AW10
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4060, ENV{libsane_matched}=yes
+# Kodak Hero Office 6.1
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4062, ENV{libsane_matched}=yes
+# Kodak Hero 7.1
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4063, ENV{libsane_matched}=yes
+# Kodak Hero 5.1
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4064, ENV{libsane_matched}=yes
+# Kodak ESP 9200
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4065, ENV{libsane_matched}=yes
+# Kodak ESP 2170
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4066, ENV{libsane_matched}=yes
+# Kodak Hero 9.1
+ATTRS{idVendor}==040a, ATTRS{idProduct}==4067, ENV{libsane_matched}=yes
+# Kodak Hero 3.1
+ATTRS{idVendor}==040a, ATTRS{idProduct}==406d, ENV{libsane_matched}=yes
 # Kodak i30
 ATTRS{idVendor}==040a, ATTRS{idProduct}==6001, ENV{libsane_matched}=yes
 # Kodak i40
@@ -179,6 +235,8 @@
 ATTRS{idVendor}==0458, ATTRS{idProduct}==2021, ENV{libsane_matched}=yes
 # Medion/Lifetec/Tevion/Cytron MD5345 | Medion/Lifetec/Tevion/Cytron MD6228 | 
Medion/Lifetec/Tevion/Cytron MD6471
 ATTRS{idVendor}==0461, ATTRS{idProduct}==0377, ENV{libsane_matched}=yes
+# Xerox 2400 Onetouch
+ATTRS{idVendor}==0461, ATTRS{idProduct}==038b, ENV{libsane_matched}=yes
 # Trust Office Scan USB 19200
 ATTRS{idVendor}==047b, ATTRS{idProduct}==1000, ENV{libsane_matched}=yes
 # Hewlett-Packard ScanJet 4300c/Silitek
@@ -251,6 +309,8 @@
 ATTRS{idVendor}==04a7, ATTRS{idProduct}==0474, ENV{libsane_matched}=yes
 # Xerox DocuMate272
 ATTRS{idVendor}==04a7, ATTRS{idProduct}==0475, ENV{libsane_matched}=yes
+# Xerox DocuMate232
+ATTRS{idVendor}==04a7, ATTRS{idProduct}==0476, ENV{libsane_matched}=yes
 # Xerox DocuMate152
 ATTRS{idVendor}==04a7, ATTRS{idProduct}==0477, ENV{libsane_matched}=yes
 # Xerox DocuMate752
@@ -323,9 +383,9 @@
 

[Bug 1080787] [NEW] hp scanner 5300c does no longer work after upgrading to quantal

2012-11-19 Thread Thomas E. Horner
Public bug reported:

on 12.10 the scanner doesn't work anymore.
on 12.04 it worked on the same machine.
the scanner still works on a second machine that was not upgraded by now.


uname:
Linux matrix 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 x86_64 
x86_64 x86_64 GNU/Linux

lsb_release:
Description:Ubuntu 12.10
Release:12.10

versions:
sane: 1.0.14-9
libsane: 1.0.23-0ubuntu1

dmesg:
[12883.928037] usb 3-6: new full-speed USB device number 23 using ohci_hcd
[12884.157054] usb 3-6: New USB device found, idVendor=03f0, idProduct=0701
[12884.157059] usb 3-6: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[12884.157062] usb 3-6: Product: Hewlett Packard ScanJet 5300C/5370C 
[12884.157064] usb 3-6: Manufacturer: Hewlett Packard
[12884.157067] usb 3-6: SerialNumber: 

lsusb:
Bus 003 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle 
(HCI mode)
Bus 003 Device 023: ID 03f0:0701 Hewlett-Packard ScanJet 5300c/5370c
Bus 004 Device 002: ID 08e6:3437 Gemplus GemPC Twin SmartCard Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

scanimage -Lv
No scanners were identified. If you were expecting something different,
check that the scanner is plugged in, turned on and detected by the
sane-find-scanner tool (if appropriate). Please read the documentation
which came with this software (README, FAQ, manpages).

** Affects: unity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: libusb sane udev

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

Title:
  hp scanner 5300c does no longer work after upgrading to quantal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1080787/+subscriptions

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


[Bug 745585] Re: XKeysymDB missing in libx11-data

2011-06-06 Thread Thomas E. Horner
seems to affect several motif applications (like sun secure global desktop, 
etc.)
keyboard input is not possible in those apps
not too easy to find out the root cause (might be impossible for many users)

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

Title:
  XKeysymDB missing in libx11-data

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


[Bug 586696] [NEW] while upgrading to lucid lynx an error message asked me to create this bug report - the causing packet seems to be skype-common

2010-05-28 Thread Thomas E. Horner
Public bug reported:

Binary package hint: update-manager

error message was:

Es konnte nicht ermittelt werden, welche Systemaktualisierungen
verfügbar sind

An unresolvable problem occurred while calculating the upgrade:
Das Paket »skype-common« ist zum Löschen vorgesehen, wurde aber durch das 
System gesperrt.

 This can be caused by:
 * Upgrading to a pre-release version of Ubuntu
 * Running the current pre-release version of Ubuntu
 * Unofficial software packages not provided by Ubuntu

Falls nichts davon zutrifft, melden Sie dies bitte als Fehler im Paket
»update-manager« und fügen Sie die Dateien aus dem Verzeichnis /var/log
/dist-upgrade/ Ihrem Fehlerbericht hinzu.

ProblemType: Bug
Architecture: amd64
Date: Fri May 28 08:46:12 2010
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: update-manager 1:0.126.9
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_AT.UTF-8
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-21.59-generic
SourcePackage: update-manager
Tags: karmic
Uname: Linux 2.6.31-21-generic x86_64

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug karmic

-- 
while upgrading to lucid lynx an error message asked me to create this bug 
report - the causing packet seems to be skype-common
https://bugs.launchpad.net/bugs/586696
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 586696] Re: while upgrading to lucid lynx an error message asked me to create this bug report - the causing packet seems to be skype-common

2010-05-28 Thread Thomas E. Horner

** Attachment added: the whole folder /var/log/dist-upgrade/
   http://launchpadlibrarian.net/49249169/dist-upgrade.tar.gz

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/49249005/Dependencies.txt

-- 
while upgrading to lucid lynx an error message asked me to create this bug 
report - the causing packet seems to be skype-common
https://bugs.launchpad.net/bugs/586696
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 377795] Re: mail icon appears permanently in indicator applet

2009-09-11 Thread Thomas E. Horner

hi mikel!

if you disable the libnotify plugin using pidgin - tools - plugins - 
libnotify popups - uncheck
and restart pidgin the unnecessary notification icon will be gone

br,
   thomas

-- 
mail icon appears permanently in indicator applet
https://bugs.launchpad.net/bugs/377795
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