[Touch-packages] [Bug 1740573] [NEW] rm command prints non-locale escaped error messages

2017-12-29 Thread Mike Berkley
Public bug reported:

If the file "tx" does not exist and the locale is en_US.UTF-8, "rm" will
print:

$ LANG=en_US.UTF-8 rm tx
rm: cannot remove â: No such file or directory
$ LANG=en_US rm tx
rm: cannot remove 'tx': No such file or directory
$ LANG=C rm tx
rm: cannot remove 'tx': No such file or directory

This is in coreutils 8.21-1ubuntu5.4 on Ubuntu 14.04.

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

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

Title:
  rm command prints non-locale escaped error messages

Status in coreutils package in Ubuntu:
  New

Bug description:
  If the file "tx" does not exist and the locale is en_US.UTF-8, "rm"
  will print:

  $ LANG=en_US.UTF-8 rm tx
  rm: cannot remove â: No such file or directory
  $ LANG=en_US rm tx
  rm: cannot remove 'tx': No such file or directory
  $ LANG=C rm tx
  rm: cannot remove 'tx': No such file or directory

  This is in coreutils 8.21-1ubuntu5.4 on Ubuntu 14.04.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/1740573/+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 1740547] Re: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: package libreadline5:amd64 is already installed and configured

2017-12-29 Thread dino99
*** This bug is a duplicate of bug 545790 ***
https://bugs.launchpad.net/bugs/545790

** Package changed: readline5 (Ubuntu) => dpkg (Ubuntu)

** This bug has been marked a duplicate of bug 545790
   package PACKAGE failed to install/upgrade: error writing to '': Success

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

Title:
  package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade:
  package libreadline5:amd64 is already installed and configured

Status in dpkg package in Ubuntu:
  New

Bug description:
  no idea

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libreadline5:amd64 5.2+dfsg-3build1
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.10
  AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
  Architecture: amd64
  CrashReports:
   640:0:115:1738541:2017-12-29 20:44:31.445253849 +:2017-12-29 
20:44:32.445253849 +:/var/crash/libdevmapper-event1.02.1:amd64.0.crash
   600:0:115:248785:2017-12-29 20:01:02.894737243 +:2017-12-29 
20:01:03.894737243 +:/var/crash/liblvm2app2.2:amd64.0.crash
   600:108:115:0:2017-12-29 20:44:52.143050013 +:2017-12-29 
20:44:52.143050013 +:/var/crash/libdevmapper-event1.02.1:amd64.0.uploaded
   644:0:115:0:2017-12-29 20:44:42.690254452 +:2017-12-29 
20:44:42.690254452 +:/var/crash/libdevmapper-event1.02.1:amd64.0.upload
   600:0:115:248786:2017-12-29 20:01:02.910737276 +:2017-12-29 
20:01:03.910737276 +:/var/crash/libreadline5:amd64.0.crash
  Date: Fri Dec 29 20:01:03 2017
  DuplicateSignature:
   package:libreadline5:amd64:5.2+dfsg-3build1
   Processing triggers for man-db (2.7.5-1) ...
   dpkg: error processing package libdevmapper-event1.02.1:amd64 (--configure):
package libdevmapper-event1.02.1:amd64 is already installed and configured
  ErrorMessage: package libreadline5:amd64 is already installed and configured
  InstallationDate: Installed on 2017-12-29 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.24
  SourcePackage: readline5
  Title: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: 
package libreadline5:amd64 is already installed and configured
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1740547/+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 1728238] Re: update-initramfs not adding i915 GuC firmware, firmware fails to load

2017-12-29 Thread Paul Malmsten
Also hit this issue on a Dell XPS 13 9360 (i7-8550U) running 17.10 and
initramfs-tools 0.125ubuntu12. Until a fix is available, I was able to
workaround the issue by adding my own initramfs-tools hook.

I created a hook script to copy the firmware:

$ cat /etc/initramfs-tools/hooks/i915_add_kbl_guc_ver9_14
#!/bin/sh

PREREQ=""
prereqs()
{
   echo "$PREREQ"
}

case $1 in
prereqs)
   prereqs
   exit 0
   ;;
esac

. /usr/share/initramfs-tools/hook-functions
# Begin real processing below this line

copy_file firmware /lib/firmware/i915/kbl_guc_ver9_14.bin 
/lib/firmware/i915/kbl_guc_ver9_14.bin
exit 0

Marked the script as executable, and updated all initramfs images:

$ sudo chmod u+x /etc/initramfs-tools/hooks/i915_add_kbl_guc_ver9_14
$ sudo update-initramfs -k all -u
$ sudo update-grub

After reboot, success:

$ sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status
GuC firmware status:
path: i915/kbl_guc_ver9_14.bin
fetch: SUCCESS
load: SUCCESS
version wanted: 9.14
version found: 9.14
header: offset is 0; size = 128
uCode: offset is 128; size = 142272
RSA: offset is 142400; size = 256

GuC status 0x800330ed:
Bootrom status = 0x76
uKernel status = 0x30
MIA Core status = 0x3

Scratch registers:
 0: 0xf000
 1: 0x0
 2: 0x0
 3: 0x5f5e100
 4: 0x600
 5: 0xd5fd3
 6: 0x0
 7: 0x8
 8: 0x3
 9: 0x74240
10: 0x0
11: 0x0
12: 0x0
13: 0x0
14: 0x0
15: 0x0

-- 
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/1728238

Title:
  update-initramfs not adding i915 GuC firmware, firmware fails to load

Status in initramfs-tools package in Ubuntu:
  Confirmed
Status in initramfs-tools package in Debian:
  New

Bug description:
  The i915 Kabylake GuC firmware is failing to load on boot, and
  generating dmesg errors.  The Kabylake HuC firmware succeeds.  All
  files exist.  I've also verified the Kabylake GuC firmware matches the
  correct file size and md5 listed on 01.org.

  I then ran update-initramfs verbosely, and see that only
  /lib/firmware/i915/skl_guc_ver6_1.bin is being added.
  /lib/firmware/i915/bxt_guc_ver8_7.bin and
  /lib/firmware/i915/kbl_guc_ver9_14.bin seem to be ignored.

  I'm running a Dell XPS 13 9360 w/ Kabylake on Ubuntu 17.10 and
  initramfs-tools 0.125ubuntu12.  Perhaps Broxton systems might have the
  same issue?

  Output and logs:
  -

  ls -al /lib/firmware/i915/kbl_*

  -rw-r--r-- 1 root root   8616 Aug 17 11:08 
/lib/firmware/i915/kbl_dmc_ver1_01.bin
  lrwxrwxrwx 1 root root 19 Aug 17 11:08 
/lib/firmware/i915/kbl_dmc_ver1.bin -> kbl_dmc_ver1_01.bin
  -rw-r--r-- 1 root root 142656 Oct 20 21:12 
/lib/firmware/i915/kbl_guc_ver9_14.bin
  -rw-r--r-- 1 root root 218688 Aug 17 11:09 
/lib/firmware/i915/kbl_huc_ver02_00_1810.bin

  sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status

  GuC firmware status:
  path: i915/kbl_guc_ver9_14.bin
  fetch: FAIL
  load: NONE
  version wanted: 9.14
  version found: 0.0
  header: offset is 0; size = 0
  uCode: offset is 0; size = 0
  RSA: offset is 0; size = 0

  GuC status 0x0001:
  Bootrom status = 0x0
  uKernel status = 0x0
  MIA Core status = 0x0

  Scratch registers:
  0: 0x0
  1: 0x0
  2: 0x0
  3: 0x0
  4: 0x0
  5: 0x0
  6: 0x0
  7: 0x0
  8: 0x0
  9: 0x0
  10: 0x0
  11: 0x0
  12: 0x0
  13: 0x0
  14: 0x0
  15: 0x0

  sudo cat /sys/kernel/debug/dri/0/i915_huc_load_status

  HuC firmware status:
  path: i915/kbl_huc_ver02_00_1810.bin
  fetch: SUCCESS
  load: SUCCESS
  version wanted: 2.0
  version found: 2.0
  header: offset is 0; size = 128
  uCode: offset is 128; size = 218304
  RSA: offset is 218432; size = 256

  HuC status 0x6000:

  dmesg

  [1.052879] hidraw: raw HID events driver (C) Jiri Kosina
  [1.056426] wmi_bus wmi_bus-PNP0C14:01: WQBC data block query control 
method not found
  [1.080320] rtsx_pci :3b:00.0: enabling device ( -> 0002)
  [1.082308] nvme nvme0: pci function :3c:00.0
  [1.095073] Setting dangerous option enable_guc_loading - tainting kernel
  [1.095075] Setting dangerous option enable_guc_submission - tainting 
kernel
  [1.097867] [drm] Memory usable by graphics device = 4078M
  [1.097869] checking generic (9000 1fb) vs hw (9000 1000)
  [1.097869] fb: switching to inteldrmfb from EFI VGA
  [1.097899] Console: switching to colour dummy device 80x25
  [1.098049] [drm] Replacing VGA console driver
  [1.104157] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
  [1.104157] [drm] Driver supports precise vblank timestamp query.
  [1.112506] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin 
(v1.1)
  [

[Touch-packages] [Bug 1719185] Re: system crash nvidia

2017-12-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: lightdm (Ubuntu)
   Status: New => Confirmed

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

Title:
  system crash nvidia

Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  system crash nvidia

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.18.3-0ubuntu1.1
  ProcVersionSignature: Ubuntu 4.10.0-35.39~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-35-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.10
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Sep 24 18:44:54 2017
  LightdmConfig:
   [SeatDefaults]
   user-session=ubuntu
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1719185/+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 1731870] Re: Failed to start Cryptography Setup for cryptswap1

