[Touch-packages] [Bug 1995260] Re: dnsmasq focal 2.80 NODATA instead of NXDOMAIN bug

2022-11-25 Thread Maximilian Stinsky
I tested the patch inside a ubuntu focal vm and can verify that the bug
is fixed.

Testing that has been done:
Enable proposed repository and install dnsmasq version 2.80-1.1ubuntu1.6:

cat  /etc/resolv.conf << __EOF__
  nameserver 8.8.8.8
  __EOF__
  # systemctl start dnsmasq.service

  #1 Bad case

  # for i in srv txt  a  a txt srv; do host -t $i test.foo. 127.0.0.1 | 
tail -n 1; done
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  test.foo has no A record
  Host test.foo. not found: 3(NXDOMAIN)
  test.foo has no A record
  test.foo has no TXT record
  test.foo has no SRV record

  #2 Good case

  #2.1 Installing new package

  # ls -1 *.deb
  dnsmasq-utils_2.80-1.1ubuntu1.6_amd64.deb
  dnsmasq-base_2.80-1.1ubuntu1.6_amd64.deb
  dnsmasq_2.80-1.1ubuntu1.6_all.deb

  # dpkg -i *.deb
  (Reading database ... 32073 files and directories currently installed.)
  Preparing to unpack dnsmasq-base_2.80-1.1ubuntu1.6_amd64.deb ...
  Unpacking dnsmasq-base (2.80-1.1ubuntu1.6) over (2.80-1.1ubuntu1.5) ...
  Selecting previously unselected package dnsmasq-utils.
  Preparing to unpack dnsmasq-utils_2.80-1.1ubuntu1.6_amd64.deb ...
  Unpacking dnsmasq-utils (2.80-1.1ubuntu1.6) ...
  Preparing to unpack dnsmasq_2.80-1.1ubuntu1.6_all.deb ...
  Unpacking dnsmasq (2.80-1.1ubuntu1.6) over (2.80-1.1ubuntu1.5) ...
  Setting up dnsmasq-base (2.80-1.1ubuntu1.6) ...
  Setting up dnsmasq-utils (2.80-1.1ubuntu1.6) ...
  Setting up dnsmasq (2.80-1.1ubuntu1.6) ...
  Processing triggers for dbus (1.12.16-2ubuntu2.3) ...
  Processing triggers for man-db (2.9.1-1) ...
  Processing triggers for systemd (245.4-4ubuntu3.18) ...

  # dpkg -l | grep dnsmasq
  ii  dnsmasq2.80-1.1ubuntu1.6 all  
Small caching DNS proxy and DHCP/TFTP server
  ii  dnsmasq-base   2.80-1.1ubuntu1.6 amd64
Small caching DNS proxy and DHCP/TFTP server
  ii  dnsmasq-utils  2.80-1.1ubuntu1.6 amd64
Utilities for manipulating DHCP leases

  #2.2 Testing OK

  # for i in srv txt  a  a txt srv; do host -t $i test.foo. 127.0.0.1 | 
tail -n 1; done
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)
  Host test.foo. not found: 3(NXDOMAIN)

  [ Where problems could occur ]

  It changes the program's behaviour by classifying as NXDOMAIN what
  used to be NODATA in some situations, so if a user had a workaround
  for this (in the form of a script or other kind of automatization) it
  will probably start to malfunction.

  The 

[Touch-packages] [Bug 1995260] Re: dnsmasq focal 2.80 NODATA instead of NXDOMAIN bug

2022-11-01 Thread Maximilian Stinsky
Details on how to reproduce this are:
Install dnsmasq on ubuntu focal.

Start dnsmasq with for example: dnsmasq --server 8.8.8.8
Try to resolve hosts that are known to not exist on the authoritative name 
server that is used with dnsmasq.

for i in srv txt  a  a txt srv; do host -t $i test.foo. 127.0.0.1 | 
tail -n 1; done
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
test.foo has no A record
Host test.foo. not found: 3(NXDOMAIN)
test.foo has no A record
test.foo has no TXT record
test.foo has no SRV record

Expected is that all tests are returning NXDOMAIN but they dont because
of the bug.

Same test on a ubuntu jammy installation with dnsmasq 2.86:
for i in srv txt  a  a txt srv; do host -t $i test.foo. 127.0.0.1 | 
tail -n 1; done
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)
Host test.foo. not found: 3(NXDOMAIN)