2017-12-29 Thread Steve Langasek
This appears to be a bug in the systemd cryptsetup helper, which has a
constraint requiring a block device where no such constraint exists in
cryptsetup itself.  Since Ubuntu 17.10 now uses swap files by default
instead of swap partitions, this will fail.

** Package changed: cryptsetup (Ubuntu) => systemd (Ubuntu)

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

Title:
  Failed to start Cryptography Setup for cryptswap1

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Fresh install of 17.10.  On first boot, after install, there were no
  issues; the desktop booted fine.  I then ran an `apt upgrade`, set my
  home encryption passphrase and rebooted.  Now, after typing my
  password, rather than Gnome starting, I get systemd errors:

  Failed to start Cryptography Setup for cryptswap1
  Dependency failed for dev-mapper-cryptswap1.device
  Dependency failed for /dev/mapper/cryptswap1

  If I wait long enough, I get the gdm3 login window again.  If I try to
  log in after this, I get the Gnome desktop without any issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1731870/+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 1731870] [NEW] Failed to start Cryptography Setup for cryptswap1

2017-12-29 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Fresh install of 17.10.  On first boot, after install, there were no
issues; the desktop booted fine.  I then ran an `apt upgrade`, set my
home encryption passphrase and rebooted.  Now, after typing my password,
rather than Gnome starting, I get systemd errors:

Failed to start Cryptography Setup for cryptswap1
Dependency failed for dev-mapper-cryptswap1.device
Dependency failed for /dev/mapper/cryptswap1

If I wait long enough, I get the gdm3 login window again.  If I try to
log in after this, I get the Gnome desktop without any issue.

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: artful
-- 
Failed to start Cryptography Setup for cryptswap1
https://bugs.launchpad.net/bugs/1731870
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to systemd in Ubuntu.

-- 
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 1739903] Re: package apport 2.20.1-0ubuntu2.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 239

2017-12-29 Thread Evgeniy Permyakov
same here on a completely fresh install on a new machine

-- 
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/1739903

Title:
  package apport 2.20.1-0ubuntu2.14 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 239

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  Performing updates to the system after a fresh install of 16.04 LTS
  alongside Win 10 Pro.

  1) Ubuntu 16.04.03 LTS
  2) Pkg Apport 2.20.1-0ubuntu.2.14
  3) Installation expected during update
  4) Installation failed with status 239

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: apport 2.20.1-0ubuntu2.14
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.14
  Architecture: amd64
  CrashReports: 600:0:117:368796:2017-12-23 10:35:04.881695508 -0800:2017-12-23 
10:35:05.881695508 -0800:/var/crash/apport.0.crash
  Date: Sat Dec 23 10:35:05 2017
  DuplicateSignature:
   package:apport:2.20.1-0ubuntu2.14
   Installing new version of config file /etc/init/apport.conf ...
   Segmentation fault
   dpkg: error processing package apport (--configure):
subprocess installed post-installation script returned error exit status 239
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 239
  InstallationDate: Installed on 2017-12-23 (0 days ago)
  InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.24
  SourcePackage: apport
  Title: package apport 2.20.1-0ubuntu2.14 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 239
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1739903/+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 1732222] Re: Language support not installed matching locale

2017-12-29 Thread Anthony Harrington
Actually, this bug might be for gnome-language-selector. 
If you have a look at your regional and language settings, it seems that so 
long as your chosen language is any variant of english, it suggests to install 
all the available language stuff (including libreoffice files) for ALL english 
possibilities.

For example, I've already got most of the en-gb ones installed already on an 
as-needed basis, and it's telling me to install the following or to remind it 
later:
 
gimp-help-en
libreoffice-help-en-us
hunspell-en-ca
hyphen-en-ca
hyphen-en-gb
mythes-en-au
hunspell-en-us
wamerican
libreoffice-help-en-gb
mythes-en-us
libreoffice-l10n-en-za
hunspell-en-au
hyphen-en-us
hunspell-en-za

I'm not sure there's really an issue here...other than the language-
selector is perhaps not pushy enough that you should install some more
of the packages for en-gb. Noone wants it getting annoying, and you
_are_ free to install en-gb packages later? I guess that since english
US (default) is still understandable to an English UK reader, this was
never considered critical.

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

Title:
  Language support not installed matching locale

Status in language-pack-en package in Ubuntu:
  New

Bug description:
  When Ubuntu is installed with UK locale settings during setup, all of
  the language support is not installed and some applications e.g.
  LibreOffice display with non-UK English. The extra language support is
  prompted to be installed *the first time* the user accesses the
  language options (see screenshot attached).

  When this language support is installed, these applications then
  (correctly) display menus etc in UK English.

  Ubuntu setup appears to not install the matching locale languages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-pack-en/+bug/173/+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 1716203] Re: Backport packages for 16.04.4 HWE stack

2017-12-29 Thread Pranav Sharma
Sorry about this silly question, but will this update be shipped in
February? If it isn't tied to the HWE release schedule and can be
released earlier, is there any way I can help test?

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

Title:
  Backport packages for 16.04.4 HWE stack

Status in libclc package in Ubuntu:
  Invalid
Status in libdrm package in Ubuntu:
  Invalid
Status in llvm-toolchain-5.0 package in Ubuntu:
  Invalid
Status in mesa package in Ubuntu:
  Invalid
Status in wayland-protocols package in Ubuntu:
  Invalid
Status in xorg-hwe-16.04 package in Ubuntu:
  Invalid
Status in xorg-server-hwe-16.04 package in Ubuntu:
  Invalid
Status in xserver-xorg-video-amdgpu package in Ubuntu:
  Invalid
Status in xserver-xorg-video-ati package in Ubuntu:
  Invalid
Status in libclc source package in Xenial:
  Fix Committed
Status in libdrm source package in Xenial:
  Fix Committed
Status in llvm-toolchain-5.0 source package in Xenial:
  Fix Committed
Status in mesa source package in Xenial:
  Fix Committed
Status in wayland-protocols source package in Xenial:
  Fix Committed
Status in xorg-hwe-16.04 source package in Xenial:
  New
Status in xorg-server-hwe-16.04 source package in Xenial:
  Fix Committed
Status in xserver-xorg-video-amdgpu source package in Xenial:
  New
Status in xserver-xorg-video-ati source package in Xenial:
  New

Bug description:
  [Impact]

  *** hwe-16.04 refresh for 16.04.4 ***

  A minor update, only some driver updates plus a newer Mesa.

  Mesa needs llvm-toolchain-5.0 and libclc, libdrm, wayland-protocols
  updates.

  [Test case]

  upgrade from/to stock & old hwe stack, test desktop usage

  [Regression potential]

  libdrm:
  Slim to none, changes from 2.4.76 to 2.4.83
  - amdgpu: pci-id handling moved here, new pci-ids, bugfixes, tests
  - intel: new pci-ids
  - drm: leak fixes, manpage updates
  - exynos, etnaviv, freedreno, android: fixes, new stuff

  wayland-protocols:
  None, just adds a few protocol definitions (xml files)

  llvm-toolchain-5.0:
  None, a new package

  libclc:
  I'd say none, very little has changed, added support for llvm-5 is the main 
reason for this slightly newer snapshot

  xorg-server:
  Slim, it's an upstream bugfix release, changes from 1.19.3 to 1.19.5 include:
  - security fixes
  - backported bugfixes to glamor, modesetting driver, xwayland etc

  mesa:
  New major release plus a few bugfix updates after that. Regressions at this 
point are less likely. Upstream is tested by Intel CI system for instance. And 
we're already testing it via a ppa on OEM systems for 16.04.4. Tracking bug for 
the bugfix release (xenial & artful) is bug 1727390

  [Other information]

  build order: [libdrm, wayland-protocols, llvm-toolchain-5.0], [libclc,
  xorg-server], mesa

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libclc/+bug/1716203/+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 1740555] [NEW] package apport 2.20.1-0ubuntu2 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-12-29 Thread Abdou Karim Cissokho
Public bug reported:

any

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: apport 2.20.1-0ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-104.127-generic 4.4.98
Uname: Linux 4.4.0-104-generic x86_64
ApportLog:
 
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
Date: Fri Dec 29 18:53:07 2017
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2017-12-23 (6 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: apport
Title: package apport 2.20.1-0ubuntu2 failed to install/upgrade: package is in 
a very bad inconsistent state; you should  reinstall it before attempting 
configuration
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

-- 
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/1740555

Title:
  package apport 2.20.1-0ubuntu2 failed to install/upgrade: package is
  in a very bad inconsistent state; you should  reinstall it before
  attempting configuration

Status in apport package in Ubuntu:
  New

Bug description:
  any

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: apport 2.20.1-0ubuntu2
  ProcVersionSignature: Ubuntu 4.4.0-104.127-generic 4.4.98
  Uname: Linux 4.4.0-104-generic x86_64
  ApportLog:
   
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  Date: Fri Dec 29 18:53:07 2017
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2017-12-23 (6 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.24
  SourcePackage: apport
  Title: package apport 2.20.1-0ubuntu2 failed to install/upgrade: package is 
in a very bad inconsistent state; you should  reinstall it before attempting 
configuration
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1740555/+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 1465766] Re: low sound volume

2017-12-29 Thread Igor Kuznetsov
Same problem, ubuntu 16.04 on ThinkPad T460.

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

Title:
  low sound volume

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  this is a thinkpad x1 carbon 3rd gen running xubuntu 15.04

  sound volume is very low compared to windows (dual boot), even with
  alsa and pulseaudio controls set to 100% (or greater).

  this applies to all apps.

  i can get really loud sound with:
  pactl set-sink-volume 1 30
  but then it is very distorted.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-20.20-generic 3.19.8
  Uname: Linux 3.19.0-20-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  smwilson   1577 F pulseaudio
   /dev/snd/controlC0:  smwilson   1577 F pulseaudio
  CurrentDesktop: XFCE
  Date: Tue Jun 16 06:44:39 2015
  InstallationDate: Installed on 2015-06-04 (11 days ago)
  InstallationMedia: Xubuntu Core 15.04 - amd64 - 20150425
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_Jack: Speaker, Internal
  Symptom_Type: Volume slider, or mixer problems
  Title: [20BSCTO1WW, Realtek ALC3232, Speaker, Internal] volume slider problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/01/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N14ET25W (1.03 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BSCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN14ET25W(1.03):bd12/01/2014:svnLENOVO:pn20BSCTO1WW:pvrThinkPadX1Carbon3rd:rvnLENOVO:rn20BSCTO1WW:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20BSCTO1WW
  dmi.product.version: ThinkPad X1 Carbon 3rd
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1465766/+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 1624320] Re: systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing entries

2017-12-29 Thread WhyteHorse
This bug just compromised every ubuntu machine on my network. It falsely
says that DNSSEC is not supported by the nameserver and resorts to non-
DNSSEC resolution. So every machine on my network just accepted bogus
DNS replies from a MITM. Thanks.

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

Title:
  systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing
  entries

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  systemd-resolved, or more precisely the hook script
  /lib/systemd/system/systemd-resolved.service.d/resolvconf.conf, causes
  resolvconf to add 127.0.0.53 to the set of nameservers in
  /etc/resolv.conf alongside the other nameservers.  That makes no sense
  because systemd-resolved sets up 127.0.0.53 as a proxy for those other
  nameservers.  The effect is similar to bug 1624071 but for
  applications doing their own DNS lookups.  It breaks any DNSSEC
  validation that systemd-resolved tries to do; applications will
  failover to the other nameservers, bypassing validation failures.  And
  it makes failing queries take twice as long.

  /etc/resolv.conf should have only 127.0.0.53 when systemd-resolved is
  active.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1624320/+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 1740548] [NEW] [USB-Audio - Logitech G430 Gaming Headset, playback] volume slider problem

2017-12-29 Thread David Kingsbury
Public bug reported:

On boot, headset not listed in mixer list of audio outputs or inputs.
Upon unplugging, and plugging back in, the headset showed up and sound
began to play.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Dec 29 22:30:01 2017
InstallationDate: Installed on 2017-12-26 (3 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_Card: G430 Surround Sound Gaming Headset - Logitech G430 Gaming Headset
Symptom_Type: Volume slider, or mixer problems
Title: [USB-Audio - Logitech G430 Gaming Headset, playback] volume slider 
problem
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/09/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P2.60
dmi.board.name: Z87 Pro3
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.60:bd04/09/2014:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnZ87Pro3:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To Be Filled By O.E.M.
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful

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

Title:
  [USB-Audio - Logitech G430 Gaming Headset, playback] volume slider
  problem

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  On boot, headset not listed in mixer list of audio outputs or inputs.
  Upon unplugging, and plugging back in, the headset showed up and sound
  began to play.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
  Uname: Linux 4.13.0-21-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Dec 29 22:30:01 2017
  InstallationDate: Installed on 2017-12-26 (3 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_Card: G430 Surround Sound Gaming Headset - Logitech G430 Gaming 
Headset
  Symptom_Type: Volume slider, or mixer problems
  Title: [USB-Audio - Logitech G430 Gaming Headset, playback] volume slider 
problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.60
  dmi.board.name: Z87 Pro3
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.60:bd04/09/2014:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnZ87Pro3:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To Be Filled By O.E.M.
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1740548/+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 1740547] Re: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: package libreadline5:amd64 is already installed and configured

2017-12-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade:
  package libreadline5:amd64 is already installed and configured

Status in readline5 package in Ubuntu:
  New

Bug description:
  no idea

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libreadline5:amd64 5.2+dfsg-3build1
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.10
  AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
  Architecture: amd64
  CrashReports:
   640:0:115:1738541:2017-12-29 20:44:31.445253849 +:2017-12-29 
20:44:32.445253849 +:/var/crash/libdevmapper-event1.02.1:amd64.0.crash
   600:0:115:248785:2017-12-29 20:01:02.894737243 +:2017-12-29 
20:01:03.894737243 +:/var/crash/liblvm2app2.2:amd64.0.crash
   600:108:115:0:2017-12-29 20:44:52.143050013 +:2017-12-29 
20:44:52.143050013 +:/var/crash/libdevmapper-event1.02.1:amd64.0.uploaded
   644:0:115:0:2017-12-29 20:44:42.690254452 +:2017-12-29 
20:44:42.690254452 +:/var/crash/libdevmapper-event1.02.1:amd64.0.upload
   600:0:115:248786:2017-12-29 20:01:02.910737276 +:2017-12-29 
20:01:03.910737276 +:/var/crash/libreadline5:amd64.0.crash
  Date: Fri Dec 29 20:01:03 2017
  DuplicateSignature:
   package:libreadline5:amd64:5.2+dfsg-3build1
   Processing triggers for man-db (2.7.5-1) ...
   dpkg: error processing package libdevmapper-event1.02.1:amd64 (--configure):
package libdevmapper-event1.02.1:amd64 is already installed and configured
  ErrorMessage: package libreadline5:amd64 is already installed and configured
  InstallationDate: Installed on 2017-12-29 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.24
  SourcePackage: readline5
  Title: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: 
package libreadline5:amd64 is already installed and configured
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/readline5/+bug/1740547/+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 1740547] [NEW] package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: package libreadline5:amd64 is already installed and configured

2017-12-29 Thread Abduvali Davronov
Public bug reported:

no idea

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libreadline5:amd64 5.2+dfsg-3build1
ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
CrashReports:
 640:0:115:1738541:2017-12-29 20:44:31.445253849 +:2017-12-29 
20:44:32.445253849 +:/var/crash/libdevmapper-event1.02.1:amd64.0.crash
 600:0:115:248785:2017-12-29 20:01:02.894737243 +:2017-12-29 
20:01:03.894737243 +:/var/crash/liblvm2app2.2:amd64.0.crash
 600:108:115:0:2017-12-29 20:44:52.143050013 +:2017-12-29 
20:44:52.143050013 +:/var/crash/libdevmapper-event1.02.1:amd64.0.uploaded
 644:0:115:0:2017-12-29 20:44:42.690254452 +:2017-12-29 20:44:42.690254452 
+:/var/crash/libdevmapper-event1.02.1:amd64.0.upload
 600:0:115:248786:2017-12-29 20:01:02.910737276 +:2017-12-29 
20:01:03.910737276 +:/var/crash/libreadline5:amd64.0.crash
Date: Fri Dec 29 20:01:03 2017
DuplicateSignature:
 package:libreadline5:amd64:5.2+dfsg-3build1
 Processing triggers for man-db (2.7.5-1) ...
 dpkg: error processing package libdevmapper-event1.02.1:amd64 (--configure):
  package libdevmapper-event1.02.1:amd64 is already installed and configured
ErrorMessage: package libreadline5:amd64 is already installed and configured
InstallationDate: Installed on 2017-12-29 (0 days ago)
InstallationMedia: Ubuntu-GNOME 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.24
SourcePackage: readline5
Title: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: 
package libreadline5:amd64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed amd64 apport-package xenial

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

Title:
  package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade:
  package libreadline5:amd64 is already installed and configured

Status in readline5 package in Ubuntu:
  New

Bug description:
  no idea

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libreadline5:amd64 5.2+dfsg-3build1
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.10
  AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
  Architecture: amd64
  CrashReports:
   640:0:115:1738541:2017-12-29 20:44:31.445253849 +:2017-12-29 
20:44:32.445253849 +:/var/crash/libdevmapper-event1.02.1:amd64.0.crash
   600:0:115:248785:2017-12-29 20:01:02.894737243 +:2017-12-29 
20:01:03.894737243 +:/var/crash/liblvm2app2.2:amd64.0.crash
   600:108:115:0:2017-12-29 20:44:52.143050013 +:2017-12-29 
20:44:52.143050013 +:/var/crash/libdevmapper-event1.02.1:amd64.0.uploaded
   644:0:115:0:2017-12-29 20:44:42.690254452 +:2017-12-29 
20:44:42.690254452 +:/var/crash/libdevmapper-event1.02.1:amd64.0.upload
   600:0:115:248786:2017-12-29 20:01:02.910737276 +:2017-12-29 
20:01:03.910737276 +:/var/crash/libreadline5:amd64.0.crash
  Date: Fri Dec 29 20:01:03 2017
  DuplicateSignature:
   package:libreadline5:amd64:5.2+dfsg-3build1
   Processing triggers for man-db (2.7.5-1) ...
   dpkg: error processing package libdevmapper-event1.02.1:amd64 (--configure):
package libdevmapper-event1.02.1:amd64 is already installed and configured
  ErrorMessage: package libreadline5:amd64 is already installed and configured
  InstallationDate: Installed on 2017-12-29 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.24
  SourcePackage: readline5
  Title: package libreadline5:amd64 5.2+dfsg-3build1 failed to install/upgrade: 
package libreadline5:amd64 is already installed and configured
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/readline5/+bug/1740547/+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 1740542] Re: package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 usr/share/doc/libxcursor1/changelog.Debian.gz] failed to instal

2017-12-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified:
  usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
  usr/share/doc/libxcursor1/changelog.Debian.gz] failed to
  install/upgrade: trying to overwrite shared
  '/usr/share/doc/libxcursor1/changelog.Debian.gz', which is different
  from other instances of package libxcursor1:i386

Status in libxcursor package in Ubuntu:
  New

Bug description:
  tried three different installs for wine 2.0.3 followed youtube video
  instructions ofHow To Install Wine On Ubuntu 16.04.  Followed three
  different methods, No joy.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz]
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.14
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Fri Dec 29 15:22:34 2017
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  DuplicateSignature:
   package:libxcursor1:1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz]
   Unpacking libdb5.3:i386 (5.3.28-11ubuntu0.1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/libdb5.3_5.3.28-11ubuntu0.1_i386.deb (--unpack):
trying to overwrite shared '/usr/share/doc/libdb5.3/changelog.Debian.gz', 
which is different from other instances of package libdb5.3:i386
  ErrorMessage: trying to overwrite shared 
'/usr/share/doc/libxcursor1/changelog.Debian.gz', which is different from other 
instances of package libxcursor1:i386
  GraphicsCard:
   Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 0e) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display [103c:21de]
  MachineType: HP HP 15 Notebook PC
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.10.0-42-generic.efi.signed 
root=UUID=3b8879a3-4801-456c-8faf-f053840ef3b0 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.24
  SourcePackage: libxcursor
  Title: package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz] failed to install/upgrade: 
trying to overwrite shared '/usr/share/doc/libxcursor1/changelog.Debian.gz', 
which is different from other instances of package libxcursor1:i386
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.27
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 233F
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 06.27
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.27:bd04/07/2016:svnHP:pnHP15NotebookPC:pvrType1-ProductConfigId:rvnHewlett-Packard:rn233F:rvr06.27:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP 15 Notebook PC
  dmi.product.version: Type1 - ProductConfigId
  dmi.sys.vendor: HP
  version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.76-1~ubuntu16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.0.7-0ubuntu0.16.04.2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.0.7-0ubuntu0.16.04.2
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Fri Dec 29 14:13:19 2017
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.19.3-1ubuntu1~16.04.4
  xserver.video_driver: modeset

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxcursor/+bug/1740542/+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 1740542] [NEW] package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 usr/share/doc/libxcursor1/changelog.Debian.gz] failed to inst

2017-12-29 Thread Lyle C Alexander
Public bug reported:

tried three different installs for wine 2.0.3 followed youtube video
instructions ofHow To Install Wine On Ubuntu 16.04.  Followed three
different methods, No joy.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz]
ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.14
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Fri Dec 29 15:22:34 2017
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DuplicateSignature:
 package:libxcursor1:1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz]
 Unpacking libdb5.3:i386 (5.3.28-11ubuntu0.1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libdb5.3_5.3.28-11ubuntu0.1_i386.deb (--unpack):
  trying to overwrite shared '/usr/share/doc/libdb5.3/changelog.Debian.gz', 
which is different from other instances of package libdb5.3:i386
ErrorMessage: trying to overwrite shared 
'/usr/share/doc/libxcursor1/changelog.Debian.gz', which is different from other 
instances of package libxcursor1:i386
GraphicsCard:
 Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 0e) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display [103c:21de]
MachineType: HP HP 15 Notebook PC
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.10.0-42-generic.efi.signed 
root=UUID=3b8879a3-4801-456c-8faf-f053840ef3b0 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: libxcursor
Title: package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 
usr/share/doc/libxcursor1/changelog.Debian.gz] failed to install/upgrade: 
trying to overwrite shared '/usr/share/doc/libxcursor1/changelog.Debian.gz', 
which is different from other instances of package libxcursor1:i386
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/07/2016
dmi.bios.vendor: Insyde
dmi.bios.version: F.27
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 233F
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 06.27
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.27:bd04/07/2016:svnHP:pnHP15NotebookPC:pvrType1-ProductConfigId:rvnHewlett-Packard:rn233F:rvr06.27:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.name: HP 15 Notebook PC
dmi.product.version: Type1 - ProductConfigId
dmi.sys.vendor: HP
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.76-1~ubuntu16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.0.7-0ubuntu0.16.04.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 17.0.7-0ubuntu0.16.04.2
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Fri Dec 29 14:13:19 2017
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.19.3-1ubuntu1~16.04.4
xserver.video_driver: modeset

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


** Tags: amd64 apport-package compiz-0.9 package-conflict ubuntu xenial

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

Title:
  package libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified:
  usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
  usr/share/doc/libxcursor1/changelog.Debian.gz] failed to
  install/upgrade: trying to overwrite shared
  '/usr/share/doc/libxcursor1/changelog.Debian.gz', which is different
  from other instances of package libxcursor1:i386

Status in libxcursor package in Ubuntu:
  New

Bug description:
  tried three different installs for wine 2.0.3 followed youtube video
  instructions ofHow To Install Wine On Ubuntu 16.04.  Followed three
  different methods, No joy.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libxcursor1 1:1.1.14-1ubuntu0.16.04.1 [modified: 
usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 

[Touch-packages] [Bug 1740541] [NEW] [Blade, Intel Kabylake HDMI, Digital Out, HDMI] No sound at all

2017-12-29 Thread DantePasquale
Public bug reported:

Video works fine, but no audio via HDMI - devices show up properly in
'aplay -l' but do not show up at all in pavucontrol or under the normal
audio devices. Testing with wav files to the devices yields no audio
either. Headphones and all other audio (including bluetooth) work fine.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.14
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   dante  1903 F...m pulseaudio
 /dev/snd/controlC0:  dante  1903 F pulseaudio
CurrentDesktop: Unity
Date: Fri Dec 29 15:22:02 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2017-05-01 (241 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
Symptom_Card: Built-in Audio - HDA Intel PCH
Symptom_DevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  dante  1903 F pulseaudio
Symptom_Jack: Digital Out, HDMI
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: No sound at all
Title: [Blade, Intel Kabylake HDMI, Digital Out, HDMI] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/10/2017
dmi.bios.vendor: Razer
dmi.bios.version: 1.00
dmi.board.name: Razer
dmi.board.vendor: Razer
dmi.chassis.type: 9
dmi.chassis.vendor: Razer
dmi.modalias: 
dmi:bvnRazer:bvr1.00:bd01/10/2017:svnRazer:pnBlade:pvr6.06:rvnRazer:rnRazer:rvr:cvnRazer:ct9:cvr:
dmi.product.name: Blade
dmi.product.version: 6.06
dmi.sys.vendor: Razer

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  [Blade, Intel Kabylake HDMI, Digital Out, HDMI] No sound at all

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  Video works fine, but no audio via HDMI - devices show up properly in
  'aplay -l' but do not show up at all in pavucontrol or under the
  normal audio devices. Testing with wav files to the devices yields no
  audio either. Headphones and all other audio (including bluetooth)
  work fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   dante  1903 F...m pulseaudio
   /dev/snd/controlC0:  dante  1903 F pulseaudio
  CurrentDesktop: Unity
  Date: Fri Dec 29 15:22:02 2017
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2017-05-01 (241 days ago)
  InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  dante  1903 F pulseaudio
  Symptom_Jack: Digital Out, HDMI
  Symptom_PulsePlaybackTest: PulseAudio playback test successful
  Symptom_Type: No sound at all
  Title: [Blade, Intel Kabylake HDMI, Digital Out, HDMI] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/10/2017
  dmi.bios.vendor: Razer
  dmi.bios.version: 1.00
  dmi.board.name: Razer
  dmi.board.vendor: Razer
  dmi.chassis.type: 9
  dmi.chassis.vendor: Razer
  dmi.modalias: 
dmi:bvnRazer:bvr1.00:bd01/10/2017:svnRazer:pnBlade:pvr6.06:rvnRazer:rnRazer:rvr:cvnRazer:ct9:cvr:
  dmi.product.name: Blade
  dmi.product.version: 6.06
  dmi.sys.vendor: Razer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1740541/+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 1692494] Re: klibc does not support reboot arguments

2017-12-29 Thread Bug Watch Updater
** Changed in: klibc (Debian)
   Status: New => Confirmed

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

Title:
  klibc does not support reboot arguments

Status in klibc package in Ubuntu:
  New
Status in klibc source package in Xenial:
  New
Status in klibc package in Debian:
  Confirmed

Bug description:
  ... so we cannot do things like "reboot recovery" in devices that
  follow the Android partitions conventions.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/1692494/+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 1729194] Re: Systemd-Resolvd Forgets to Resolv Request

2017-12-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: systemd (Ubuntu)
   Status: New => Confirmed

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

Title:
  Systemd-Resolvd Forgets to Resolv Request

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Systemd sometimes just doesn't resolve DNS queries and for the life of
  me I don't know why.

  So often when I'm switching between wifi networks I find that systemd-
  resolved in 17.10 complete fails to do it's job. Here's the example.
  I'm connected to the internet :

  ```
  chalbersma@nebraska [~] {Tue Oct 31 20:58:18}
  > ping 8.8.8.8
  PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data. 
  64 bytes from 8.8.8.8: icmp_seq=1 ttl=53 time=196 ms 
  64 bytes from 8.8.8.8: icmp_seq=2 ttl=53 time=67.5 ms 

  64 bytes from 8.8.8.8: icmp_seq=3 ttl=53 time=78.9 ms 

  ^C
  --- 8.8.8.8 ping statistics ---  
  3 packets transmitted, 3 received, 0% packet loss, time 1999ms

  rtt min/avg/max/mdev = 67.534/114.169/196.025/58.068 ms
  ```

  But I can't seem to resolve domains:

  ```
  chalbersma@nebraska [~] {Tue Oct 31 20:59:17}
  > nslookup google.com
  ;; connection timed out; no servers could be reached

  ```

  So I did a `systemd-resolver --status` to see if it's getting the
  right dns server. It is :

  ```
  Link 3 (wlp2s0)  
Current Scopes: DNS LLMNR/IPv4 LLMNR/IPv6  
 LLMNR setting: yes
  MulticastDNS setting: no 
DNSSEC setting: no 
  DNSSEC supported: no 
   DNS Servers: 192.168.43.1   
2001:4888:51:ff00:506:d::  
2001:4888:50:ff00:500:d::

  ```

  And it's actually up and working properly :

  ```
  chalbersma@nebraska [~] {Tue Oct 31 21:02:06}
  > nslookup google.com 192.168.43.1
  Server: 192.168.43.1
  Address:192.168.43.1#53

  Non-authoritative answer:
  Name:   google.com
  Address: 172.217.11.78
  chalbersma@nebraska [~] {Tue Oct 31 21:03:16}
  > nslookup google.com 2001:4888:51:ff00:506:d::
  Server: 2001:4888:51:ff00:506:d::
  Address:2001:4888:51:ff00:506:d::#53

  Non-authoritative answer:
  Name:   google.com
  Address: 172.217.11.78
  ```

  Systemd just can't figure out to make the request. I did try the
  common step of flushing the cache (with `--flush-cache`) restarting
  network-manager and systemd-resolverd service but nothing seems to be
  able to make systemd-resolverd function. Even a reboot doesn't always
  fix the issue; sometimes it persists.

  For debugging this is what's in my /etc/resolv.conf :

  ```  
  chalbersma@nebraska [~] {Tue Oct 31 21:09:15} 
  > cat /etc/resolv.conf
  # Generated by NetworkManager 
  nameserver 127.0.1.1  
  ```

  As soon as I manually set the nameserver from my loopback to the
  actual dns server (bypassing systemd-resolvd) things start working
  again. Let me know what kind of tshooting data I'd need to grab to
  help display this issue.

  In order to restore networking I had to manually edit that file and
  change my dns to the external source.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1729194/+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 1739980] Re: Depends libpopper68 version 0.57.0-2ubuntu4 but only 0.57.0-2ubuntu4.1 is available

2017-12-29 Thread Hans Joachim Desserud
Thanks for checking, based on your comment, I've taken the liberty to
mark this as fixed. :)

>Apologies if the bug was unnecessary. I didn't realize this scenario
could occur in the archives.

No problem. It happens from time to time with updates or when newer
verisons become available. Though there are also cases where packages
cannot be installed until someone adress the version requiremenets. If
in doubt, wait an hour or two, run `sudo apt update` again, and if the
error message is still present then go ahead and report it.

** Changed in: poppler (Ubuntu)
   Status: Incomplete => Fix Released

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

Title:
  Depends libpopper68 version 0.57.0-2ubuntu4 but only 0.57.0-2ubuntu4.1
  is available

Status in poppler package in Ubuntu:
  Fix Released

Bug description:
  nathan@netbook:~$ sudo apt-get install libpoppler-qt5-1
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  Some packages could not be installed. This may mean that you have
  requested an impossible situation or if you are using the unstable
  distribution that some required packages have not yet been created
  or been moved out of Incoming.
  The following information may help to resolve the situation:

  The following packages have unmet dependencies:
   libpoppler-qt5-1 : Depends: libpoppler68 (= 0.57.0-2ubuntu4) but 
0.57.0-2ubuntu4.1 is to be installed
  E: Unable to correct problems, you have held broken packages.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: libpoppler-qt5-1 (not installed)
  Uname: Linux 4.11.0-041100-generic i686
  ApportVersion: 2.20.7-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: LXDE
  Date: Sun Dec 24 15:41:39 2017
  InstallationDate: Installed on 2017-12-18 (6 days ago)
  InstallationMedia: Lubuntu 17.10 "Artful Aardvark" - Release i386 (20171017.1)
  SourcePackage: poppler
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/poppler/+bug/1739980/+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 1726608] Re: Alt+Arrow in gnome-shell unexpectedly switches VTs

2017-12-29 Thread Alessandro Cuttin
I can confirm, too, that 16.04 is affected.

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

Title:
  Alt+Arrow in gnome-shell unexpectedly switches VTs

Status in console-setup package in Ubuntu:
  Fix Released
Status in console-setup source package in Trusty:
  Confirmed
Status in console-setup source package in Xenial:
  Confirmed
Status in console-setup source package in Zesty:
  Confirmed

Bug description:
  I'm experiencing a bug similar to bug 1710637 with Ubuntu 17.10 again.

  Test Case
  -
  schroot -u root -c trusty-amd64
  edit /etc/apt/sources.list to xenial
  apt-get update
  apt-get install console-setup
  use alt+tab to bring up the window switcher
  then use alt+arrow to switch windows

  I then end up at the gdm login screen or a virtual tty.

  Installing a different set of packages, via apt-get dist-upgrade,
  actually ended up killing my desktop session.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gnome-shell 3.26.1-0ubuntu4
  ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
  Uname: Linux 4.13.0-16-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Oct 23 14:30:16 2017
  DisplayManager: gdm3
  EcryptfsInUse: Yes
  GsettingsChanges:
   b'org.gnome.shell' b'enabled-extensions' 
b"['sound-output-device-choo...@kgshank.net', 'multi-monitors-add-on@spin83', 
'datetime-for...@daniel-khodabakhsh.github.com', 
'ubuntu-appindicat...@ubuntu.com']"
   b'org.gnome.shell' b'favorite-apps' b"['org.gnome.Nautilus.desktop', 
'terminator.desktop', 'virt-manager.desktop', 'chromium-browser.desktop', 
'firefox.desktop', 'simple-scan.desktop']"
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2013-01-16 (1741 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130116)
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1726608/+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 1740534] [NEW] package initramfs-tools 0.122ubuntu8.10 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2017-12-29 Thread khalid messouaf
Public bug reported:

depuis que j'ai accepter la mise a niveau 16.04 j'ai des probleme sur
mon pave tactile et je peut plus installer les mise a jour et il ya des
textes qui sortes quand j'allume mon ordinateur

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: initramfs-tools 0.122ubuntu8.10
ProcVersionSignature: Ubuntu 3.13.0-137.186-generic 3.13.11-ckt39
Uname: Linux 3.13.0-137-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.14
Architecture: amd64
Date: Fri Dec 29 19:41:00 2017
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
InstallationDate: Installed on 2017-02-18 (314 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.122ubuntu8.10 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1
UpgradeStatus: Upgraded to xenial on 2017-12-29 (0 days ago)
mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-12-09T18:41:30

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

-- 
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/1740534

Title:
  package initramfs-tools 0.122ubuntu8.10 failed to install/upgrade: le
  sous-processus script post-installation installé a retourné une erreur
  de sortie d'état 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  depuis que j'ai accepter la mise a niveau 16.04 j'ai des probleme sur
  mon pave tactile et je peut plus installer les mise a jour et il ya
  des textes qui sortes quand j'allume mon ordinateur

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.10
  ProcVersionSignature: Ubuntu 3.13.0-137.186-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-137-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.14
  Architecture: amd64
  Date: Fri Dec 29 19:41:00 2017
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
  InstallationDate: Installed on 2017-02-18 (314 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.24
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.10 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1
  UpgradeStatus: Upgraded to xenial on 2017-12-29 (0 days ago)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-12-09T18:41:30

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1740534/+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 1740536] [NEW] Macbook Air Will not Sleep Ubuntu 16.04

2017-12-29 Thread Chris Buck
Public bug reported:

Macbook Air with Ubuntu 16.04 installed will not sleep/susped when lid
is closed.

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

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

Title:
  Macbook Air Will not Sleep Ubuntu 16.04

Status in systemd package in Ubuntu:
  New

Bug description:
  Macbook Air with Ubuntu 16.04 installed will not sleep/susped when lid
  is closed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1740536/+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 1710637] Re: Input falls through to gdm3 and terminates the session on Ctrl+C after udevadm trigger is executed under wayland

2017-12-29 Thread Alessandro Cuttin
can this be fixed also for 16.04?

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

Title:
  Input falls through to gdm3 and terminates the session on Ctrl+C after
  udevadm trigger is executed under wayland

Status in Snappy:
  Won't Fix
Status in console-setup package in Ubuntu:
  Fix Released
Status in gdm3 package in Ubuntu:
  Invalid
Status in gnome-shell package in Ubuntu:
  Invalid
Status in mutter package in Ubuntu:
  Invalid
Status in systemd package in Ubuntu:
  Invalid

Bug description:
  = Test Cases =

  Test Case 1:
  - Login under Wayland (session Ubuntu)
  - Open a terminal
  - snap install gimp
  - Wait until installation finishes successfully
  - In the terminal window press CTRL+C

  Result:
  - Expected: ^C is displayed in the terminal and the prompt is at the start of 
a new line
  - Actual: The session is terminated and the login screen is displayed

  Test Case 2:
  - Login under Wayland (session Ubuntu)
  - Open a terminal and type the following command:
    $ sudo udevadm trigger
  - In the terminal window press CTRL+C

  Result
  - Expected: ^C is displayed in the terminal and the prompt is at the start of 
a new line
  - Actual: The session is terminated and the login screen is displayed

  = Original Description =

  Multiple times a day I find myself without a session after hitting
  Ctrl+C in a terminal, it seems the input falls through the
  Ubuntu/GNOME session and to gdm, which itself decides to terminate.

  Even worse, when this happens, you can briefly see your login password
  in plaintext in the virtual terminal. You can see the password however
  long you want if you stop the gdm service when this happens.

  I don't have a good way to reproduce, but it seems locking the session
  with a keyboard shortcut, subsequently unlocking it, maybe suspending,
  at some point brings this behaviour into the picture, until the
  session dies with a Ctrl+C.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gdm3 3.24.2-1ubuntu9
  ProcVersionSignature: Ubuntu 4.11.0-13.19-generic 4.11.12
  Uname: Linux 4.11.0-13-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl zcommon znvpair
  ApportVersion: 2.20.6-0ubuntu5
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Mon Aug 14 15:54:34 2017
  InstallationDate: Installed on 2016-05-06 (464 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  SourcePackage: gdm3
  UpgradeStatus: Upgraded to artful on 2017-07-19 (25 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy/+bug/1710637/+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 1718932] Re: Child windows do not have shadows in Gnome Shell

2017-12-29 Thread feich
same libreOffice and other all apps.


** Attachment added: "libreoffice Screen"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-themes/+bug/1718932/+attachment/5028788/+files/2017-12-29%2021-08-28%20ekran%20g%C3%B6r%C3%BCnt%C3%BCs%C3%BC.png

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

Title:
  Child windows do not have shadows in Gnome Shell

Status in Ubuntu UX:
  New
Status in gnome-shell package in Ubuntu:
  Incomplete
Status in ubuntu-themes package in Ubuntu:
  Incomplete

Bug description:
  Some child windows do not have shadows.

  Test case:
  Open Thunderbird for the first time.
  A child window will appear to create a new account.
  It does not have shadows.

  Synaptic package manager also have the same issue.

  See screenshot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: light-themes 16.10+17.10.20170918-0ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-11.12-generic 4.13.1
  Uname: Linux 4.13.0-11-generic x86_64
  ApportVersion: 2.20.7-0ubuntu1
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Sep 22 14:20:26 2017
  InstallationDate: Installed on 2017-09-21 (1 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  PackageArchitecture: all
  SourcePackage: ubuntu-themes
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1718932/+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 1740441] Re: Nautilus infobar & notifer issue

2017-12-29 Thread feich
** Description changed:

- 
  ubuntu 17.10
- 
  
  1.There is no background in the Nautilus file Information Bar. ( In
  inactive windows )
  
- and folder loading animation does not exist in the file Information bar.
- 
  preview : https://i.hizliresim.com/0GY5nY.png
- 
  
  2.Notification window looks strange in apps.
  
  previews
  
  nautilus : https://i.hizliresim.com/OyGXMn.png
  
  Appstore : https://i.hizliresim.com/4GEJr7.png
  
- 
- 3. EOG Zoom Element white background ( I'm not sure it's bug, but I just 
wanted to mention it. )
+ 3. EOG Zoom Element white background ( I'm not sure it's bug, but I just
+ wanted to mention it. )
  
  preview : https://i.hizliresim.com/JO0gA5.png
+ 
+ 4. more in search bar
+ 
+ preview :https://i.hizliresim.com/rJWBP7.png

** Summary changed:

- Nautilus infobar & notifer issue
+ Nautilus infobar, searchbar & notification dialog issue

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

Title:
  Nautilus infobar, searchbar & notification dialog issue

Status in ubuntu-themes package in Ubuntu:
  New

Bug description:
  ubuntu 17.10

  1.There is no background in the Nautilus file Information Bar. ( In
  inactive windows )

  preview : https://i.hizliresim.com/0GY5nY.png

  2.Notification window looks strange in apps.

  previews

  nautilus : https://i.hizliresim.com/OyGXMn.png

  Appstore : https://i.hizliresim.com/4GEJr7.png

  3. EOG Zoom Element white background ( I'm not sure it's bug, but I
  just wanted to mention it. )

  preview : https://i.hizliresim.com/JO0gA5.png

  4. more in search bar

  preview :https://i.hizliresim.com/rJWBP7.png

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-themes/+bug/1740441/+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 1740526] [NEW] [HDA-Intel - HDA Intel PCH, playback] Playback problem

2017-12-29 Thread donop
Public bug reported:

Audio stuttering/skipping in 17.04, very frequently stuttering/skipping in 
17.10.
On 17.04 once at 20 minutes
On 17.10 2 times at 3 minutes, many times.
Problem not occurs at 16.10 and 16.04.3

Problem occurs at Realtek ALC662
and Beyerdynamic A200p

Card Intel Device 9d71 driver: snd_hda_intel bus-ID: 00:1f.3
   Sound: Advanced Linux Sound Architecture v: k4.10.0-40-generic

A200P used Wolfson WM8740 DAC

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ik 1563 F pulseaudio
  ik11896 F alsamixer
 /dev/snd/controlC1:  ik 1563 F pulseaudio
CurrentDesktop: Unity
Date: Fri Dec 29 18:47:00 2017
InstallationDate: Installed on 2017-12-27 (1 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=nl
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
Symptom_Card: A 200 p USB DAC 1.00 - A 200 p USB DAC 1.00
Symptom_Type: None of the above
Title: [HDA-Intel - HDA Intel PCH, playback] Playback problem
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/15/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.02
dmi.board.asset.tag: Default string
dmi.board.name: FS77U
dmi.board.vendor: Shuttle Inc.
dmi.board.version: 1.0
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 9
dmi.chassis.vendor: Default string
dmi.chassis.version: Default string
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.02:bd11/15/2016:svnShuttleInc.:pnDS77U:pvrV1.0:rvnShuttleInc.:rnFS77U:rvr1.0:cvnDefaultstring:ct9:cvrDefaultstring:
dmi.product.name: DS77U
dmi.product.version: V1.0
dmi.sys.vendor: Shuttle Inc.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

** Description changed:

  Audio stuttering/skipping in 17.04, high stuttering/skipping in 17.10.
  On 17.04 once at 20 minutes
  On 17.10 2 times at 3 minutes, many times.
  Problem not occurs at 16.10 and 16.04.3
  
  Problem occurs at Realtek ALC662
  and Beyerdynamic A200p
  
  Card Intel Device 9d71 driver: snd_hda_intel bus-ID: 00:1f.3
-Sound: Advanced Linux Sound Architecture v: k4.10.0-40-generic
+    Sound: Advanced Linux Sound Architecture v: k4.10.0-40-generic
+ 
+ A200P used Wolfson WM8740 DAC
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.13
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  ik 1563 F pulseaudio
-   ik11896 F alsamixer
-  /dev/snd/controlC1:  ik 1563 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ik 1563 F pulseaudio
+   ik11896 F alsamixer
+  /dev/snd/controlC1:  ik 1563 F pulseaudio
  CurrentDesktop: Unity
  Date: Fri Dec 29 18:47:00 2017
  InstallationDate: Installed on 2017-12-27 (1 days ago)
  InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  PackageArchitecture: all
  ProcEnviron:
-  LANGUAGE=nl
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=nl_NL.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=nl
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=nl_NL.UTF-8
+  SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: A 200 p USB DAC 1.00 - A 200 p USB DAC 1.00
  Symptom_Type: None of the above
  Title: [HDA-Intel - HDA Intel PCH, playback] Playback problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/15/2016
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.02
  dmi.board.asset.tag: Default string
  dmi.board.name: FS77U
  dmi.board.vendor: Shuttle Inc.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 9
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.02:bd11/15/2016:svnShuttleInc.:pnDS77U:pvrV1.0:rvnShuttleInc.:rnFS77U:rvr1.0:cvnDefaultstring:ct9:cvrDefaultstring:
  dmi.product.name: DS77U
  dmi.product.version: V1.0
  dmi.sys.vendor: Shuttle Inc.

** Description changed:

- Audio stuttering/skipping in 17.04, high stuttering/skipping in 17.10.
+ Audio stuttering/skipping in 17.04, very freqeuntly 

[Touch-packages] [Bug 1624317] Re: systemd-resolved breaks VPN with split-horizon DNS

2017-12-29 Thread flux242
I'm not sure if setting negative priority really solves the dns leaks problem 
because I'm on 17.10 and I do have dns leaks. If I'm connected to my ISP over a 
LTE network and the connection is unstable then it could happen that DNS 
queries will be sent over my ISP network and not over my VPN connection. The 
only solution that works for me currently is
sudo systemctl disable systemd-resolved.service
sudo service systemd-resolved stop

Put the following line in the [main] section of your 
/etc/NetworkManager/NetworkManager.conf:
dns=default

Delete the symlink /etc/resolv.conf
rm /etc/resolv.conf

Restart network-manager
sudo service network-manager restart

Caution! Be aware that disabling systemd-resolvd might break name
resolution in VPN for some users - according to the original thread
https://askubuntu.com/questions/907246/how-to-disable-systemd-resolved-
in-ubuntu

-- 
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/1624317

Title:
  systemd-resolved breaks VPN with split-horizon DNS

Status in NetworkManager:
  Unknown
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager source package in Zesty:
  Confirmed
Status in network-manager source package in Artful:
  Fix Released

Bug description:
  [Impact]

   * NetworkManager incorrectly handles dns-priority of the VPN-like
  connections, which leads to leaking DNS queries outside of the VPN
  into the general internet.

   * Upstream has resolved this issue in master and 1.8 to correctly
  configure any dns backends with negative dns-priority settings.

  [Test Case]

  #FIXME#

   * detailed instructions how to reproduce the bug

   * these should allow someone who is not familiar with the affected
 package to reproduce the bug and verify that the updated package fixes
 the problem.

  #FIXME#

  [Regression Potential]

   * If this issue is changed DNS resolution will change, for certain
  queries, to go via VPN rather than general internet. And therefore,
  one may get new/different results or even loose access to
  resolve/access certain parts of the interent depending on what the DNS
  server on VPN chooses to respond to.

  [Other Info]
   
   * Original bug report

  I use a VPN configured with network-manager-openconnect-gnome in which
  a split-horizon DNS setup assigns different addresses to some names
  inside the remote network than the addresses seen for those names from
  outside the remote network.  However, systemd-resolved often decides
  to ignore the VPN’s DNS servers and use the local network’s DNS
  servers to resolve names (whether in the remote domain or not),
  breaking the split-horizon DNS.

  This related bug, reported by Lennart Poettering himself, was closed with the 
current Fedora release at the time reaching EOL:
  https://bugzilla.redhat.com/show_bug.cgi?id=1151544

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1624317/+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


Re: [Touch-packages] [Bug 1583801] Re: No sound via headphones (headset) when Ubuntu boots with them plugged in

2017-12-29 Thread Chunxiang Yan
I believe the problem is kernel related, with the kernel 4.14 the problem
is gone.

Best regards,
Chunxiang Yan

On Fri, Dec 29, 2017 at 8:59 PM, Krešo Kunjas 
wrote:

> Well i have upgraded to 17.10, and problem dissapeared. Now it always
> works. But i have tried some other fixes before, so i cannot know if al
> of them are also needed.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1583801
>
> Title:
>   No sound via headphones (headset) when Ubuntu boots with them plugged
>   in
>
> Status in alsa-driver package in Ubuntu:
>   Confirmed
>
> Bug description:
>   The bug is twofold, first when computer boots if the headset
>   (headphones with built-in mic, one audio jack) is plugged in, then
>   there is no sound (via headphones or otherwise). If you plug
>   headphones out and back in, then it usually works as expected.
>
>   The second scenario is the same, except that plugging out and back in
>   again doesn't help. In that case, I just restart the laptop, then plug
>   them back in again and it works.
>
>   In all cases, microphone works.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 16.04
>   Package: alsa-base 1.0.25+dfsg-0ubuntu5
>   ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
>   Uname: Linux 4.4.0-22-generic x86_64
>   NonfreeKernelModules: nvidia_drm nvidia_modeset nvidia
>   ApportVersion: 2.20.1-0ubuntu2
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  crunch 3248 F pulseaudio
>   CurrentDesktop: Unity
>   Date: Thu May 19 22:13:20 2016
>   InstallationDate: Installed on 2016-05-07 (12 days ago)
>   InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64
> (20160420.1)
>   PackageArchitecture: all
>   SourcePackage: alsa-driver
>   Symptom: audio
>   Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
>   Symptom_Card: Built-in Audio - HDA Intel PCH
>   Symptom_DevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  crunch 3248 F pulseaudio
>   Symptom_Jack: Black Headphone Out, Left
>   Symptom_Type: No sound at all
>   Title: [XPS 15 9550, Realtek ALC3266, Black Headphone Out, Left] No
> sound at all
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 04/07/2016
>   dmi.bios.vendor: Dell Inc.
>   dmi.bios.version: 01.02.00
>   dmi.board.name: 0N7TVV
>   dmi.board.vendor: Dell Inc.
>   dmi.board.version: A00
>   dmi.chassis.type: 9
>   dmi.chassis.vendor: Dell Inc.
>   dmi.modalias: dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:
> pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
>   dmi.product.name: XPS 15 9550
>   dmi.sys.vendor: Dell Inc.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+
> bug/1583801/+subscriptions
>

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

Title:
  No sound via headphones (headset) when Ubuntu boots with them plugged
  in

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  The bug is twofold, first when computer boots if the headset
  (headphones with built-in mic, one audio jack) is plugged in, then
  there is no sound (via headphones or otherwise). If you plug
  headphones out and back in, then it usually works as expected.

  The second scenario is the same, except that plugging out and back in
  again doesn't help. In that case, I just restart the laptop, then plug
  them back in again and it works.

  In all cases, microphone works.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu May 19 22:13:20 2016
  InstallationDate: Installed on 2016-05-07 (12 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  Symptom_Jack: Black Headphone Out, Left
  Symptom_Type: No sound at all
  Title: [XPS 15 9550, Realtek ALC3266, Black Headphone Out, Left] No sound at 
all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  

[Touch-packages] [Bug 1583801] Re: No sound via headphones (headset) when Ubuntu boots with them plugged in

2017-12-29 Thread Krešo Kunjas
Well i have upgraded to 17.10, and problem dissapeared. Now it always
works. But i have tried some other fixes before, so i cannot know if al
of them are also needed.

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

Title:
  No sound via headphones (headset) when Ubuntu boots with them plugged
  in

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  The bug is twofold, first when computer boots if the headset
  (headphones with built-in mic, one audio jack) is plugged in, then
  there is no sound (via headphones or otherwise). If you plug
  headphones out and back in, then it usually works as expected.

  The second scenario is the same, except that plugging out and back in
  again doesn't help. In that case, I just restart the laptop, then plug
  them back in again and it works.

  In all cases, microphone works.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu May 19 22:13:20 2016
  InstallationDate: Installed on 2016-05-07 (12 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  Symptom_Jack: Black Headphone Out, Left
  Symptom_Type: No sound at all
  Title: [XPS 15 9550, Realtek ALC3266, Black Headphone Out, Left] No sound at 
all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  dmi.board.name: 0N7TVV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 15 9550
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1583801/+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 1718932] Re: Child windows do not have shadows in Gnome Shell

2017-12-29 Thread feich
Have same problem in Firefox dialogs.

** Attachment added: "Screenshot!"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-themes/+bug/1718932/+attachment/5028704/+files/Ekran%20G%C3%B6r%C3%BCnt%C3%BCs%C3%BC%20-%202017-12-29%2015-08-40.png

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

Title:
  Child windows do not have shadows in Gnome Shell

Status in Ubuntu UX:
  New
Status in gnome-shell package in Ubuntu:
  Incomplete
Status in ubuntu-themes package in Ubuntu:
  Incomplete

Bug description:
  Some child windows do not have shadows.

  Test case:
  Open Thunderbird for the first time.
  A child window will appear to create a new account.
  It does not have shadows.

  Synaptic package manager also have the same issue.

  See screenshot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: light-themes 16.10+17.10.20170918-0ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-11.12-generic 4.13.1
  Uname: Linux 4.13.0-11-generic x86_64
  ApportVersion: 2.20.7-0ubuntu1
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Sep 22 14:20:26 2017
  InstallationDate: Installed on 2017-09-21 (1 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  PackageArchitecture: all
  SourcePackage: ubuntu-themes
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1718932/+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 1740491] [NEW] package dbus 1.12.2-1ubuntu1 failed to install/upgrade: zapętlenie wyzwalaczy, przerywanie

2017-12-29 Thread agent_J
Public bug reported:

Error happened after update to the latest version of beta ubuntu

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: dbus 1.12.2-1ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.8-0ubuntu5
Architecture: amd64
Date: Fri Dec 29 10:54:38 2017
ErrorMessage: zapętlenie wyzwalaczy, przerywanie
InstallationDate: Installed on 2017-12-16 (12 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
Python3Details: /usr/bin/python3.6, Python 3.6.4, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14+, python-minimal, 
2.7.14-2ubuntu1
RelatedPackageVersions:
 dpkg 1.19.0.4ubuntu1
 apt  1.6~alpha5
SourcePackage: dbus
Title: package dbus 1.12.2-1ubuntu1 failed to install/upgrade: zapętlenie 
wyzwalaczy, przerywanie
UpgradeStatus: Upgraded to bionic on 2017-12-29 (0 days ago)

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


** Tags: amd64 apport-package bionic

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

Title:
  package dbus 1.12.2-1ubuntu1 failed to install/upgrade: zapętlenie
  wyzwalaczy, przerywanie

Status in dbus package in Ubuntu:
  New

Bug description:
  Error happened after update to the latest version of beta ubuntu

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: dbus 1.12.2-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
  Uname: Linux 4.13.0-21-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.8-0ubuntu5
  Architecture: amd64
  Date: Fri Dec 29 10:54:38 2017
  ErrorMessage: zapętlenie wyzwalaczy, przerywanie
  InstallationDate: Installed on 2017-12-16 (12 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  Python3Details: /usr/bin/python3.6, Python 3.6.4, python3-minimal, 
3.6.3-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.14+, python-minimal, 
2.7.14-2ubuntu1
  RelatedPackageVersions:
   dpkg 1.19.0.4ubuntu1
   apt  1.6~alpha5
  SourcePackage: dbus
  Title: package dbus 1.12.2-1ubuntu1 failed to install/upgrade: zapętlenie 
wyzwalaczy, przerywanie
  UpgradeStatus: Upgraded to bionic on 2017-12-29 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1740491/+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 1583801] Re: No sound via headphones (headset) when Ubuntu boots with them plugged in

2017-12-29 Thread Niko Morin
Confirming that this still exists on Dell XPS 15 9560, Ubuntu 16.10. I'd
like to add that in the second scenario, the popup asking which audio
device was plugged in does not appear.

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

Title:
  No sound via headphones (headset) when Ubuntu boots with them plugged
  in

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  The bug is twofold, first when computer boots if the headset
  (headphones with built-in mic, one audio jack) is plugged in, then
  there is no sound (via headphones or otherwise). If you plug
  headphones out and back in, then it usually works as expected.

  The second scenario is the same, except that plugging out and back in
  again doesn't help. In that case, I just restart the laptop, then plug
  them back in again and it works.

  In all cases, microphone works.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu May 19 22:13:20 2016
  InstallationDate: Installed on 2016-05-07 (12 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  crunch 3248 F pulseaudio
  Symptom_Jack: Black Headphone Out, Left
  Symptom_Type: No sound at all
  Title: [XPS 15 9550, Realtek ALC3266, Black Headphone Out, Left] No sound at 
all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  dmi.board.name: 0N7TVV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 15 9550
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1583801/+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 1732222] Re: Language support not installed matching locale

2017-12-29 Thread David
When the user selects a different language to English-US (e.g. English-
UK), all of the UK language packs should also be installed during
installation. Maybe ubiquity is the focus of the bug report?

When the user selects English-UK during Ubuntu installation, why don't
the related packages get installed (libreoffice-help-en-gb, libreoffice-
l10n-en-gb, myspell-en-gb, hunspell-en-gb etc)?

I don't know if other languages are affected. The only way to test is to
install Ubuntu with a different ENGLISH language than English-US. Then
see if LibreOffice menus are showing US-English e.g. words like "color"
instead of "colour".

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

Title:
  Language support not installed matching locale

Status in language-pack-en package in Ubuntu:
  New

Bug description:
  When Ubuntu is installed with UK locale settings during setup, all of
  the language support is not installed and some applications e.g.
  LibreOffice display with non-UK English. The extra language support is
  prompted to be installed *the first time* the user accesses the
  language options (see screenshot attached).

  When this language support is installed, these applications then
  (correctly) display menus etc in UK English.

  Ubuntu setup appears to not install the matching locale languages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-pack-en/+bug/173/+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 1740484] [NEW] video corruption with amd RX560 and 2k display

2017-12-29 Thread Antonio Díaz Rebaque
Public bug reported:

I have a new PC. Freshly installed ubuntu 17.10

I get a lot of video corruption on my 2k display. It usually shows up as
bands of the background image or gnome-shell status bar flickering
across the display at different vertical positions. Everything works
fine if I select 'Gnome under X.Org' from the login screen instead of
wayland.

GNOME 3.26.2, Linux 4.13, Radeon RX560 using amdgpu, Lenovo l24q-10
monitor running at 2k (2560x1440@ 59.95Hz).

There is a Fedora Bug with same info:
https://bugzilla.redhat.com/show_bug.cgi?id=1417778 with a video showing
the problem in there.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.7-0ubuntu3.6
Architecture: amd64
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Fri Dec 29 11:06:18 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
DkmsStatus: bcmwl, 6.30.223.271+bdcom, 4.13.0-21-generic, x86_64: installed
ExtraDebuggingInterest: No
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Baffin [Polaris11] [1002:67ff] (rev cf) 
(prog-if 00 [VGA controller])
   Subsystem: Sapphire Technology Limited Baffin [Radeon RX 560] [1da2:e348]
MachineType: System manufacturer System Product Name
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=es_ES.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-21-generic.efi.signed 
root=UUID=2452d0da-14e9-4f88-9660-5a86aee79ff4 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/04/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3401
dmi.board.asset.tag: Default string
dmi.board.name: PRIME B350M-A
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 3
dmi.chassis.vendor: Default string
dmi.chassis.version: Default string
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3401:bd12/04/2017:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEB350M-A:rvrRevX.0x:cvnDefaultstring:ct3:cvrDefaultstring:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.5-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
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 artful corruption ubuntu wayland-session

-- 
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/1740484

Title:
  video corruption with amd RX560 and 2k display

Status in xorg package in Ubuntu:
  New

Bug description:
  I have a new PC. Freshly installed ubuntu 17.10

  I get a lot of video corruption on my 2k display. It usually shows up
  as bands of the background image or gnome-shell status bar flickering
  across the display at different vertical positions. Everything works
  fine if I select 'Gnome under X.Org' from the login screen instead of
  wayland.

  GNOME 3.26.2, Linux 4.13, Radeon RX560 using amdgpu, Lenovo l24q-10
  monitor running at 2k (2560x1440@ 59.95Hz).

  There is a Fedora Bug with same info:
  https://bugzilla.redhat.com/show_bug.cgi?id=1417778 with a video
  showing the problem in there.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu3
  ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
  Uname: Linux 4.13.0-21-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.7-0ubuntu3.6
  Architecture: amd64
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Dec 29 11:06:18 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  DkmsStatus: bcmwl, 6.30.223.271+bdcom, 4.13.0-21-generic, x86_64: installed
  ExtraDebuggingInterest: No
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Baffin [Polaris11] [1002:67ff] (rev 
cf) (prog-if 00 [VGA controller])
 Subsystem: Sapphire Technology Limited Baffin [Radeon RX 560] [1da2:e348]
  MachineType: System manufacturer System Product Name
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=es_ES.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: 

[Touch-packages] [Bug 1327412] Re: Delay during PXE Boot, IP-Config gives up

2017-12-29 Thread Bug Watch Updater
** Changed in: klibc (Debian)
   Status: Fix Committed => Fix Released

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

Title:
  Delay during PXE Boot, IP-Config gives up

Status in klibc package in Ubuntu:
  Fix Released
Status in klibc source package in Trusty:
  Fix Released
Status in klibc source package in Wily:
  Won't Fix
Status in klibc source package in Xenial:
  Fix Released
Status in klibc package in Debian:
  Fix Released

Bug description:
  [Impact]
  PXE booting users with live images or other minimal setups using klibc-utils.

  [Test case]
  Attempt to PXE boot using Ubuntu live images; see below for details.

  [Regression potential]
  This forces the yiaddr (client requested/current IP) to be set to 0 when 
sending DHCP messages; currently the messages are DHCPREQUEST and DHCPDISCOVER, 
which should typically only happen when there is no IP set on the device and it 
is otherwise unable to receive unicast (on account of not being configured). 
Should there be a need to send other messages which would require setting the 
yiaddr value to the current configured IP address, a naive change would break. 
The yiaddr variable would need to be adjusted to pull value from a new 
location, or initialized directly by the callers to dhcp_send() where the 
business logic would reside.

  ---

  Attempting to PXE boot both the 12.04.3 and 14.04 Live images.   PXE
  boot works normally (PXE Menu, select desired image, image begins
  loading), then the boot process hangs while IP-Config attempts to get
  an IP address:

  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: no response after 2 secs - giving up
  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: no response after 3 secs - giving up

  These lines appear very quickly (5 seconds has NOT elapsed), after
  about a minute, we get this:

  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: no response after 4 secs - giving up

  Some time later, this:

  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: no response after 6 secs - giving up

  Until finally, this:

  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: no response after 9 secs - giving up
  IP-Config: eth0 hardware address e0:db:55:0c:34:7e mtu 1500 DHCP
  IP-Config: eth1 hardware address e0:db:55:0c:34:80 mtu 1500 DHCP
  IP-Config: eth0 guessed broadcast address 172.25.11.31
  IP-Config: eth0 complete (dhcp from 172.25.10.20):
  (snip)

  While watching the DHCP server logs, Ubuntu is either not sending a
  DHCP Discover at times, or is not replying back with a DHCPRequest
  during these sessions, presumably ignoring an response from the DHCP
  server.  From the initial booting of the system via PXE, to when
  Ubuntu finally shows the desktop, almost 12 minutes will have elapsed.

  I am seeing this same behavior on both 12.04.3 and 14.04.  After
  finding a number of similar erros via Google and no real resolution, I
  have opened this bug.

  The system experiencing this issue has multiple ethernet interfaces
  (actual HW, not a VM), some Google found solutions suggest hard coding
  DEVICE=eth0 in /etc/initramfs-tools/initramfs.conf, however this isn't
  acceptable as a system attempting to PXE boot may be using an
  alternate port for the network.

  I have found what looks to be a very similar bug filed for Debian,
  #584583, which also contains a patch for this issue (under Debian).

  I have no problems in PXE booting to various Windows, RedHat, Centos,
  or Fedora OSs.  Ubuntu is the only Live OS that I'm attempting to boot
  at present.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ubuntu-release-upgrader-core 1:0.220.2
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CasperVersion: 1.340
  CrashDB: ubuntu
  CurrentDesktop: Unity
  Date: Fri Jun  6 20:22:09 2014
  LiveMediaBuild: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: release-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: 

[Touch-packages] [Bug 1699646] Re: package language-pack-en 1:16.04+20161009 failed to install/upgrade: package language-pack-en is already installed and configured

2017-12-29 Thread dino99
*** This bug is a duplicate of bug 545790 ***
https://bugs.launchpad.net/bugs/545790

This a false positive of dpkg package

** Package changed: language-pack-en (Ubuntu) => dpkg (Ubuntu)

** This bug has been marked a duplicate of bug 545790
   package PACKAGE failed to install/upgrade: error writing to '': Success

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

Title:
  package language-pack-en 1:16.04+20161009 failed to install/upgrade:
  package language-pack-en is already installed and configured

Status in dpkg package in Ubuntu:
  Incomplete

Bug description:
  clean install on new hardware

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: language-pack-en 1:16.04+20161009
  ProcVersionSignature: Ubuntu 4.4.0-81.104-generic 4.4.67
  Uname: Linux 4.4.0-81-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.6
  AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
  Architecture: amd64
  Date: Wed Jun 21 17:38:32 2017
  DuplicateSignature:
   package:language-pack-en:1:16.04+20161009
   Processing triggers for mime-support (3.59ubuntu1) ...
   dpkg: error processing package language-pack-en-base (--configure):
package language-pack-en-base is already installed and configured
  ErrorMessage: package language-pack-en is already installed and configured
  InstallationDate: Installed on 2017-06-21 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.20
  SourcePackage: language-pack-en
  Title: package language-pack-en 1:16.04+20161009 failed to install/upgrade: 
package language-pack-en is already installed and configured
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1699646/+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