The real world problem where we found this was with the autopath plugin from 
coredns in kubernetes. Because dnsmasq in version 2.80 sometimes returns NODATA 
the search path of autopath gets interrupted and the name resolution for 
normally working records fails. 

** Changed in: dnsmasq (Ubuntu Focal)
   Status: Incomplete => New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/1995260

Title:
  dnsmasq focal 2.80 NODATA instead of NXDOMAIN bug

Status in dnsmasq package in Ubuntu:
  Fix Released
Status in dnsmasq source package in Focal:
  New

Bug description:
  We upgraded our openstack containers which host dnsmasq services from
  bionic to focal. With this we got an update of dnsmasq from 2.79 to
  2.80 which introduced a bug in our setup where dnsmasq returns NODATA
  instead of NXDOMAIN.

  This is already fixed upstream with the following commit [1].

  The Ubuntu dnsmasq 2.80 package should get a backport with a release
  for the focal packages which includes this bug fix.

  [1]
  
https://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=commit;h=162e5e0062ce923c494cc64282f293f0ed64fc10

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1995260] [NEW] dnsmasq focal 2.80 NODATA instead of NXDOMAIN bug

2022-10-31 Thread Maximilian Stinsky
Public bug reported:

We upgraded our openstack containers which host dnsmasq services from
bionic to focal. With this we got an update of dnsmasq from 2.79 to 2.80
which introduced a bug in our setup where dnsmasq returns NODATA instead
of NXDOMAIN.

This is already fixed upstream with the following commit [1].

The Ubuntu dnsmasq 2.80 package should get a backport with a release for
the focal packages which includes this bug fix.

[1]
https://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=commit;h=162e5e0062ce923c494cc64282f293f0ed64fc10

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/1995260

Title:
  dnsmasq focal 2.80 NODATA instead of NXDOMAIN bug

Status in dnsmasq package in Ubuntu:
  New

Bug description:
  We upgraded our openstack containers which host dnsmasq services from
  bionic to focal. With this we got an update of dnsmasq from 2.79 to
  2.80 which introduced a bug in our setup where dnsmasq returns NODATA
  instead of NXDOMAIN.

  This is already fixed upstream with the following commit [1].

  The Ubuntu dnsmasq 2.80 package should get a backport with a release
  for the focal packages which includes this bug fix.

  [1]
  
https://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=commit;h=162e5e0062ce923c494cc64282f293f0ed64fc10

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1895850] [NEW] UI is not very helpful, let's talk about improvements?

2020-09-16 Thread Bruno Maximilian Voss
Public bug reported:

Hello,

I already asked a question here

https://answers.launchpad.net/apport/+question/692912

Someone on IRC suggested I file a bug report too/instead.

Thanks for reading.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: apport 2.20.11-0ubuntu27.8
ProcVersionSignature: Ubuntu 5.4.0-47.51-generic 5.4.55
Uname: Linux 5.4.0-47-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: XFCE
Date: Wed Sep 16 15:42:24 2020
InstallationDate: Installed on 2019-07-24 (419 days ago)
InstallationMedia: Xubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: Upgraded to focal on 2020-09-15 (1 days ago)

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


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1895850

Title:
  UI is not very helpful, let's talk about improvements?

Status in apport package in Ubuntu:
  New

Bug description:
  Hello,

  I already asked a question here

  https://answers.launchpad.net/apport/+question/692912

  Someone on IRC suggested I file a bug report too/instead.

  Thanks for reading.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: apport 2.20.11-0ubuntu27.8
  ProcVersionSignature: Ubuntu 5.4.0-47.51-generic 5.4.55
  Uname: Linux 5.4.0-47-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27.8
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: XFCE
  Date: Wed Sep 16 15:42:24 2020
  InstallationDate: Installed on 2019-07-24 (419 days ago)
  InstallationMedia: Xubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to focal on 2020-09-15 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1880725] [NEW] Video Stream are hanging/buffering around every 10seconds

2020-05-26 Thread Maximilian Krieglmeyer
Public bug reported:

I am using KODI on Ubuntu and every Video stream I use is hanging after
around 10 seconds. Ubuntu is setup on a Proxmox VM and the GPU is passed
through. I tried to reinstall the driver without any effect. Network
connection is a 50MBit/s line, so should not be the issue.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg (not installed)
ProcVersionSignature: Ubuntu 4.15.0-101.102-generic 4.15.18
Uname: Linux 4.15.0-101-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.14
Architecture: amd64
Date: Tue May 26 18:00:26 2020
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Device [8086:3ea5] (rev 01) (prog-if 00 [VGA controller])
   Subsystem: Intel Corporation Device [8086:2074]
InstallationDate: Installed on 2020-05-15 (11 days ago)
InstallationMedia: Ubuntu-Server 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
MachineType: QEMU Standard PC (Q35 + ICH9, 2009)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=C.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-101-generic 
root=UUID=09ee74bf-e5a7-489d-bfed-27c845c2e9c1 ro
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/06/2015
dmi.bios.vendor: EFI Development Kit II / OVMF
dmi.bios.version: 0.0.0
dmi.chassis.type: 1
dmi.chassis.vendor: QEMU
dmi.chassis.version: pc-q35-5.0
dmi.modalias: 
dmi:bvnEFIDevelopmentKitII/OVMF:bvr0.0.0:bd02/06/2015:svnQEMU:pnStandardPC(Q35+ICH9,2009):pvrpc-q35-5.0:cvnQEMU:ct1:cvrpc-q35-5.0:
dmi.product.name: Standard PC (Q35 + ICH9, 2009)
dmi.product.version: pc-q35-5.0
dmi.sys.vendor: QEMU
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4.4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

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


** Tags: amd64 apport-bug bionic ubuntu uec-images

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1880725

Title:
  Video Stream are hanging/buffering around every 10seconds

Status in xorg package in Ubuntu:
  New

Bug description:
  I am using KODI on Ubuntu and every Video stream I use is hanging
  after around 10 seconds. Ubuntu is setup on a Proxmox VM and the GPU
  is passed through. I tried to reinstall the driver without any effect.
  Network connection is a 50MBit/s line, so should not be the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg (not installed)
  ProcVersionSignature: Ubuntu 4.15.0-101.102-generic 4.15.18
  Uname: Linux 4.15.0-101-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  Date: Tue May 26 18:00:26 2020
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Device [8086:3ea5] (rev 01) (prog-if 00 [VGA controller])
 Subsystem: Intel Corporation Device [8086:2074]
  InstallationDate: Installed on 2020-05-15 (11 days ago)
  InstallationMedia: Ubuntu-Server 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: QEMU Standard PC (Q35 + ICH9, 2009)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=C.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-101-generic 
root=UUID=09ee74bf-e5a7-489d-bfed-27c845c2e9c1 ro
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/06/2015
  dmi.bios.vendor: EFI Development Kit II / OVMF
  dmi.bios.version: 0.0.0
  dmi.chassis.type: 1
  dmi.chassis.vendor: QEMU
  dmi.chassis.version: pc-q35-5.0
  dmi.modalias: 
dmi:bvnEFIDevelopmentKitII/OVMF:bvr0.0.0:bd02/06/2015:svnQEMU:pnStandardPC(Q35+ICH9,2009):pvrpc-q35-5.0:cvnQEMU:ct1:cvrpc-q35-5.0:
  dmi.product.name: Standard PC (Q35 + ICH9, 2009)
  dmi.product.version: pc-q35-5.0
  dmi.sys.vendor: QEMU
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4.4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
  version.xserver-xorg-video-nouveau: 

[Touch-packages] [Bug 1748839] Re: Problem to connect to WPA2/PEAP WIFI - gnome-shell

2018-06-20 Thread maximilian
same here. A fix would be highly appreciated.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1748839

Title:
  Problem to connect to WPA2/PEAP WIFI  - gnome-shell

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  Connection to open or WPA secured wifi works without any issues.
  Connection to WPA2/PEAP fails. Repeatedly asks for username/password.

  Possible gnome-shell integration issue.

  The system was updated from Xenial to Bionic in mid-January. At that
  time this WPA2/PEAP setup worked without any issues. With the updates
  coming in the last week of January / First February week - the bug was
  experienced.

  1)
  ➜  syncthing git:(master) lsb_release -rd
  Description:  Ubuntu Bionic Beaver (development branch)
  Release:  18.04

  2) - up to date packages
  [code]
  ➜  cat /etc/apt/sources.list |egrep -v '^#'
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic main restricted
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic universe
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic-updates universe
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic multiverse
  deb http://cz.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
  deb http://security.ubuntu.com/ubuntu/ bionic-security multiverse main 
universe restricted
  [/code]

  Note:
  # some pkg version related to problem might be from proposed-updates repo

  2b)
  [code]
  dpkg -l |egrep -i 'network manager|networkm|libnm'
  ii  gir1.2-networkmanager-1.0:amd641.8.4-1ubuntu4 
amd64GObject introspection data for 
the libnm-glib/libnm-util library
  ii  gir1.2-nm-1.0:amd641.8.4-1ubuntu4 
amd64GObject introspection data for 
the libnm library
  ii  gir1.2-nmgtk-1.0:amd64 1.8.10-2ubuntu1
amd64GObject introspection data for 
libnm-gtk
  ii  libnm-glib-vpn1:amd64  1.8.4-1ubuntu4 
amd64network management framework 
(GLib VPN shared library)
  ii  libnm-glib4:amd64  1.8.4-1ubuntu4 
amd64network management framework 
(GLib shared library)
  ii  libnm-gtk0:amd64   1.8.10-2ubuntu1
amd64library for wireless and 
mobile dialogs (libnm-glib version)
  ii  libnm-util2:amd64  1.8.4-1ubuntu4 
amd64network management framework 
(shared library)
  ii  libnm0:amd64   1.8.4-1ubuntu4 
amd64GObject-based client library 
for NetworkManager
  ii  libnma0:amd64  1.8.10-2ubuntu1
amd64library for wireless and 
mobile dialogs (libnm version)
  ii  libproxy1-plugin-networkmanager:amd64  0.4.15-0ubuntu1
amd64automatic proxy configuration 
management library (Network Manager plugin)
  ii  network-manager-config-connectivity-ubuntu 1.8.4-1ubuntu4 
all  NetworkManager configuration 
to enable connectivity checking
  ii  strongswan-nm  5.6.1-2ubuntu1 
amd64strongSwan plugin to interact 
with NetworkManager

  ii  wpasupplicant  2:2.6-15ubuntu2
  amd64client support for WPA and WPA2 (IEEE 802.11i)

  [/code]

  3,4)
  Connection to open or WPA secured wifi works withou any issues. Connection to 
WPA2/PLEAP (without cert, just with username/password fails). Although wifi 
layer get's is associated the client (network-manager) possibly due to bug 
deauthenticate itself without establishing an IP connection.

  Connect to network.

  5)
  Logs (syslog/kernel)

  Core moments:

  [code]
  Feb 12 09:19:02 dontpanic NetworkManager[1125]:   [1518423542.9125] 
keyfile: update /etc/NetworkManager/system-connections/WiFi 
(82c55e94-907a-458a-ae31-8cbd75db0fa5,"WiFi")
  Feb 12 09:19:02 dontpanic gnome-shell[4284]: g_value_get_string: assertion 
'G_VALUE_HOLDS_STRING (value)' failed

  and ...

  Feb 12 09:19:02 dontpanic NetworkManager[1125]:   [1518423542.9450] 
device (wlp4s0): Activation: (wifi) connection 'WiFi' has security, and 
secrets exist.  No new secrets needed.
  Feb 12 09:19:02 dontpanic NetworkManager[1125]:   [1518423542.9450] 
Config: added 'ssid' 

[Touch-packages] [Bug 1521136] Re: NetworkManager segfaults on connect

2015-12-02 Thread Maximilian
Same problem here. Downgrading does not fix the problem for me though...

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1521136

Title:
  NetworkManager segfaults on connect

Status in network-manager package in Ubuntu:
  New

Bug description:
  Upon connecting, NetworkManager from -updates is segfaulting:

  [  139.520739] NetworkManager[15884]: segfault at 0 ip
  00497ad7 sp 7fff77195d00 error 4 in
  NetworkManager[40+1bf000]

  
  Nov 30 10:31:23 arbella NetworkManager[16259]:   keyfile: add 
connection in-memory (c4b6e184-67e3-4a12-8dd3-79ec7ef650e0,"enx803f5d087a34")
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (enx803f5d087a34): 
device state change: unmanaged -> unavailable (reason 'connection-assumed') [10 
20 41]
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (enx803f5d087a34): 
device state change: unavailable -> disconnected (reason 'connection-assumed') 
[20 30 41]
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (enx803f5d087a34): 
Activation: starting connection 'enx803f5d087a34' 
(c4b6e184-67e3-4a12-8dd3-79ec7ef650e0)
  Nov 30 10:31:23 arbella NetworkManager[16259]: nm_device_get_device_type: 
assertion 'NM_IS_DEVICE (self)' failed
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (lo): link connected
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (lo): new Generic 
device (carrier: ON, driver: 'unknown', ifindex: 1)
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (wlp2s0): using 
nl80211 for WiFi device control
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (wlp2s0): driver 
supports Access Point (AP) mode
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (wlp2s0): new 802.11 
WiFi device (carrier: UNKNOWN, driver: 'ath10k_pci', ifindex: 3)
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (wlp2s0): device state 
change: unmanaged -> unavailable (reason 'managed') [10 20 2]
  Nov 30 10:31:23 arbella kernel: [  140.168048] IPv6: ADDRCONF(NETDEV_UP): 
wlp2s0: link is not ready
  Nov 30 10:31:23 arbella NetworkManager[16259]:   urfkill disappeared 
from the bus
  Nov 30 10:31:23 arbella NetworkManager[16259]:   use BlueZ version 5
  Nov 30 10:31:23 arbella NetworkManager[16259]:   wpa_supplicant running
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (wlp2s0): supplicant 
interface state: starting -> ready
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (lxcbr0): device state 
change: disconnected -> prepare (reason 'none') [30 40 0]
  Nov 30 10:31:23 arbella NetworkManager[16259]:   (enx803f5d087a34): 
device state change: disconnected -> prepare (reason 'none') [30 40 0]
  Nov 30 10:31:23 arbella NetworkManager[16259]:   Policy set 
'enx803f5d087a34' (enx803f5d087a34) as default for IPv4 routing and DNS.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: Network-Manager 1.0.4-0ubuntu5
  ProcVersionSignature: Ubuntu 4.2.0-18.22-generic 4.2.3
  Uname: Linux 4.2.0-18-generic x86_64
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Nov 30 10:39:36 2015
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2015-11-21 (9 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IpRoute:
   default via 10.20.64.1 dev wlp2s0  proto static  metric 600 
   10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
   10.20.64.0/21 dev wlp2s0  proto kernel  scope link  src 10.20.66.104  metric 
600 
   169.254.0.0/16 dev lxcbr0  scope link  metric 1000
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-dev:
   DEVICE  TYPE  STATE  DBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   lxcbr0  bridgeconnected  /org/freedesktop/NetworkManager/Devices/3  
lxcbr0  ac91e68a-905e-4cd2-a937-11b8c5f4bed0  
/org/freedesktop/NetworkManager/ActiveConnection/1 
   wlp2s0  wifi  connected  /org/freedesktop/NetworkManager/Devices/2  
Canonical-2.4GHz-g  4eb6b0d8-a49e-4e11-aff1-18ce3f158523  
/org/freedesktop/NetworkManager/ActiveConnection/2 
   lo  loopback  unmanaged  /org/freedesktop/NetworkManager/Devices/1  --   
   ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : 

[Touch-packages] [Bug 1503572] Re: Crypt Login freeze and random system freeze

2015-10-07 Thread Maximilian
Same problem here concerning input of encryption password on boot and
the log entries, no freezes though: Lenovo T450s 3.19.0-30-generic
kernel Ubuntu 15.04

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to initramfs-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1503572

Title:
  Crypt Login freeze and random system freeze

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  After last two kernel updates in Ubuntu 15.04 (so 30 and 28) I am 
experiencing the random screen freeze as well as there is no way to write my 
Crypt password the first time I boot (through graphical interface). My 
workaround is that when Crypt login screen appears I hold power button to 
reboot the machine (Lenovo T450s) which then gives me terminal login through 
Crypt. Additional regression appears as whole system freeze at random moments 
(can be in browser or in OpenOffice). What is even more worrying is that I have 
dmesg full of errors ([drm:gen8_irq_handler [i915_bpo]] *ERROR* The master 
control interrupt lied (SDE)!
  ) - something that was not there before.

  Also it does not matter if I have external monitor connected over HDMI
  or not, it does not matter if I have USB devices connected or not, the
  Crypt login freeze is repeatable 100%, but I do not know how to get
  logs from that boot or what to look.

  [9.155615] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
  [9.155987] input: Video Bus as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15
  [9.158359] device-mapper: multipath: version 1.7.0 loaded
  [9.158591] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  [9.158772] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  ...
  [9.280656] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit 
banging on pin 5
  [9.297274] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  [9.297445] snd_hda_intel :00:03.0: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915_bpo])
  [9.297453] [drm] Initialized i915_bpo 1.6.0 20150522 for :00:02.0 on 
minor 0
  [9.298242] fbcon: inteldrmfb (fb0) is primary device
  [   10.275607] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  ..
  [   10.337233] Console: switching to colour frame buffer device 240x67
  [   10.343218] i915_bpo :00:02.0: fb0: inteldrmfb frame buffer device
  [   10.343218] i915_bpo :00:02.0: registered panic notifier
  [   10.356167] Adding 8077308k swap on /dev/mapper/ubuntu--vg-swap_1.  
Priority:-1 extents:1 across:8077308k SSFS
  ...
  [   32.521174] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  [   32.521473] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!
  [   32.536040] [drm:gen8_irq_handler [i915_bpo]] *ERROR* The master control 
interrupt lied (SDE)!

  lshw for display:
  *-display
   description: VGA compatible controller
   product: Broadwell-U Integrated Graphics
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@:00:02.0
   version: 09
   width: 64 bits
   clock: 33MHz
   capabilities: msi pm vga_controller bus_master cap_list rom
   configuration: driver=i915_bpo latency=0
   resources: irq:49 memory:e000-e0ff 
memory:d000-dfff ioport:3000(size=64)

  3.19.0-30-generic #34-Ubuntu

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 987060] Re: massive memory leak in unity-panel-service and hud-service when invoking the hud on Firefox profiles with large amounts of bookmarks LTS 12.04 14.04

2015-06-14 Thread Maximilian Wende
Hi guys.

This bug affects my laptop as well, hud-service took a whole 2.2 GiB and
1 full core of cpu power, although i already removed many bookmarks in
Firefox (or are 30-40 still too much ...).

I'll look if i find something using valgrind, it's time to get this bug
fixed, it is already 3 years old.

I don't know why Ubuntu needs a web and bookmark search in its menu
whatsoever ... The only thing I (and possibly 99.998427631 % of other
people) use the search for is to start a program that I don't have in my
left bar.

Don't do it if you cannot do it right!

Greetings!

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to hud in Ubuntu.
https://bugs.launchpad.net/bugs/987060

Title:
  massive memory leak in unity-panel-service and hud-service when
  invoking the hud on Firefox profiles with large amounts of bookmarks
  LTS 12.04 14.04

Status in Unity HUD:
  Confirmed
Status in The Application Menu:
  Confirmed
Status in Unity:
  Won't Fix
Status in firefox package in Ubuntu:
  Incomplete
Status in hud package in Ubuntu:
  Confirmed
Status in unity package in Ubuntu:
  Invalid

Bug description:
  unity-panel-service and hud-service quickly racks up memory and CPU
  usage until I kill it when invoking the HUD on Firefox. It's taking
  anywhere from a few minutes to half an hour, but it sometimes makes
  the system completely unusable.

  1. run Firefox 12.0 in the foreground
  2. hit Alt to bring up HUD
  3. type any text
  4. select one proposal from HUD
  5. wait for unity-panel-service and hud-service to fill up the remaining RAM 
and swap space.

  This is due to a high number of bookmarks in a user profile
  (hundreds).

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1291359] Re: multiscreen spanning wallpaper does not span on lock screen

2015-05-06 Thread Maximilian Rumpf
Still happening on Ubuntu 15.04. Please fix, it doesn't look very nice..

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/1291359

Title:
  multiscreen spanning wallpaper does not span on lock screen

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  (It has same look as unity-greeter in lightdm but am given to believe
  lock screen is handled by gnome-screensaver; move if i'm wrong!
  lightdm seems to get it wrong a different way.)

  If, having made a wide wallpaper to span multiple monitors, and having
  set it as your wallpaper with type Span in Appearance settings, you
  then go to the new Lock screen...

  ... you will see that instead of that wide wallpaper spanning all
  monitors, you get the image scaled down to be shown whole on *each*
  monitor. As shown in screenshot attached.

  It needs to honour the appearance settings in this regard.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gnome-screensaver 3.6.1-0ubuntu10
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Mar 12 13:02:42 2014
  GnomeSessionIdleInhibited: No
  GnomeSessionInhibitors: None
  GsettingsGnomeSession:
   org.gnome.desktop.session session-name 'ubuntu'
   org.gnome.desktop.session idle-delay uint32 300
  InstallationDate: Installed on 2014-03-08 (3 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: gnome-screensaver
  UpgradeStatus: Upgraded to trusty on 2014-03-10 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp