[Bug 2063491] Re: Cannot restore files using duply version included with Noble

2024-05-13 Thread Nico R
Can confirm the very same phenomenon after upgrading from Kubuntu 23.10
to 24.04

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

Title:
  Cannot restore files using duply version included with Noble

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


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

[Bug 2056578] Re: Tor Browser - keyboard not functioning

2024-05-13 Thread Nico R
Thanks #15!

I had the exact same issue on Kubuntu after upgrading from 23.10 to
24.04, and just adding the

owner @{HOME}/.cache/ibus/dbus-* rw,

line into /etc/apparmor.d/torbrowser.Browser.firefox anywhere inside the
curly brackets of the "profile" segment - e.g. immediately after the
line

profile torbrowser_firefox @{torbrowser_firefox_executable} {
[...]

and restarting the apparmor service (or rebooting the computer) does the
trick.

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

Title:
  Tor Browser - keyboard not functioning

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


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

[Bug 1968755] [NEW] venv doesn't work

2022-04-12 Thread Nico Schlömer
Public bug reported:

There's something wrong with Python 3.10 on Ubuntu 22.04. I'm pulling my
hair out, but can't figure out what's going wrong. I condensed it to

```
virtualenv venv
venv/bin/python --version
```

This should work, but only gives

```
created virtual environment CPython3.10.4.final.0-64 in 130ms
  creator CPython3Posix(dest=/home/nschloe/software/meshpro/meshio-dev/venv, 
clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, 
wheel=bundle, via=copy, app_data_dir=/home/nschloe/.local/share/virtualenv)
added seed packages: pip==22.0.4, setuptools==60.9.3, wheel==0.37.1
  activators 
BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
❯ venv/bin/python --version
zsh: no such file or directory: venv/bin/python
```

Let me know what else I can do to debug.

** Affects: python3.10 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  venv doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.10/+bug/1968755/+subscriptions


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

[Bug 1767542] Re: Turning off WiFi enables Airplane mode

2022-02-23 Thread Nico Stöckigt
This bug has quite a big impact but seems to be easy to fix. By this
means 4 years is a looong time. 20.04 LTS, 21.04, 21.10 still have this
issue - will 22.04 too?

Seriously, when will this be fixed?

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

Title:
  Turning off WiFi enables Airplane mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1767542/+subscriptions


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

[Bug 1953135] [NEW] Incorrect symlink checking => Your python3 install is corrupted.

2021-12-03 Thread Nico Schlömer
Public bug reported:

This is related to https://bugs.launchpad.net/bugs/1825655.

When trying to upgrade to jammy, I got
```
Your python3 install is corrupted. Please fix the '/usr/bin/python3' 
symlink. 
```

Digging into the matter, it comes down to this symlink checker in 
`DistUpgradeController.py`:
```
import logging
from configparser import ConfigParser
import os
from configparser import NoOptionError

logging.basicConfig(filename='example.log', encoding='utf-8',
level=logging.DEBUG)

def _pythonSymlinkCheck():
""" sanity check that /usr/bin/python3 points to the default
python version. Users tend to modify this symlink, which
breaks stuff in obscure ways (Ubuntu #75557).
"""
logging.debug("_pythonSymlinkCheck run")
binaries_and_dirnames = [("python3", "python3")]
for binary, dirname in binaries_and_dirnames:
debian_defaults = '/usr/share/%s/debian_defaults' % dirname
if os.path.exists(debian_defaults):
config = ConfigParser()
with open(debian_defaults) as f:
config.read_file(f)
try:
expected_default = config.get('DEFAULT', 'default-version')
except NoOptionError:
logging.debug("no default version for %s found in '%s'" %
  (binary, config))
return False
try:
fs_default_version = os.readlink('/usr/bin/%s' % binary)
except OSError as e:
logging.error("os.readlink failed (%s)" % e)
return False
if not fs_default_version in (expected_default, 
os.path.join('/usr/bin', expected_default)):
logging.debug("%s symlink points to: '%s', but expected is '%s' 
or '%s'" %
  (binary, fs_default_version, expected_default, 
os.path.join('/usr/bin', expected_default)))
return False
return True


res = _pythonSymlinkCheck()
print(res)
```
Running it indeed returns `False` on my machine. The log gives the reason:
```
DEBUG:root:_pythonSymlinkCheck run
DEBUG:root:python3 symlink points to: '/etc/alternatives/python3', but expected 
is 'python3.9' or '/usr/bin/python3.9'
```
The symlink is not followed through.

Instead of `os.readlink`, you want to use `os.path.realpath`.

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

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

Title:
  Incorrect symlink checking => Your python3 install is corrupted.

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


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

[Bug 1952504] Re: terminator crashed with TypeError in feed(): Item 0: Must be number, not str

2021-12-02 Thread Nico Della Torre
** Information type changed from Private to Public

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

Title:
  terminator crashed with TypeError in feed(): Item 0: Must be number,
  not str

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


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

[Bug 1940221] Re: bump to CGAL 5.3

2021-11-27 Thread Nico Schlömer
Apparently, this is fixed in jammy.

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

Title:
  bump to CGAL 5.3

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


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

[Bug 1952504] Re: terminator crashed with TypeError in feed(): Item 0: Must be number, not str

2021-11-27 Thread Nico Della Torre
** Information type changed from Private to Public Security

** Information type changed from Public Security to Public

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

Title:
  terminator crashed with TypeError in feed(): Item 0: Must be number,
  not str

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


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

[Bug 1940506] [NEW] bump to spdlog 1.8.5

2021-08-19 Thread Nico Schlömer
Public bug reported:

Debian's got it (https://tracker.debian.org/pkg/spdlog), please bump.

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

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

Title:
  bump to spdlog 1.8.5

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


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

[Bug 1940221] [NEW] bump to CGAL 5.3

2021-08-17 Thread Nico Schlömer
Public bug reported:

CGAL 5.3 was released on July 6, 2021. Debian has already bumped
(https://packages.debian.org/sid/libcgal-dev) and it'd be great if
Ubuntu could adopt it, too.

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

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

Title:
  bump to CGAL 5.3

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


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

[Bug 1767542] Re: Turning off WiFi enables Airplane mode

2021-05-27 Thread Nico Stöckigt
Issue persists on 20.04 on the same Lenovo L480/490/14 Series.
Turning Wifi off still turns airplane mode on.

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

Title:
  Turning off WiFi enables Airplane mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1767542/+subscriptions

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

[Bug 1903890] Re: python3-openssl appears to be built against the wrong version of libffi

2021-01-11 Thread Nico R
Can confirm with QGIS whenever the plugins "QuickMapServices" or "Google
Earth Engine Data Catalog" try to download data from Google servers.

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

Title:
  python3-openssl appears to be built against the wrong version of
  libffi

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

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

[Bug 1909857] Re: NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

2021-01-05 Thread Nico
Erm... No bite? Not the right place? Missing bits of info? No interest?

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

Title:
  NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

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

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

[Bug 1909857] Re: NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

2021-01-02 Thread Nico
Also, alsa-info.sh: https://paste.ubuntu.com/p/sspkGCwkVj/

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

Title:
  NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

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

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

[Bug 1909857] [NEW] NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

2021-01-02 Thread Nico
Public bug reported:

Software is X11-based stable/up-to-date Kodi v18 on up-to-date Ubuntu 20.10.
Hardware is an Intel NUC7i5BNH (Kaby Lake), latest available BIOS and latest 
available HDMI/LS-PCON firmware. The AVR is a Denon AVR-2310. The TV is an old 
Toshiba 1080p LCD. I make sure that the TV and AVR are turned on first so that 
EDID is available.

When playing a file with HBR audio bitstreams (DTS-HD, Dolby TrueHD) I get no 
audio.
When playing a file with EAC3/DD+ audio bitstreams, I get very regular dropouts.
When I play a file with stereo/DTS/DD bitstreams, all is fine.
When I play an audio file with 6 channels of LPCM, all is fine.

I can play the same files with HBR or EAC3 audio on the same machine from a 
Windows install without any issue, right out of the box using the built-in 
software, using the default configs, which rules out hardware incompatibilities.
I've spent some time with the Kodi guys who have come to the conclusion that 
the issue was not with them but higher in the software stack. So here I am! 
History here: https://forum.kodi.tv/showthread.php?tid=359371

I've also filed a bug with Intel, but I'm not getting any traction there. Must 
be the holydays!
https://gitlab.freedesktop.org/drm/intel/-/issues/2861

Any help is welcomed.

I'm no dev, but I know my way around Linux and systems, and I am not
afraid of testing things and reporting data. Compiling code is usually
something I can do, with instructions if it's less run-of-the-mill.

Thanks in advance!

More specific/detailed background data:

BIOS: BNKBL357.86A.0083.2020.0714.1344 07/14/2020 (latest available from Intel)
HDMI Firmware: 1.77.93 (the latest available from Intel, updated from a Windows 
install)
System architecture: ("uname -m"): x86_64
Kernel version: ("uname -r"): 5.8.0-33-generic
Linux distribution: Ubuntu 20.10 kept up-to-date
Machine or motherboard model (use dmidecode if needed): NUC7i5BNH - 
https://paste.ubuntu.com/p/J2V4mKFWSg/
Display connector: physically HDMI, but I understand that it is internally a DP 
with a protocol converter leading to HDMI
Full dmesg with debug information: From boot 
https://paste.ubuntu.com/p/53qVzpDJ76/
I've played a file with DTS-HD HBR audio bitstream (no audio) towards the end, 
if it can help - https://paste.ubuntu.com/p/5pRRpmfT3P/
I've played a file with EAC3 audio bitstream with dropouts towards the end of 
that one, if it can help - https://paste.ubuntu.com/p/xFPQY5Zzcb/
xrandr --verbose: https://paste.ubuntu.com/p/V95ZWx9MNy/
intel_reg_dumper output: https://paste.ubuntu.com/p/bWnjsvQ9t4/
VBIOS dump: File available there https://youplala.net/~nico/intel/
lsmod | grep snd: https://paste.ubuntu.com/p/hq9Bf87GbY/
/proc/asound/card0/codec#2: https://paste.ubuntu.com/p/8JDwbj5pYs/
/proc/asound/card0/eld#2.0: https://paste.ubuntu.com/p/KdZzHZxTsm/
cat /sys/devices/pci:00/:00:02.0/drm/card0/card0-DP-1/edid | 
edid-decode: https://paste.ubuntu.com/p/vVjdSWh9Dz/

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: alsa-base (not installed)
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Jan  2 12:59:50 2021
InstallationDate: Installed on 2018-02-01 (1066 days ago)
InstallationMedia: Ubuntu-Server 17.10 "Artful Aardvark" - Release amd64 
(20180108.1)
ProcEnviron:
 LANGUAGE=en_GB:en
 TERM=screen-256color
 PATH=(custom, no user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
UpgradeStatus: Upgraded to groovy on 2020-12-26 (7 days ago)

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


** Tags: amd64 apport-bug groovy

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

Title:
  NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

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

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

[Bug 1873462] [NEW] gimp crashes 90% if i want to scale a pic in a layer

2020-04-17 Thread Nico Lubnau
Public bug reported:

Betriebssystem: Kubuntu 19.10
KDE-Plasma-Version: 5.16.5
KDE-Frameworks-Version: 5.62.0
Qt-Version: 5.12.4
Kernel-Version: 5.3.0-46-generic
Art des Betriebssystems: 64-bit
Prozessoren: 4 × Intel® Xeon® CPU X3220 @ 2.40GHz
Speicher: 3,8 GiB Arbeitsspeicher

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

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

Title:
  gimp crashes 90% if i want to scale a pic in a layer

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

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

[Bug 1868061] Re: linux-image-5.3.0-42-generic regression: no audio output on HP EliteBook 840 G6

2020-04-09 Thread Nico R.
Seems that the problem about audio output has been solved in linux-
image-5.3.0-46-generic.

** Changed in: linux (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  linux-image-5.3.0-42-generic regression: no audio output on HP
  EliteBook 840 G6

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

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

[Bug 1868061] Re: linux-image-5.3.0-42-generic regression: no audio output on HP EliteBook 840 G6

2020-04-07 Thread Nico R.
I have started bisecting the eoan kernel /.

Preliminary results:

* Ubuntu-5.3.0-40.32: good,
* Ubuntu-5.3.0-42.34: bad,
* Ubuntu-5.3.0-41.33: bad.

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

Title:
  linux-image-5.3.0-42-generic regression: no audio output on HP
  EliteBook 840 G6

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

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

[Bug 1868086] Re: WiFi not initialised

2020-04-01 Thread Nico Stöckigt
For `lshw` please see my initial post.
I am not sure what you're meaning with 'product' - Ubuntu 18.04 on a Lenovo 
L480?

The Laptop uses UEFI with 'Secure Boot: disabled'.


** Changed in: backport-iwlwifi-dkms (Ubuntu)
   Status: Incomplete => New

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

Title:
  WiFi not initialised

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1868086/+subscriptions

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

[Bug 1868093] [NEW] WiFi not initialised

2020-03-19 Thread Nico Stöckigt
*** This bug is a duplicate of bug 1868086 ***
https://bugs.launchpad.net/bugs/1868086

Public bug reported:

While booting it happens from time to time that the wifi module
(iwlwifi) is not initialised.

Ubuntu: 18.04 LTS
Kernel: 5.3.0-42-generic
Hardware: Lenovo L480

= dmesg =
[ 13.583750] iwlwifi :06:00.0: Not valid error log pointer 0x for 
Init uCode
[ 13.583868] iwlwifi :06:00.0: Fseq Registers:
[ 13.583917] iwlwifi :06:00.0: 0xC287D207 | FSEQ_ERROR_CODE
[ 13.583966] iwlwifi :06:00.0: 0x0468D970 | FSEQ_TOP_INIT_VERSION
[ 13.583970] iwlwifi :06:00.0: 0x1A61D0D0 | FSEQ_CNVIO_INIT_VERSION
[ 13.583975] iwlwifi :06:00.0: 0xA10B | FSEQ_OTP_VERSION
[ 13.583980] iwlwifi :06:00.0: 0xC8917AB7 | FSEQ_TOP_CONTENT_VERSION
[ 13.583984] iwlwifi :06:00.0: 0xD20F4521 | FSEQ_ALIVE_TOKEN
[ 13.583989] iwlwifi :06:00.0: 0x75069428 | FSEQ_CNVI_ID
[ 13.583994] iwlwifi :06:00.0: 0x12CC4492 | FSEQ_CNVR_ID
[ 13.583998] iwlwifi :06:00.0: 0x0010 | CNVI_AUX_MISC_CHIP
[ 13.584006] iwlwifi :06:00.0: 0x0BADCAFE | CNVR_AUX_MISC_CHIP
[ 13.584014] iwlwifi :06:00.0: 0x0BADCAFE | 
CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM
[ 13.584021] iwlwifi :06:00.0: 0x0BADCAFE | 
CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR
[ 13.584052] iwlwifi :06:00.0: SecBoot CPU1 Status: 0x3040001, CPU2 Status: 
0x0
[ 13.584053] iwlwifi :06:00.0: Failed to start INIT ucode: -110
[ 13.584064] iwlwifi :06:00.0: Firmware not running - cannot dump error
[ 13.596960] iwlwifi :06:00.0: Failed to run INIT ucode: -110
=

= lshw =
  *-network 
   description: Wireless interface
   product: Wireless 8265 / 8275
   vendor: Intel Corporation
   physical id: 0
   bus info: pci@:06:00.0
   logical name: wlp6s0
   version: 78
   serial: 20:79:18:5f:f8:70
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list ethernet physical 
wireless
   configuration: broadcast=yes driver=iwlwifi 
driverversion=5.3.0-42-generic firmware=36.9f0a2d68.0 ip=192.168.1.100 
latency=0 link=yes multicast=yes wireless=IEEE 802.11
   resources: irq:142 memory:f100-f1001fff
==

Are there further info you need to analyse?

** Affects: backport-iwlwifi-dkms (Ubuntu)
 Importance: Undecided
 Status: New

** This bug has been marked a duplicate of bug 1868086
   WiFi not initialised

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

Title:
  WiFi not initialised

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1868093/+subscriptions

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

[Bug 1868086] Re: WiFi not initialised

2020-03-19 Thread Nico Stöckigt
** Project changed: canonical-identity-provider => backport-iwlwifi-dkms
(Ubuntu)

** Changed in: backport-iwlwifi-dkms (Ubuntu)
   Status: Invalid => New

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

Title:
  WiFi not initialised

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1868086/+subscriptions

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

[Bug 1868061] Re: linux-image-5.3.0-42-generic regression: no audio output on HP EliteBook 840 G6

2020-03-19 Thread Nico R.
I am currently running another kernel and will not be able to quickly
provide the information produced by apport-collect. I am quite confident
that the information provided by me so far will help with triaging this
bug report or requesting further _specific_ details, and therefore I am
setting the bug status to 'Confirmed'.

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  linux-image-5.3.0-42-generic regression: no audio output on HP
  EliteBook 840 G6

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

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

[Bug 1868061] [NEW] linux-image-5.3.0-42-generic regression: no audio output on HP EliteBook 840 G6

2020-03-19 Thread Nico R.
Public bug reported:

Symptoms:

no hardware audio output device found by PulseAudio on eoan after I have
updated the system yesterday.


Works: linux-image-5.3.0-40-generic
Does not work: linux-image-5.3.0-42-generic


* I suspect this is somewhat related to the recent changes for SkyLake+ 
platforms between tags Ubuntu-5.3.0-40.32 and Ubuntu-5.3.0-42.34 (I am 
referring to the repo at 
).

* I am using the binary package from the Ubuntu repos, not a self-built
kernel.

* I can help with bisecting and testing if you like. If you like me to,
I need a piece of advice: is
 the proper up-to-
date documentation for building my Ubuntu kernel from the sources in the
git repo?


What I have tried so far:

I wanted to reload the sound module(s), so I ran the following command:

$ pulseaudio -k ; sudo rmmod snd_hda_intel snd_soc_skl_hda_dsp
snd_soc_skl_ssp_clk snd_soc_skl snd_soc_skl_ipc

Then I ran:

# modprobe snd-hda-intel


I found the following in my syslog (not totally sure about when exactly this 
happened – before or after the rmmod/modprobe):

(see attached file)


Output of ‘sudo lspci -vvnn’ (warning: on 5.3.0-40-generic! Because I am 
working in parallel and need a functioning audio setup right now; I can try 
this on another kernel in the evening if absolutely necessary, but this should 
suffice):

(see attached file)


If more information is necessary for proper debugging, please give me some 
instructions what to do. Thanks! ☺

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

** Attachment added: "excerpt from syslog, and output of ‘lspci -vvnn’"
   
https://bugs.launchpad.net/bugs/1868061/+attachment/5338694/+files/more_information

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

Title:
  linux-image-5.3.0-42-generic regression: no audio output on HP
  EliteBook 840 G6

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

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

[Bug 1866348] Re: gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

2020-03-06 Thread Nico Schlömer
Something very similar is reported at
https://bugzilla.redhat.com/show_bug.cgi?id=1797736.

Downgrading fixed the problem there, but I can't see how to downgrade
glib-2.0 on focal

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

Title:
  gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0
  in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1866348/+subscriptions

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

[Bug 1866348] [NEW] gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

2020-03-06 Thread Nico Schlömer
Public bug reported:

I'm running on Focal. Since recently, Gnome crashes with
```
Mar  6 14:03:16 ishanca gnome-shell[77303]: Failed to set scheduler settings: 
Operation not permitted
Mar  6 14:03:16 ishanca kernel: [33974.584854] traps: gnome-shell[81291] trap 
int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in 
libglib-2.0.so.0.6305.0[7fc2d7369000+84000]
[...]
```

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New

** Bug watch added: Red Hat Bugzilla #1797736
   https://bugzilla.redhat.com/show_bug.cgi?id=1797736

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

Title:
  gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0
  in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1866348/+subscriptions

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

[Bug 1767542] Re: Turning off WiFi enables Airplane mode

2020-03-03 Thread Nico Stöckigt
In Ubuntu 18.04 LTS this is still an issue, the described behaviour still 
occurs exactly as described.
Probably this is expected with your smartphone but absolutely not from your 
Laptop!

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

Title:
  Turning off WiFi enables Airplane mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1767542/+subscriptions

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

[Bug 1850001] Re: nautilus hangs on file delete

2020-02-16 Thread Nico Rikken
Alright, to confirm, installing the org.gnome.NautilusDevel and running
it has given me a working system again. In case somebody is looking for
a way to get a working system until 20.04 lands.

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

Title:
  nautilus hangs on file delete

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

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

[Bug 1850001] Re: nautilus hangs on file delete

2020-02-16 Thread Nico Rikken
I too have this issue. I just upgraded from 18.04 LTS to 19.10 and
Nautilus starts fine, finishes the check, but I cannot initiate any file
commands like copy, move or delete. Nautilus doesn't respond and GNOME
serves the pop-up to kill Nautilus. Pressing the 'waiting' option
repeatedly doesn't solve it.

Running it from the commandline, I see some widget errors when trying to
execute a command:


$ nautilus
G
(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:52.377: 
gtk_widget_get_mapped: assertion 'GTK_IS_WIDGET (widget)' failed

(org.gnome.Nautilus:23240): Gdk-CRITICAL **: 21:55:52.377:
gdk_window_is_visible: assertion 'GDK_IS_WINDOW (window)' failed

(org.gnome.Nautilus:23240): Gdk-CRITICAL **: 21:55:52.377:
gdk_window_show_internal: assertion 'GDK_IS_WINDOW (window)' failed

(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:52.377:
gtk_widget_set_opacity: assertion 'GTK_IS_WIDGET (widget)' failed

(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:52.377:
gtk_widget_queue_draw: assertion 'GTK_IS_WIDGET (widget)' failed

(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:54.380:
gtk_widget_get_mapped: assertion 'GTK_IS_WIDGET (widget)' failed

(org.gnome.Nautilus:23240): Gdk-CRITICAL **: 21:55:54.380:
gdk_window_is_visible: assertion 'GDK_IS_WINDOW (window)' failed

(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:54.380:
gtk_widget_set_opacity: assertion 'GTK_IS_WIDGET (widget)' failed

(org.gnome.Nautilus:23240): Gtk-CRITICAL **: 21:55:54.380:
gtk_widget_queue_draw: assertion 'GTK_IS_WIDGET (widget)' failed


It seems this bug has been reported upstream too, but is ignored as the
version is too old https://gitlab.gnome.org/GNOME/nautilus/issues/1218


I cannot find an easy answer in the logs that points to a specific problem.

I can successfully do the file operations from the command line using
mv, cp and rm, so it is no permission issue.

I'm now in the process of installing Nautilus from Flathub gnome-
nightly, hopefully that will give me back a working system. Because even
though I did a nice upgrade using `sudo do-release-upgrade` it feels
like I have a broken system now.

Is there a way I can get more debugging from Nautilus?

** Bug watch added: gitlab.gnome.org/GNOME/nautilus/issues #1218
   https://gitlab.gnome.org/GNOME/nautilus/issues/1218

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

Title:
  nautilus hangs on file delete

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

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

[Bug 1858092] Re: Network Manager not saving OpenVPN password

2020-02-13 Thread Nico R
Can confirm that, after updating from the official repositories (Kubuntu
19.10), saving passwords "for this user only" works as intended again.
Thanks!

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

Title:
  Network Manager not saving OpenVPN password

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

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

[Bug 1833281] Re: System freeze when memory is put on SWAP in Linux >4.10.x

2020-02-12 Thread Nico R
Can confirm this on Kubuntu 19.10 on a Core i5-4310U. My RAM is fairly
big enough for what I'm doing everyday, but as soon as the tiniest
swapping occurs, it renders the machine quite unusable - stuttering
window animations, stuttering/hanging mouse cursor, often for 1-2
minutes. As I can see, the bug is already marked as confirmed, so I just
want to put this for the record.

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

Title:
  System freeze when memory is put on SWAP in Linux >4.10.x

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

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

[Bug 1858092] Re: Network Manager not saving OpenVPN password

2020-02-10 Thread Nico R
Is there an estimation when this will go from proposed to release? I'm
working around it by looking up the connections' UID in the Network-
Manager configuration and manually adding the corresponding entries in
KWallet as of now..

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

Title:
  Network Manager not saving OpenVPN password

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

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

[Bug 1764417] Re: Unrecoverable failure in required component org.gnome.SettingsDaemon.Color.desktop

2019-11-29 Thread nico
Same bug ('org.gnome.SettingsDaemon.Color.desktop' failed to register)
for me, but no NVIDIA card involved :

VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen
Core processor Graphics Controller (rev 09)

I'm using Ubuntu 18.04.3, and it happens randomly, but only since a few
weeks...

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

Title:
  Unrecoverable failure in required component
  org.gnome.SettingsDaemon.Color.desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1764417/+subscriptions

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

[Bug 1851475] [NEW] aborting without informative error message

2019-11-06 Thread Nico Schlömer
Public bug reported:

I'm trying to upgrade from 19.10 to 20.04 (devel). Unfortunately, the 
do-release-upgrade process aborts after "Calculating the changes" without 
saying why:
```
sudo do-release-upgrade -d
```
```
Checking for a new Ubuntu release
Get:1 Upgrade tool signature [1,554 B]  
 
Get:2 Upgrade tool [1,334 kB]   
 
Fetched 1,335 kB in 0s (0 B/s)  
 
authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg' 
extracting 'focal.tar.gz'

Reading cache

Checking package manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Hit http://de.archive.ubuntu.com/ubuntu eoan InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-updates InRelease  
 
Ign http://dl.google.com/linux/chrome/deb stable InRelease  
 
Hit http://ppa.launchpad.net/nschloe/inkscape-backports/ubuntu eoan InRelease   
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-backports InRelease
 
Hit http://dl.google.com/linux/chrome/deb stable Release
 
Hit http://ppa.launchpad.net/nschloe/mmg-test/ubuntu eoan InRelease 
 
Hit http://ppa.launchpad.net/nschloe/trilinos-backports/ubuntu eoan InRelease   
 
Ign https://dl.bintray.com/etcher/debian stable InRelease   
 
Get:1 https://dl.bintray.com/etcher/debian stable Release [3,674 B] 
 
Fetched 3,674 B in 0s (0 B/s)   
 
Reading package lists... Done
Building dependency tree  
Reading state information... Done

Updating repository information

Third party sources disabled

Some third party entries in your sources.list were disabled. You can 
re-enable them after the upgrade with the 'software-properties' tool 
or your package manager. 

To continue please press [ENTER]

Hit http://de.archive.ubuntu.com/ubuntu eoan InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-updates InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-backports InRelease
 
Fetched 0 B in 0s (0 B/s)   
 

Checking package manager
Reading package lists... Done
Building dependency tree  
Reading state information... Done

Calculating the changes

Calculating the changes

Restoring original system state

Aborting
Reading package lists... Done
Building dependency tree  
Reading state information... Done
```

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

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

Title:
  aborting without informative error message

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

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

[Bug 1735363] Re: inkscape: Port to Python 3

2019-09-10 Thread Nico Schlömer
> However the idea for Inkscape (at least the "LTS" branch 0.92.x) is to
support both, python2 and python3,

I'm wondering if this might be a mistake. After all, Python 2 will be
unsupported by upstream in a few months time. Not even security bugs
will be fixed, so using it is dangerous from then on. By providing
support for Python 2, you're basically asserting to the Inkscape user
that everything is fine and she can keep going, but that isn't the case.
Everybody should feel a great deal of pressure for upgrading now! That's
why many projects have pledged to remove Python 2 support before the end
of the year [1]. I maintain a bunch of more or less popular Python
projects, and have purposefully removed Python 2 support from all of
them. That itches some users but, again, I think this is a good thing.
The more people a pressured into upgrading, the better.


[1] https://python3statement.org/

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

Title:
  inkscape: Port to Python 3

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

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

[Bug 1836659] Re: Ubuntu 18.04's ibus package breaks password fields in Firefox again

2019-07-31 Thread Nico Dizagn
@dimitri : yes I confirm the bug is resolved, the password field in
firefox quantum 68.0.1 is now OK in bionic :) !

That was for me the only problem, But I don't now if there is other bug
fixes in the patch  3.28.0-1ubuntu1.4 that you want me to check ?

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

Title:
  Ubuntu 18.04's ibus package breaks password fields in Firefox again

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-flashback/+bug/1836659/+subscriptions

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

[Bug 1836659] Re: Ubuntu 18.04's ibus package breaks password fields in Firefox again

2019-07-31 Thread Nico Dizagn
Hello,

I installed bionic-proposed/gnome-flashback and bionic-proposed/gnome-
flashback-common on my laptop Ubuntu 18.04 with success.

Previous version from stable channel with bug password focus on firefox:
ii  gnome-flashback3.28.0-1ubuntu1.3
amd64helper application for the GNOME Flashback session
ii  gnome-flashback-common 3.28.0-1ubuntu1.3
all  GNOME Flashback helper application - common data files

Installed from bionic-proposed 
ii  gnome-flashback3.28.0-1ubuntu1.4
amd64helper application for the GNOME Flashback session
ii  gnome-flashback-common 3.28.0-1ubuntu1.4
all  GNOME Flashback helper application - common data files

May I help more ? do you need others informations ?

I do not install gnome-session-flashback, is it ok ?

Tks

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

Title:
  Ubuntu 18.04's ibus package breaks password fields in Firefox again

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-flashback/+bug/1836659/+subscriptions

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

[Bug 1823516] Re: Nvidia driver installed but X apps are using software rendering (LLVMpipe) in Wayland sessions

2019-05-20 Thread Nico Jakob
Is there any update on this?

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

Title:
  Nvidia driver installed but X apps are using software rendering
  (LLVMpipe) in Wayland sessions

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

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

[Bug 1825497] Re: flash player does not work in chromium

2019-04-23 Thread nico
i've only installed the package adobe-flashplugin (it worked in both
browsers until 20th april, now only works on firefox) from the canonical
software repo.   google-chrome (not chromium) it's supposed to have
integrated flash, but it didn't work either.

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

Title:
  flash player does not work in chromium

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

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

[Bug 1825497] Re: flash player does not work in firefox or chromium

2019-04-23 Thread nico
https://bbs.archlinux.org/viewtopic.php?id=245855  can be this??

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

Title:
  flash player does not work in firefox or chromium

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

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

[Bug 1825497] Re: flash player does not work in firefox or chromium

2019-04-20 Thread nico
in my case it works in firefox, but in chrome and chromium doesn't

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

Title:
  flash player does not work in firefox or chromium

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

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

[Bug 1823516] Re: Nvidia-418 installed but apps are using LLVMpipe/Mesa in Wayland sessions

2019-04-10 Thread Nico Jakob
Is there anything one can do to help resolving this issue?

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

Title:
  Nvidia-418 installed but apps are using LLVMpipe/Mesa in Wayland
  sessions

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

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

[Bug 1664844] Re: No distinction between link-up and link-down interfaces

2019-04-10 Thread Nico Orrù
I need this too. How do I vote?

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

Title:
  No distinction between link-up and link-down interfaces

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

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

[Bug 1822754] Re: Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

2019-04-05 Thread Nico Jakob
** Description changed:

  To try the new support for EGLStreams and Wayland I have directly tried some 
programs to see how this performs. Unfortunately there are multiple problems: 
Chrome does not use GPU hardware acceleration anymore (I get huge CPU spikes 
while scrolling on normal pages).
- Also the automatic resizing when a program is moved from one display to 
another only works with system applications such as settings, terminal etc. The 
programs then are still scaled 2x on the Non-HIDPI screen.
+ Also the automatic resizing when a program is moved from one display to 
another only works with system applications such as settings, terminal etc. The 
other programs are scaled 2x on the Non-HIDPI screen.
  I am running the latest NVIDIA Drivers with 418.56.
  Is there a fix for this behaviour?
  
- Best 
+ Best
  Nicolas
  
  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-8.9-generic 5.0.1
  Uname: Linux 5.0.0-8-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Ist ein Verzeichnis: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
-  NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
-  GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-3ubuntu1)
+  NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
+  GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-3ubuntu1)
  ApportVersion: 2.20.10-0ubuntu23
  Architecture: amd64
  BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Apr  2 11:25:53 2019
  DistUpgraded: 2019-03-31 23:11:06,205 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistroCodename: disco
  DistroVariant: ubuntu
  DkmsStatus:
-  nvidia, 418.56, 5.0.0-8-generic, x86_64: installed
-  rtl8814au, 4.3.21, 4.18.0-16-generic, x86_64: installed
-  rtl8814au, 4.3.21, 5.0.0-8-generic, x86_64: installed
+  nvidia, 418.56, 5.0.0-8-generic, x86_64: installed
+  rtl8814au, 4.3.21, 4.18.0-16-generic, x86_64: installed
+  rtl8814au, 4.3.21, 5.0.0-8-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  NVIDIA Corporation GP104 [GeForce GTX 1070 Ti] [10de:1b82] (rev a1) (prog-if 
00 [VGA controller])
-Subsystem: Micro-Star International Co., Ltd. [MSI] GP104 [GeForce GTX 
1070 Ti] [1462:c303]
+  NVIDIA Corporation GP104 [GeForce GTX 1070 Ti] [10de:1b82] (rev a1) (prog-if 
00 [VGA controller])
+    Subsystem: Micro-Star International Co., Ltd. [MSI] GP104 [GeForce GTX 
1070 Ti] [1462:c303]
  InstallationDate: Installed on 2019-01-04 (87 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: MSI MS-7976
  ProcEnviron:
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=de_DE.UTF-8
-  SHELL=/usr/bin/zsh
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=de_DE.UTF-8
+  SHELL=/usr/bin/zsh
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.0.0-8-generic 
root=UUID=367ba2c7-63e9-46a2-9d19-aa86d3dcc21d ro quiet splash 
nvidia-drm.modeset=1 vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to disco on 2019-03-31 (1 days ago)
  dmi.bios.date: 04/25/2017
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.I0
  dmi.board.asset.tag: Default string
  dmi.board.name: Z170A GAMING M7 (MS-7976)
  dmi.board.vendor: MSI
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.I0:bd04/25/2017:svnMSI:pnMS-7976:pvr1.0:rvnMSI:rnZ170AGAMINGM7(MS-7976):rvr1.0:cvnMSI:ct3:cvr1.0:
  dmi.product.family: Default string
  dmi.product.name: MS-7976
  dmi.product.sku: Default string
  dmi.product.version: 1.0
  dmi.sys.vendor: MSI
  nvidia-settings:
-  ERROR: Unable to find display on any available system
-  
-  
-  ERROR: Unable to find display on any available system
+  ERROR: Unable to find display on any available system
+ 
+  ERROR: Unable to find display on any available system
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.97-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.1-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.1-1ubuntu1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

[Bug 1822754] Re: Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

2019-04-05 Thread Nico Jakob
And funny sidenode which may be also relevant:
nvidia-settings gives me an empty program.

** Attachment added: "Bildschirmfoto vom 2019-04-05 13-22-58.png"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1822754/+attachment/5253049/+files/Bildschirmfoto%20vom%202019-04-05%2013-22-58.png

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

Title:
  Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

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

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

[Bug 1822754] Re: Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

2019-04-05 Thread Nico Jakob
Forgot to mention: I did of course restart after installing the new
mutter packages.

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

Title:
  Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

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

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

[Bug 1822754] Re: Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

2019-04-05 Thread Nico Jakob
Ok thank you and sorry for the late reply I caught a cold over the last
days:

This is after installing the mutter builds:
➜ dpkg -l | grep 'mutter'   
ii  gir1.2-mutter-4:amd64  3.32.0-1 
amd64GObject introspection data for Mutter
ii  libmutter-4-0:amd643.32.0-1 
amd64window manager library from the Mutter window manager
ii  libmutter-4-0-dbgsym:amd64 3.32.0-1 
amd64debug symbols for libmutter-4-0
ii  libmutter-4-dev:amd64  3.32.0-1 
amd64Development files for the Mutter window manager
ii  mutter 3.32.0-1 
amd64lightweight GTK+ window manager
ii  mutter-common  3.32.0-1 
all  shared files for the Mutter window manager
ii  mutter-dbgsym  3.32.0-1 
amd64debug symbols for mutter

Unfortunately Chrome,Firefox and other programs seem to run only
software accelerated and do not adjust their scaling for example if
moved from screen A (HiDPI) to screen B (low-DPI).


** Attachment added: "Here is the glxinfo.txt run during opened Chrome with one 
Window on each screen opened, so one is correctly scaled (on HIDPI) and one 
twice as large on screen 2"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1822754/+attachment/5253043/+files/glxinfo.txt

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

Title:
  Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

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

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

[Bug 1822996] [NEW] Vrde property "TCP/Ports" is ignored in IPV6

2019-04-03 Thread Nico Orrù
Public bug reported:

I have multiple VMs on a host, I need a separate VNC port for the
consoles.

Unfortunately, I can't set TCP ports for ipv6, as the settings appears
to be ignored.

$ sudo su - vbox -c 'VBoxManage modifyvm test_machine_1 --vrdeproperty 
"TCP/Address=0.0.0.0"'
$ sudo su - vbox -c 'VBoxManage modifyvm test_machine_1 --vrdeproperty 
"TCP/Ports=5901"'
$ sudo systemctl start vboxvmservice@test_machine_1.service
$ sudo systemctl status vboxvmservice@test_machine_1.service
● vboxvmservice@test_machine_1.service - VBox Virtual Machine test_machine_1 
Service
   Loaded: loaded (/etc/systemd/system/vboxvmservice@test_machine_1.service; 
enabled; vendor preset: enabled)
   Active: active (running) since Wed 2019-04-03 11:39:05 UTC; 4s ago
  Process: 7195 ExecStop=/usr/bin/VBoxManage controlvm test_machine_1 savestate 
(code=exited, status=0/SUCCESS)
 Main PID: 7521 (VBoxHeadless)
Tasks: 37 (limit: 4915)
   CGroup: 
/system.slice/system-vboxvmservice.slice/vboxvmservice@test_machine_1.service
   ├─7521 /usr/lib/virtualbox/VBoxHeadless -s test_machine_1
   ├─7531 /usr/lib/virtualbox/VBoxXPCOMIPCD
   └─7536 /usr/lib/virtualbox/VBoxSVC --auto-shutdown

Apr 03 11:39:05 systemd[1]: Started VBox Virtual Machine test_machine_1 Service.
Apr 03 11:39:05 VBoxHeadless[7521]: 03/04/2019 11:39:05 Listening for VNC 
connections on TCP port 5901
Apr 03 11:39:05 VBoxHeadless[7521]: 03/04/2019 11:39:05 Listening for VNC 
connections on TCP6 port 5900

$ sudo su - vbox -c 'VBoxManage modifyvm test_machine_2 --vrdeproperty 
"TCP/Address=0.0.0.0"'
$ sudo su - vbox -c 'VBoxManage modifyvm test_machine_2 --vrdeproperty 
"TCP/Ports=5902"'
$ sudo systemctl start vboxvmservice@test_machine_2.service
$ sudo systemctl status vboxvmservice@test_machine_2.service
● vboxvmservice@test_machine_2.service - VBox Virtual Machine test_machine_2 
Service
   Loaded: loaded (/etc/systemd/system/vboxvmservice@test_machine_2.service; 
enabled; vendor preset: enabled)
   Active: active (running) since Wed 2019-04-03 11:59:05 UTC; 4s ago
  Process: 7216 ExecStop=/usr/bin/VBoxManage controlvm test_machine_2 savestate 
(code=exited, status=0/SUCCESS)
 Main PID: 9073 (VBoxHeadless)
Tasks: 24 (limit: 4915)
   CGroup: 
/system.slice/system-vboxvmservice.slice/vboxvmservice@test_machine_2.service
   └─9073 /usr/lib/virtualbox/VBoxHeadless -s test_machine_2

Apr 03 11:59:05 systemd[1]: Started VBox Virtual Machine test_machine_2 Service.
Apr 03 11:59:05 VBoxHeadless[9073]: 03/04/2019 11:59:05 Listening for VNC 
connections on TCP port 5902
Apr 03 11:59:05 VBoxHeadless[9073]: 03/04/2019 11:59:05 rfbListenOnTCP6Port: 
error in bind IPv6 socket: Address already in use

I have tried to change `VNCPort4` `VNCPort6` `TCP6/Ports` properties to
no avail.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: virtualbox 5.2.18-dfsg-2~ubuntu18.04.3
ProcVersionSignature: Ubuntu 4.15.0-46.49-generic 4.15.18
Uname: Linux 4.15.0-46-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
Date: Wed Apr  3 11:41:42 2019
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: virtualbox
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.default.virtualbox: 2019-03-27T15:50:37.875303

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


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

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

Title:
  Vrde property "TCP/Ports" is ignored in IPV6

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

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

[Bug 1822754] [NEW] Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

2019-04-02 Thread Nico Jakob
Public bug reported:

To try the new support for EGLStreams and Wayland I have directly tried some 
programs to see how this performs. Unfortunately there are multiple problems: 
Chrome does not use GPU hardware acceleration anymore (I get huge CPU spikes 
while scrolling on normal pages).
Also the automatic resizing when a program is moved from one display to another 
only works with system applications such as settings, terminal etc. The 
programs then are still scaled 2x on the Non-HIDPI screen.
I am running the latest NVIDIA Drivers with 418.56.
Is there a fix for this behaviour?

Best 
Nicolas

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: xorg 1:7.7+19ubuntu12
ProcVersionSignature: Ubuntu 5.0.0-8.9-generic 5.0.1
Uname: Linux 5.0.0-8-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Ist ein Verzeichnis: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
 GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-3ubuntu1)
ApportVersion: 2.20.10-0ubuntu23
Architecture: amd64
BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Tue Apr  2 11:25:53 2019
DistUpgraded: 2019-03-31 23:11:06,205 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
DistroCodename: disco
DistroVariant: ubuntu
DkmsStatus:
 nvidia, 418.56, 5.0.0-8-generic, x86_64: installed
 rtl8814au, 4.3.21, 4.18.0-16-generic, x86_64: installed
 rtl8814au, 4.3.21, 5.0.0-8-generic, x86_64: installed
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GP104 [GeForce GTX 1070 Ti] [10de:1b82] (rev a1) (prog-if 
00 [VGA controller])
   Subsystem: Micro-Star International Co., Ltd. [MSI] GP104 [GeForce GTX 1070 
Ti] [1462:c303]
InstallationDate: Installed on 2019-01-04 (87 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
MachineType: MSI MS-7976
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/usr/bin/zsh
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.0.0-8-generic 
root=UUID=367ba2c7-63e9-46a2-9d19-aa86d3dcc21d ro quiet splash 
nvidia-drm.modeset=1 vt.handoff=1
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to disco on 2019-03-31 (1 days ago)
dmi.bios.date: 04/25/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.I0
dmi.board.asset.tag: Default string
dmi.board.name: Z170A GAMING M7 (MS-7976)
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.I0:bd04/25/2017:svnMSI:pnMS-7976:pvr1.0:rvnMSI:rnZ170AGAMINGM7(MS-7976):rvr1.0:cvnMSI:ct3:cvr1.0:
dmi.product.family: Default string
dmi.product.name: MS-7976
dmi.product.sku: Default string
dmi.product.version: 1.0
dmi.sys.vendor: MSI
nvidia-settings:
 ERROR: Unable to find display on any available system
 
 
 ERROR: Unable to find display on any available system
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.97-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.1-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.1-1ubuntu1
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug disco performance possible-manual-nvidia-install 
ubuntu wayland-session

** Package changed: xorg (Ubuntu) => wayland (Ubuntu)

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

Title:
  Chrome and other programs not resizing on HiDPI and Non-Hidpi setup

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

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

[Bug 1818892] [NEW] update to newer version

2019-03-06 Thread Nico Schlömer
Public bug reported:

The fact that Ubuntu only provides and older version of wheels leads to
funny bugs downstream, e.g., [1]. Debian already has 0.32.3 [2]; please
update.


[1] https://github.com/pypa/warehouse/issues/5520
[2] https://packages.debian.org/sid/python3-wheel

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

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

Title:
  update to newer version

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

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

[Bug 1099537] Re: ubuntu-dev-scripts should be ported to Python 3

2019-03-05 Thread Nico Schlömer
@ddstreet Very nice!

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

Title:
  ubuntu-dev-scripts should be ported to Python 3

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

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

[Bug 1812454] [NEW] boot time takes very long time...don't know how to explane

2019-01-18 Thread Nico Bollaert
Public bug reported:

when i start up the computer it take a lot of time

if somebody can say how to make a report of the boot time and where to
send to

i'm not so experience in linux (my first steps ;))

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.29
ProcVersionSignature: Ubuntu 4.15.0-43.46-generic 4.15.18
Uname: Linux 4.15.0-43-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Fri Jan 18 23:55:10 2019
InstallationDate: Installed on 2019-01-13 (5 days ago)
InstallationMedia:
 
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=nl_BE:nl
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=nl_BE.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
Symptom: dist-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic dist-upgrade

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

Title:
  boot time takes very long time...don't know how to explane

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

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

[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2018-11-26 Thread Nico Timeo
I confirm that on 18.10 is impossible to copy large files / directories
from NAS via Samba Share. Everything works fine on Windows 10.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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

[Bug 1799961] [NEW] package nfs-kernel-server 1:1.3.4-2.1ubuntu5 failed to install/upgrade: installed nfs-kernel-server package pre-removal script subprocess returned error exit status 2

2018-10-25 Thread Nico Orrù
Public bug reported:

Reported by Ubuntu from the desktop.

Fresh install of 18.04.1 via debootstrap from chrooted 17.10 host.

Post-installation steps:

dpkg-getselection -> dpkg-setselection -> apt update-dselect

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: nfs-kernel-server 1:1.3.4-2.1ubuntu5
ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18
Uname: Linux 4.15.0-38-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.4
Architecture: amd64
Date: Tue Oct 23 15:35:27 2018
Df:
 
ErrorMessage: installed nfs-kernel-server package pre-removal script subprocess 
returned error exit status 2
Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.3ubuntu0.1
SourcePackage: nfs-utils
Title: package nfs-kernel-server 1:1.3.4-2.1ubuntu5 failed to install/upgrade: 
installed nfs-kernel-server package pre-removal script subprocess returned 
error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nfs-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package bionic

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

Title:
  package nfs-kernel-server 1:1.3.4-2.1ubuntu5 failed to
  install/upgrade: installed nfs-kernel-server package pre-removal
  script subprocess returned error exit status 2

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

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

[Bug 1722478] Re: Two-finger scrolling no longer works after resuming from suspend

2018-10-01 Thread Nico Schlömer
The problem is also present on the ThinkPad X280, worked around by
```
modprobe -r psmouse
modprobe psmouse
```

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

Title:
  Two-finger scrolling no longer works after resuming from suspend

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

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

[Bug 1792720] Re: RuntimeError: Error when importing mpi4py

2018-09-25 Thread Nico Schlömer
Closing, the issue was an outdated local mpi4py installation

** Changed in: dolfin (Ubuntu)
   Status: New => Invalid

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

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1792720] Re: RuntimeError: Error when importing mpi4py

2018-09-25 Thread Nico Schlömer
Weirdly enough, when doing `import dolfin` a second time, the error is
```
---
AttributeErrorTraceback (most recent call last)
 in ()
> 1 import dolfin

/usr/lib/python3/dist-packages/dolfin/__init__.py in ()
138 from .common.plotting import plot
139 
--> 140 from .fem.assembling import (assemble, assemble_system, 
assemble_multimesh,
141  SystemAssembler, assemble_local)
142 from .fem.form import Form

/usr/lib/python3/dist-packages/dolfin/fem/assembling.py in ()
 31 
 32 import ufl
---> 33 import dolfin.cpp as cpp
 34 from dolfin.fem.form import Form
 35 from dolfin import MPI

AttributeError: module 'dolfin' has no attribute 'cpp'
```

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

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1794235] [NEW] reportbug unusable

2018-09-25 Thread Nico Schlömer
Public bug reported:

See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=908087, please
upgrade to python3-pysimplesoap 1.16-2.1 from Debian.

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


** Tags: cosmic

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

Title:
  reportbug unusable

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

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

[Bug 1792720] [NEW] RuntimeError: Error when importing mpi4py

2018-09-15 Thread Nico Schlömer
Public bug reported:

On Ubuntu 18.10 (cosmic): Simply importing dolfin à la
```
python3 -c "import dolfin"
```
gives
```
ERROR: could not import mpi4py!
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/dolfin/__init__.py", line 140, in 

from .fem.assembling import (assemble, assemble_system, assemble_multimesh,
  File "/usr/lib/python3/dist-packages/dolfin/fem/assembling.py", line 34, in 

from dolfin.fem.form import Form
  File "/usr/lib/python3/dist-packages/dolfin/fem/form.py", line 12, in 
from dolfin.jit.jit import dolfin_pc, ffc_jit
  File "/usr/lib/python3/dist-packages/dolfin/jit/jit.py", line 121, in 
def compile_class(cpp_data, mpi_comm=MPI.comm_world):
RuntimeError: Error when importing mpi4py
```
Importing mpi4py works well:
```
python3 -c "import mpi4py"
```

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

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

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1786009] [NEW] cosmic: openmpi broken (with fix in Debian)

2018-08-08 Thread Nico Schlömer
Public bug reported:

Right now, openmpi is broken in cosmic (with 3.1.1.real-1). Effects:
Things like gmsh (which uses openmpi) don't even start.This is due to a
bug known and fixed in Debian [1]. The updated version is available [2],
but hasn't made it into cosmic yet. Any idea of when this will happen?

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903561
[2] https://launchpad.net/ubuntu/+source/openmpi/3.1.1.real-4

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

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

Title:
  cosmic: openmpi broken (with fix in Debian)

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

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

Re: [Bug 1778656] Re: Installer crashes due to bootloader not installing.

2018-07-02 Thread Nico
Thanks, Philip, I'll investigate this based on your comments and get back
to you.

Nico

On Sun, Jul 1, 2018 at 12:15 PM Phillip Susi  wrote:

> Your disk is currently partitioned to boot in bios mode, but you booted
> the installer in EFI mode. You either need to boot the installer in bios
> mode, or partition the disk using GPT and set up an EFI system partition
> to install in EFI mode. This will be done for you if you choose the "use
> entire disk" guided install option.
>
> ** Changed in: grub-installer (Ubuntu)
>Status: New => Invalid
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1778656
>
> Title:
>   Installer crashes due to bootloader not installing.
>
> Status in grub-installer package in Ubuntu:
>   Invalid
>
> Bug description:
>   I've been trying to get Ubuntu 18.04 installed no the laptop. I have
>   4x drives and I'm installing in /dev/sde which is a 250Gb SSD. Setup
>   custom BRTFS partitions, 100Gb (/), 100Gb (home), 8Gb (Swap), free
>   space for SSD over-provisioning. Got a "cannot install bootloader on
>   /dev/sde", tried changing to /dev/sda, sda1, etc but the installer
>   didn't allow to cancel or change anything.
>
>   In this last attempt I've let the installer erase the entire disk and
>   choose it's own partition setup using LVM. Now there is a different
>   error.
>
>   This same laptop has been running Centos 7 and Mint for several years
>   without a problem.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 18.04
>   Package: ubiquity 18.04.14 [modified:
> lib/partman/automatically_partition/question]
>   ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
>   Uname: Linux 4.15.0-20-generic x86_64
>   ApportVersion: 2.20.9-0ubuntu7
>   Architecture: amd64
>   CasperVersion: 1.394
>   Date: Tue Jun 26 00:33:58 2018
>   InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz
> file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity acpi=off quiet
> splash ---
>   LiveMediaBuild: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64
> (20180426)
>   SourcePackage: grub-installer
>   UpgradeStatus: No upgrade log present (probably fresh install)
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1778656/+subscriptions
>

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

Title:
  Installer crashes due to bootloader not installing.

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

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

[Bug 1778656] [NEW] Installer crashes due to bootloader not installing.

2018-06-26 Thread Nico
Public bug reported:

I've been trying to get Ubuntu 18.04 installed no the laptop. I have 4x
drives and I'm installing in /dev/sde which is a 250Gb SSD. Setup custom
BRTFS partitions, 100Gb (/), 100Gb (home), 8Gb (Swap), free space for
SSD over-provisioning. Got a "cannot install bootloader on /dev/sde",
tried changing to /dev/sda, sda1, etc but the installer didn't allow
to cancel or change anything.

In this last attempt I've let the installer erase the entire disk and
choose it's own partition setup using LVM. Now there is a different
error.

This same laptop has been running Centos 7 and Mint for several years
without a problem.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
Uname: Linux 4.15.0-20-generic x86_64
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
CasperVersion: 1.394
Date: Tue Jun 26 00:33:58 2018
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity acpi=off quiet splash ---
LiveMediaBuild: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic ubiquity-18.04.14 ubuntu

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

Title:
  Installer crashes due to bootloader not installing.

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

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

[Bug 1773345] [NEW] package thunderbird-locale-nl 1:52.7.0+build1-0ubuntu1 failed to install/upgrade: kan uitgepakte gegevens voor './usr/lib/thunderbird-addons/extensions/langpack...@thunderbird.mozi

2018-05-25 Thread Nico Berg
Public bug reported:

I don't know

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: thunderbird-locale-nl 1:52.7.0+build1-0ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
Uname: Linux 4.15.0-22-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.9-0ubuntu7
AptOrdering:
 thunderbird-locale-nl:amd64: Install
 thunderbird-locale-en:amd64: Install
 thunderbird:amd64: Install
 thunderbird-gnome-support:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nico   1340 F pulseaudio
BuildID: 20180522092033
Channel: Unavailable
Date: Fri May 25 12:36:14 2018
ErrorMessage: kan uitgepakte gegevens voor 
'./usr/lib/thunderbird-addons/extensions/langpack...@thunderbird.mozilla.org.xpi'
 niet kopiëren naar 
'/usr/lib/thunderbird-addons/extensions/langpack...@thunderbird.mozilla.org.xpi.dpkg-new':
 onverwacht einde van bestand of stroom
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2018-05-14 (10 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
IpRoute:
 default via 192.168.0.1 dev eno1 proto dhcp metric 100 
 169.254.0.0/16 dev eno1 scope link metric 1000 
 192.168.0.0/24 dev eno1 proto kernel scope link src 192.168.0.123 metric 100
NoProfiles: True
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.1
RunningIncompatibleAddons: False
SourcePackage: thunderbird
Title: package thunderbird-locale-nl 1:52.7.0+build1-0ubuntu1 failed to 
install/upgrade: kan uitgepakte gegevens voor 
'./usr/lib/thunderbird-addons/extensions/langpack...@thunderbird.mozilla.org.xpi'
 niet kopiëren naar 
'/usr/lib/thunderbird-addons/extensions/langpack...@thunderbird.mozilla.org.xpi.dpkg-new':
 onverwacht einde van bestand of stroom
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/18/2017
dmi.bios.vendor: Intel Corp.
dmi.bios.version: BNKBL357.86A.0047.2017.0518.1824
dmi.board.name: NUC7i5BNB
dmi.board.vendor: Intel Corporation
dmi.board.version: J31144-305
dmi.chassis.type: 3
dmi.chassis.vendor: Intel Corporation
dmi.chassis.version: 2
dmi.modalias: 
dmi:bvnIntelCorp.:bvrBNKBL357.86A.0047.2017.0518.1824:bd05/18/2017:svnIntelCorporation:pnNUC7i5BNH:pvrJ31169-306:rvnIntelCorporation:rnNUC7i5BNB:rvrJ31144-305:cvnIntelCorporation:ct3:cvr2:
dmi.product.family: Intel NUC
dmi.product.name: NUC7i5BNH
dmi.product.version: J31169-306
dmi.sys.vendor: Intel Corporation

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


** Tags: amd64 apport-package bionic

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

Title:
  package thunderbird-locale-nl 1:52.7.0+build1-0ubuntu1 failed to
  install/upgrade: kan uitgepakte gegevens voor './usr/lib/thunderbird-
  addons/extensions/langpack...@thunderbird.mozilla.org.xpi' niet
  kopiëren naar '/usr/lib/thunderbird-addons/extensions/langpack-
  n...@thunderbird.mozilla.org.xpi.dpkg-new': onverwacht einde van bestand
  of stroom

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

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

[Bug 1760128] Re: package avahi-dnsconfd 0.6.32~rc+dfsg-1ubuntu2 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2018-04-05 Thread Nico Machus
Receiving the same error on arm chips as well
Raspberry Pi 3 running Ubuntu 16.04.4 Xenial w/ MATE
Kernel: 4.14.32-v7+

pickett@pickett-desktop:~$ sudo apt full-upgrade
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  avahi-dnsconfd
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/13.5 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
(Reading database ... 177868 files and directories currently installed.)
Preparing to unpack .../avahi-dnsconfd_0.6.32~rc+dfsg-1ubuntu2.1_armhf.deb ...
Job for avahi-daemon.socket canceled.
dpkg: warning: subprocess old pre-removal script returned error exit status 1
dpkg: trying script from the new package instead ...
Job for avahi-daemon.socket canceled.
dpkg: error processing archive 
/var/cache/apt/archives/avahi-dnsconfd_0.6.32~rc+dfsg-1ubuntu2.1_armhf.deb 
(--unpack):
 subprocess new pre-removal script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/avahi-dnsconfd_0.6.32~rc+dfsg-1ubuntu2.1_armhf.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  package avahi-dnsconfd 0.6.32~rc+dfsg-1ubuntu2 failed to
  install/upgrade: subprocess new pre-removal script returned error exit
  status 1

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

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

[Bug 1754274] [NEW] ubuntu-desktop is removed while applying security upgrade

2018-03-08 Thread Nico T
Public bug reported:

Hello,

I use to apply only security upgrade using the update-manager popup
(therefore there are always remaining a bunch of minor upgrades that are
not critical and I choose not to apply).

This morning I applied the security updates. Unfortunately it ended up
removing ubuntu-desktop:amd64 package leaving the ubuntu installation
broken.


Here is the extract of the apt log :

```
Start-Date: 2018-03-08  07:04:43
Commandline: aptdaemon role='role-commit-packages' sender=':1.1271'
Upgrade: unity-schemas:amd64 (7.4.5+16.04.20171201.3, 
7.4.5+16.04.20180221-0ubuntu1), compiz-plugins-default:amd64 
(1:0.9.12.3+16.04.20171116-0ub
untu1, 1:0.9.12.3+16.04.20180221-0ubuntu1), libdecoration0:amd64 
(1:0.9.12.3+16.04.20171116-0ubuntu1, 1:0.9.12.3+16.04.20180221-0ubuntu1), compiz
config-settings-manager:amd64 (1:0.9.12.2+16.04.20160823-0ubuntu1, 
1:0.9.12.3+16.04.20180221-0ubuntu1), python:amd64 (2.7.11-1, 2.7.12-1~16.04), 
libpq5:amd64 (9.5.11-0ubuntu0.16.04, 9.5.12-0ubuntu0.16.04), 
libpython-stdlib:amd64 (2.7.11-1, 2.7.12-1~16.04), unity-services:amd64 
(7.4.5+16.04
.20171201.3, 7.4.5+16.04.20180221-0ubuntu1), compiz-gnome:amd64 
(1:0.9.12.3+16.04.20171116-0ubuntu1, 1:0.9.12.3+16.04.20180221-0ubuntu1), 
libcomp
izconfig0:amd64 (1:0.9.12.3+16.04.20171116-0ubuntu1, 
1:0.9.12.3+16.04.20180221-0ubuntu1), code:amd64 (1.20.1-1518535978, 
1.21.0-1520420608), pyth
on-compizconfig:amd64 (1:0.9.12.2+16.04.20160823-0ubuntu1, 
1:0.9.12.3+16.04.20180221-0ubuntu1), compiz-core:amd64 
(1:0.9.12.3+16.04.20171116-0ubu
ntu1, 1:0.9.12.3+16.04.20180221-0ubuntu1), python-minimal:amd64 (2.7.11-1, 
2.7.12-1~16.04)
Remove: ubuntu-desktop:amd64 (1.361.1), unity:amd64 (7.4.5+16.04.20171201.3), 
session-shortcuts:amd64 (1.2ubuntu0.16.04.1), libunity-core-6.0-9:a
md64 (7.4.5+16.04.20171201.3), unity-tweak-tool:amd64 (0.0.7ubuntu2)
End-Date: 2018-03-08  07:05:20
```

To repair it I had to manually install the package :

```
Start-Date: 2018-03-08  09:30:05
Commandline: apt install ubuntu-desktop
Requested-By: thm (1000)
Install: unity-schemas:amd64 (7.4.5+16.04.20180221-0ubuntu1, automatic), 
ubuntu-desktop:amd64 (1.361.1), unity:amd64 (7.4.5+16.04.20180221-0ubuntu1, 
automatic), deja-dup:amd64 (34.2-0ubuntu1.1, automatic), 
session-shortcuts:amd64 (1.2ubuntu0.16.04.1, automatic), 
libunity-core-6.0-9:amd64 (7.4.5+16.04.20180221-0ubuntu1, automatic), 
gnome-screensaver:amd64 (3.6.1-7ubuntu4, automatic)
End-Date: 2018-03-08  09:30:17

```

Maybe there is a package dependency problem here ?

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "lsb_release.txt"
   
https://bugs.launchpad.net/bugs/1754274/+attachment/5072733/+files/lsb_release.txt

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

Title:
  ubuntu-desktop is removed while applying security upgrade

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

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

[Bug 1754274] Re: ubuntu-desktop is removed while applying security upgrade

2018-03-08 Thread Nico T
apt history

** Attachment added: "apt_history.log"
   
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/1754274/+attachment/5072734/+files/apt_history.log

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

Title:
  ubuntu-desktop is removed while applying security upgrade

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

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

Re: [Bug 1698688] Re: DNS resolution stopped working suddenly

2018-03-01 Thread Nico Orrù
Hi Simon,

I can't verify whether this bug is still open as I've since adopted a
different distribution. Thanks anyway!

On 1 March 2018 at 22:02, Simon Quigley <tsimo...@ubuntu.com> wrote:

> Marking as Invalid because the release is EOL is not correct. Marking as
> Incomplete. Also, 18.04 is (at the time of writing) still in development,
> and you should expect some breakage.
> https://wiki.ubuntu.com/Bugs/Responses#Release_has_reached_
> End_of_Life_.28EOL.29
>
> Reporter, is this still present on 17.10?
>
> ** Changed in: systemd (Ubuntu)
>Status: Invalid => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1698688
>
> Title:
>   DNS resolution stopped working suddenly
>
> Status in systemd package in Ubuntu:
>   Incomplete
>
> Bug description:
>   DNS resolution stopped working all of a sudden.
>
>   This is the only clue I've got, not sure what it means.
>
>   systemctl restart network-manager appears to fix the issue.
>
>
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopping User Manager for
> UID 113...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping D-Bus User
> Message Bus...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target
> Default.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping Virtual
> filesystem service...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped D-Bus User
> Message Bus.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped Virtual
> filesystem service.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Basic
> System.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target
> Sockets.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Paths.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Timers.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Closed D-Bus User
> Message Bus Socket.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Reached target
> Shutdown.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Starting Exit the
> Session...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Received SIGRTMIN+24
> from PID 20775 (kill).
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19919]:
> pam_unix(systemd-user:session): session closed for user lightdm
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: user@113.service:
> Killing process 20775 (kill) with signal SIGKILL.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopped User Manager for
> UID 113.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Removed slice User Slice
> of lightdm.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 16.10
>   Package: systemd 231-9ubuntu4
>   ProcVersionSignature: Ubuntu 4.8.0-52.55-lowlatency 4.8.17
>   Uname: Linux 4.8.0-52-lowlatency x86_64
>   ApportVersion: 2.20.3-0ubuntu8.3
>   Architecture: amd64
>   CurrentDesktop: XFCE
>   Date: Sun Jun 18 22:03:40 2017
>   InstallationDate: Installed on 2016-10-20 (241 days ago)
>   InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64
> (20161012.2)
>   MachineType: LENOVO 20FBCTO1WW
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-52-lowlatency
> root=UUID=9c48fc00-9dd5-45e9-8cd1-edbb5d1b8818 ro quiet splash
> vt.handoff=7
>   SourcePackage: systemd
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 08/02/2016
>   dmi.bios.vendor: LENOVO
>   dmi.bios.version: N1FET43W (1.17 )
>   dmi.board.asset.tag: Not Available
>   dmi.board.name: 20FBCTO1WW
>   dmi.board.vendor: LENOVO
>   dmi.board.version: SDK0J40697 WIN
>   dmi.chassis.asset.tag: No Asset Information
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: LENOVO
>   dmi.chassis.version: None
>   dmi.modalias: dmi:bvnLENOVO:bvrN1FET43W(1.17):bd08/02/2016:svnLENOVO:
> pn20FBCTO1WW:pvrThinkPadX1Carbon4th:rvnLENOVO:rn20FBCTO1WW:
> rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
>   dmi.product.name: 20FBCTO1WW
>   dmi.product.version: ThinkPad X1 Carbon 4th
>   dmi.sys.vendor: LENOVO
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/
> 1698688/+subscriptions
>


-- 
Cheers,
Nico

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

Title:
  DNS resolution stopped working suddenly

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

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

Re: [Bug 1698688] Re: DNS resolution stopped working suddenly

2018-02-27 Thread Nico Orrù
Never mind, I've switched to Devuan.

On Tue, 27 Feb 2018, 07:41 dino99, <1698...@bugs.launchpad.net> wrote:

> This is an unsupported release now. Please think to install the next LTS
> 'Bionic 18.04'
>
> http://cdimage.ubuntu.com/ubuntu-next/daily-live/current/
> https://www.omgubuntu.co.uk/2018/02/ubuntu-18-04-minimal-install-option
>
> ** Changed in: systemd (Ubuntu)
>Status: New => Invalid
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1698688
>
> Title:
>   DNS resolution stopped working suddenly
>
> Status in systemd package in Ubuntu:
>   Invalid
>
> Bug description:
>   DNS resolution stopped working all of a sudden.
>
>   This is the only clue I've got, not sure what it means.
>
>   systemctl restart network-manager appears to fix the issue.
>
>
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopping User Manager for
> UID 113...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping D-Bus User
> Message Bus...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target
> Default.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping Virtual
> filesystem service...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped D-Bus User
> Message Bus.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped Virtual
> filesystem service.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Basic
> System.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target
> Sockets.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Paths.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Timers.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Closed D-Bus User
> Message Bus Socket.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Reached target
> Shutdown.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Starting Exit the
> Session...
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Received SIGRTMIN+24
> from PID 20775 (kill).
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19919]:
> pam_unix(systemd-user:session): session closed for user lightdm
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: user@113.service:
> Killing process 20775 (kill) with signal SIGKILL.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopped User Manager for
> UID 113.
>   Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Removed slice User Slice
> of lightdm.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 16.10
>   Package: systemd 231-9ubuntu4
>   ProcVersionSignature: Ubuntu 4.8.0-52.55-lowlatency 4.8.17
>   Uname: Linux 4.8.0-52-lowlatency x86_64
>   ApportVersion: 2.20.3-0ubuntu8.3
>   Architecture: amd64
>   CurrentDesktop: XFCE
>   Date: Sun Jun 18 22:03:40 2017
>   InstallationDate: Installed on 2016-10-20 (241 days ago)
>   InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64
> (20161012.2)
>   MachineType: LENOVO 20FBCTO1WW
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-52-lowlatency
> root=UUID=9c48fc00-9dd5-45e9-8cd1-edbb5d1b8818 ro quiet splash vt.handoff=7
>   SourcePackage: systemd
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 08/02/2016
>   dmi.bios.vendor: LENOVO
>   dmi.bios.version: N1FET43W (1.17 )
>   dmi.board.asset.tag: Not Available
>   dmi.board.name: 20FBCTO1WW
>   dmi.board.vendor: LENOVO
>   dmi.board.version: SDK0J40697 WIN
>   dmi.chassis.asset.tag: No Asset Information
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: LENOVO
>   dmi.chassis.version: None
>   dmi.modalias:
> dmi:bvnLENOVO:bvrN1FET43W(1.17):bd08/02/2016:svnLENOVO:pn20FBCTO1WW:pvrThinkPadX1Carbon4th:rvnLENOVO:rn20FBCTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
>   dmi.product.name: 20FBCTO1WW
>   dmi.product.version: ThinkPad X1 Carbon 4th
>   dmi.sys.vendor: LENOVO
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1698688/+subscriptions
>

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

Title:
  DNS resolution stopped working suddenly

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

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

[Bug 1747943] Re: Massive eigen compiler warnings with gcc7 ("enum constant in boolean context")

2018-02-15 Thread Nico Schlömer
This is already done for bionic. (The fix is in  3.3.4-4.)

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

Title:
  Massive eigen compiler warnings with gcc7 ("enum constant in boolean
  context")

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

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

[Bug 1742735] [NEW] CIFS client: access problems after updating to kernel 4.13.0-26-generic

2018-01-11 Thread Nico
Public bug reported:

Hello I've the kernel version 4.13.0-26 and I'm experiencing problem
mounting CIFS:

# sudo mount -t cifs //mydomain.com/documents /home/nico/mnt/documents -o 
user=nico
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

This works correctly with the kernel before.

This is a bug with high impact and need to solve as soon as possible.

Thanks for help

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

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

Title:
  CIFS client: access problems after updating to kernel
  4.13.0-26-generic

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

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

[Bug 1734147] Re: Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models

2017-12-28 Thread Nico
Is it okay if I immediately switch back to 4.13.0.21 kernel after the
problem is fixed?

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

Title:
  Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models

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

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

[Bug 1734147] Re: Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models

2017-12-21 Thread Nico
I don't know if anyone has reported the issue on my laptop, but I
confirm that my Toshiba L50-B-17V is now hanging on a tread because of
this issue. I installed 17.10 a while ago, noticed the issue of the
locked BIOS, but I didn't think Ubuntu could've caused it. I honestly
thought my CMOS battery was failing or something like that.

Today I read about this bug and the symptoms are clear. I can't save any
BIOS setting, and I can't boot from USB anymore. I didn't try booting
from CD as of now. If that is not an option, this laptop is basicly as
long lived as the OSs it's working with right now (Kubuntu 17.10 and
Windows 10). And if GRUB on Ubuntu fails, it's basicly the end since I
can't even boot into a live session to repair it.

Any news about a possible solution?

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

Title:
  Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models

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

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

[Bug 1717340] Re: [artful] Keyboard Logitech G15 doesn't work after logging in to gnome

2017-11-12 Thread Nico Haesler
I don't know if this is the right place to ask, but can someone please
bring the fixed fwupd into artful? It's been out for 20 days and this
bug is affecting me and a few friends on several machines. I don't think
this should be tagged low importance. There are a lot of new users who
have no idea how to fix this problem.

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

Title:
  [artful] Keyboard Logitech G15 doesn't work after logging in to gnome

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

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

[Bug 1255294] Re: UMFPACK 5.6.2 bump

2017-09-28 Thread Nico Schlömer
UMFPACK is now part of suitesparse.

** Changed in: umfpack (Ubuntu)
   Status: New => Fix Released

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

Title:
  UMFPACK 5.6.2 bump

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

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

[Bug 1622981] Re: [Ffe] SuperLU 5.2

2017-09-28 Thread Nico Schlömer
** Changed in: superlu (Ubuntu)
   Status: New => Fix Released

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

Title:
  [Ffe] SuperLU 5.2

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

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

[Bug 1719551] [NEW] bump to 0.18.2

2017-09-26 Thread Nico Schlömer
Public bug reported:

Debian bumped to 0.18.2 [1], would be great if this could land in Ubuntu
as well.


[1] https://tracker.debian.org/pkg/oce

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


** Tags: upgrade-software-version

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

Title:
  bump to 0.18.2

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

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

[Bug 1583182] Re: error on 01ifupdown script

2017-09-12 Thread Nico Schlömer
The first error message I'm getting is 
```
Sep 12 14:28:41 foobar nm-dispatcher[27267]: /usr/sbin/fanctl: 41: 
/usr/sbin/fanctl: arithmetic expression: expecting primary: " (32-)/4 "

```
(Followed by the error messages in the original post.)

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

Title:
  error on 01ifupdown script

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

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

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

2017-08-10 Thread Nico R
Can confirm: #82 does the trick. Thanks Nicholas, you're awesome!

Let's hope this goes into 17.04 release or at least in zesty-updates.

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

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

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

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


[Bug 1700373] Re: Please update microcode to version 20170511 on all supported platforms

2017-06-26 Thread Nico Schlömer
FYI: A backports PPA is available at
https://launchpad.net/~nschloe/+archive/ubuntu/intel-microcode-
backports.

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

Title:
  Please update microcode to version 20170511 on all supported platforms

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

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


[Bug 1698688] [NEW] DNS resolution stopped working suddenly

2017-06-18 Thread Nico Orrù
Public bug reported:

DNS resolution stopped working all of a sudden.

This is the only clue I've got, not sure what it means.

systemctl restart network-manager appears to fix the issue.


Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopping User Manager for UID 
113...
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping D-Bus User Message 
Bus...
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Default.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopping Virtual filesystem 
service...
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped D-Bus User Message 
Bus.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped Virtual filesystem 
service.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Basic System.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Sockets.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Paths.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Stopped target Timers.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Closed D-Bus User Message 
Bus Socket.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Reached target Shutdown.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Starting Exit the Session...
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19918]: Received SIGRTMIN+24 from 
PID 20775 (kill).
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[19919]: 
pam_unix(systemd-user:session): session closed for user lightdm
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: user@113.service: Killing 
process 20775 (kill) with signal SIGKILL.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Stopped User Manager for UID 113.
Jun 18 21:53:07 nico-lenovo-ubuntu systemd[1]: Removed slice User Slice of 
lightdm.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: systemd 231-9ubuntu4
ProcVersionSignature: Ubuntu 4.8.0-52.55-lowlatency 4.8.17
Uname: Linux 4.8.0-52-lowlatency x86_64
ApportVersion: 2.20.3-0ubuntu8.3
Architecture: amd64
CurrentDesktop: XFCE
Date: Sun Jun 18 22:03:40 2017
InstallationDate: Installed on 2016-10-20 (241 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
MachineType: LENOVO 20FBCTO1WW
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-52-lowlatency 
root=UUID=9c48fc00-9dd5-45e9-8cd1-edbb5d1b8818 ro quiet splash vt.handoff=7
SourcePackage: systemd
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/02/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: N1FET43W (1.17 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20FBCTO1WW
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1FET43W(1.17):bd08/02/2016:svnLENOVO:pn20FBCTO1WW:pvrThinkPadX1Carbon4th:rvnLENOVO:rn20FBCTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.name: 20FBCTO1WW
dmi.product.version: ThinkPad X1 Carbon 4th
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug yakkety

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

Title:
  DNS resolution stopped working suddenly

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

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


[Bug 1693521] Re: brcmfmac: Direct firmware load failed

2017-05-25 Thread Nico Hen
I installed bcmwl-kernel-source and can now connect to wifi networks.
But the error persists:

$ sudo modprobe brcmfmac
$ dmesg | less
[...]
[  118.694817] usbcore: registered new interface driver brcmfmac
[  118.801493] brcmfmac :02:00.0: Direct firmware load for 
brcm/brcmfmac43602-pcie.txt failed with error -2
[  119.307710] brcmf_c_preinit_dcmds: Firmware version = wl0: Nov 10 2015 
06:38:10 version 7.35.177.61 (r598657) FWID 01-ea662a8c
[  119.352019] brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[...]

Best,
Nico

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

Title:
  brcmfmac: Direct firmware load failed

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

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


[Bug 1693521] [NEW] brcmfmac: Direct firmware load failed

2017-05-25 Thread Nico Hen
Public bug reported:

This bug is a reference for
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1575321 as penalvch
requested a new bug with created by ubuntu-bug linux. This bug may be
assigned to penalvch due to the post from 2016-06-29 in bug 1575321.

"brcmfmac :02:00.0: Direct firmware load for
brcm/brcmfmac43602-pcie.txt failed with error -2

Usually rmmod brcmfmac && modprobe brcmfmac successfully load the
driver, and wifi is functional once more"

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.8.0-52-generic 4.8.0-52.55~16.04.1
ProcVersionSignature: Ubuntu 4.8.0-52.55~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-52-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
CurrentDesktop: Unity
Date: Thu May 25 16:15:42 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2017-05-23 (2 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
SourcePackage: linux-hwe
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  brcmfmac: Direct firmware load failed

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

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


[Bug 1211110] Re: network manager openvpn dns push data not updating system DNS addresses

2017-05-09 Thread Nico R
Can confirm: Still present in Kubuntu 17.04.

Excerpt from /var/log/syslog:

May  9 10:52:20 edbook NetworkManager[938]:   [1494319940.4289] 
vpn-connection[0x561ae8e38690,34bc52ee-321f-42eb-af39-9dfc33ee2c5c,"WorkVPN",7:(tun0)]:
 Data:   Internal DNS: 10.42.10.2
May  9 10:52:20 edbook NetworkManager[938]:   [1494319940.4289] 
vpn-connection[0x561ae8e38690,34bc52ee-321f-42eb-af39-9dfc33ee2c5c,"WorkVPN",7:(tun0)]:
 Data:   DNS Domain: '[localdomain_propagated_by_vpn]'



ico@edbook:~$ nmcli device show tun0
GENERAL.DEVICE: tun0
GENERAL.TYPE:   tun
GENERAL.HWADDR: 
GENERAL.MTU:1500
GENERAL.STATE:  100 (connected)
GENERAL.CONNECTION: tun0
GENERAL.CON-PATH:   
/org/freedesktop/NetworkManager/ActiveConnection/10
IP4.ADDRESS[1]: 10.52.0.2/24
IP4.GATEWAY:
IP4.ROUTE[1]:   dst = 10.42.0.0/18, nh = 10.52.0.1, mt 
= 50
IP4.ROUTE[2]:   dst = 10.42.90.0/24, nh = 10.52.0.1, mt 
= 50
IP4.ROUTE[3]:   dst = 10.42.80.0/24, nh = 10.52.0.1, mt 
= 50
IP6.ADDRESS[1]: fe80::e9e3:17e7:f72:e672/64
IP6.GATEWAY:


Also, since dnsmasq appears not to be used anymore in favor of 
systemd-resolved, the "old" workaround of commenting out the
dns=dnsmasq
line in NetworkManager.conf isn't applicable anymore.

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

Title:
  network manager openvpn dns push data not updating system DNS
  addresses

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

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


[Bug 1680301] [NEW] package thunderbird-locale-es-es 1:45.8.0+build1-0ubuntu0.16.10.1 failed to install/upgrade: El paquete está en un estado grave de inconsistencia - debe reinstalarlo antes de inte

2017-04-05 Thread Nico
Public bug reported:

Every time I boot my system I encounter this error. It popups every time
I boot my system

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: thunderbird-locale-es-es 1:45.8.0+build1-0ubuntu0.16.10.1
ProcVersionSignature: Ubuntu 4.8.0-46.49-generic 4.8.17
Uname: Linux 4.8.0-46-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.3-0ubuntu8.2
AptOrdering: NULL: ConfigurePending
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nicosafull   1808 F pulseaudio
BuildID: 20170315131404
Channel: Unavailable
Date: Sat Apr  1 14:01:04 2017
DpkgTerminalLog:
 dpkg: error al procesar el paquete thunderbird-locale-es-es 
(--configure):
  El paquete está en un estado grave de inconsistencia - debe reinstalarlo
  antes de intentar su configuración.
ErrorMessage: El paquete está en un estado grave de inconsistencia - debe 
reinstalarlo  antes de intentar su configuración.
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2015-06-09 (666 days ago)
InstallationMedia: Xubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422.1)
IpRoute:
 default via 192.168.0.1 dev wlan0  proto static  metric 600 
 169.254.0.0/16 dev wlan0  scope link  metric 1000 
 192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.13  metric 
600
NoProfiles: True
PackageArchitecture: all
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 dpkg 1.18.10ubuntu1
 apt  1.3.4
RunningIncompatibleAddons: False
SourcePackage: thunderbird
Title: package thunderbird-locale-es-es 1:45.8.0+build1-0ubuntu0.16.10.1 failed 
to install/upgrade: El paquete está en un estado grave de inconsistencia - debe 
reinstalarlo  antes de intentar su configuración.
UpgradeStatus: Upgraded to yakkety on 2017-02-28 (36 days ago)
dmi.bios.date: 08/10/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: K53E.221
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: K53E
dmi.board.vendor: ASUSTeK Computer Inc.
dmi.board.version: 1.0
dmi.chassis.asset.tag: ATN12345678901234567
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer Inc.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrK53E.221:bd08/10/2012:svnASUSTeKComputerInc.:pnK53E:pvr1.0:rvnASUSTeKComputerInc.:rnK53E:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.name: K53E
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.

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


** Tags: amd64 apport-package yakkety

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

Title:
  package thunderbird-locale-es-es 1:45.8.0+build1-0ubuntu0.16.10.1
  failed to install/upgrade: El paquete está en un estado grave de
  inconsistencia - debe reinstalarlo  antes de intentar su
  configuración.

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

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

[Bug 1678628] [NEW] grub installation failed

2017-04-02 Thread nico
Public bug reported:

when I try to install ubuntu 16.04.2 the installer gives me an error when 
installing grub-efi-amd64-signed package.
I tried to create a efi partition, but it won't let me as there is already one 
for windows 10.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.3
ProcVersionSignature: Ubuntu 4.8.0-36.36~16.04.1-generic 4.8.11
Uname: Linux 4.8.0-36-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CasperVersion: 1.376.2
Date: Sun Apr  2 16:46:23 2017
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi 
file=/cdrom/preseed/ubuntu-gnome.seed boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu-GNOME 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubiquity-2.21.63.3 ubuntu-gnome xenial

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

Title:
  grub installation failed

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

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


[Bug 1554117] Re: gnome-software search bar duplicates letters while typing

2017-03-09 Thread nico
THis affects me too.I tried installing the newer version of gnome-
software from the developers options and still get the same exact
letters duplicating.

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

Title:
  gnome-software search bar duplicates letters while typing

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-software/+bug/1554117/+subscriptions

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


[Bug 1671090] Re: dosbox 0.72-4.2build1crashes on starting 'Panzer General'

2017-03-08 Thread Nico Schumann
post correction: I mean of course Ubuntu 16.4 LSB.

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

Title:
  dosbox 0.72-4.2build1crashes on starting 'Panzer General'

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

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


[Bug 1671090] Re: dosbox 0.72-4.2build1crashes on starting 'Panzer General'

2017-03-08 Thread Nico Schumann
Hence it runs fine on Ubuntu 10.4 LSB: If the build was compiled from
identical source, maybe it could be that this error is resulting from
using different compiler/-version/-flags at building process, where
there happened too aggressive code optimization.

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

Title:
  dosbox 0.72-4.2build1crashes on starting 'Panzer General'

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

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


[Bug 1671090] [NEW] dosbox 0.72-4.2build1crashes on starting 'Panzer General'

2017-03-08 Thread Nico Schumann
Public bug reported:

dosbox on 16.10 crashes at running 'Panzer General' and others. Before,
I used dosbox at 16.4 LSB and there it ran fine.

Package: dosbox  
Version: 0.74-4.2build1
Architecture: amd64
lsb_release -rd: Ubuntu 16.10

error message:
CONFIG:Loading primary settings from config file dosbox.conf
MIXER:Got different values from SDL: freq 44100, blocksize 512
ALSA:Can't subscribe to MIDI port (65:0) nor (17:0)
MIDI:Opened device:none
Exit to error: DRC64:Unhandled memory reference

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

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

Title:
  dosbox 0.72-4.2build1crashes on starting 'Panzer General'

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

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


[Bug 1666318] Re: Disconnecting and reconnecting docking station breaks DNS

2017-02-20 Thread Nico Orrù
If it helps, commenting out/removing

  # dns=dnsmasq

from 
  
 /etc/NetworkManager/NetworkManager.conf

makes the problem go away.

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

Title:
  Disconnecting and reconnecting docking station breaks DNS

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

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


[Bug 1666318] [NEW] Disconnecting and reconnecting docking station breaks DNS

2017-02-20 Thread Nico Orrù
Public bug reported:

I'm not sure which package this bug should be submitted to as service
troubleshooting in the latest few Ubuntu releases is a jumbled mess.

Anyway, here's how to repro the problem:
- Lenovo Carbon X1 2016 (4th gen), OneLink+ docking station
- Ethernet connected to docking station
- Disconnect docking station
- Reconnect docking station

>From this point on all DNS requests fail. Workarounds I found so far:
- reboot the machine (not really a solution)
- sudo system network-manager restart (requires sudo access)
- usually in older releases I'd just poke around with the resolver config 
files, but anything I do seems to be ignored now so I gave up and posted a bug 
instead.

Here's the journalctl log for NetworkManager, followed by an example of
the problem:

nico@nico-lenovo-ubuntu:~$ journalctl -u NetworkManager -f
-- Logs begin at Sun 2017-02-19 00:10:56 GMT. --
Feb 20 20:22:41 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622161.9976] dns-mgr: Writing DNS information to /sbin/resolvconf
Feb 20 20:22:42 nico-lenovo-ubuntu dnsmasq[6728]: setting upstream servers from 
DBus
Feb 20 20:22:42 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.4.100#53(via lan1)
Feb 20 20:22:42 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.8.100#53(via lan1)
Feb 20 20:22:42 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.4.100#53(via wifi0)
Feb 20 20:22:42 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.8.100#53(via wifi0)
Feb 20 20:22:42 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622162.0156] device (wifi0): Activation: successful, device activated.
Feb 20 20:22:42 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622162.0169] manager: startup complete
Feb 20 20:22:43 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622163.1408] manager: WiFi hardware radio set enabled
Feb 20 20:22:43 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622163.1409] manager: WWAN hardware radio set disabled
Feb 20 20:27:40 nico-lenovo-ubuntu dhclient[6736]: receive_packet failed on 
lan1: Network is down
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1588] manager: NetworkManager state is now CONNECTED_LOCAL
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1589] manager: NetworkManager state is now CONNECTED_GLOBAL
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1590] policy: set 'Auto ITADINANTA' (wifi0) as default for IPv4 
routing and DNS
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1590] device (lan1): state change: activated -> unmanaged (reason 
'removed') [100 10 36]
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1594] dhcp4 (lan1): canceled DHCP transaction, DHCP client pid 6736
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1595] dhcp4 (lan1): state changed bound -> done
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1618] dns-mgr: Writing DNS information to /sbin/resolvconf
Feb 20 20:27:40 nico-lenovo-ubuntu dnsmasq[6728]: setting upstream servers from 
DBus
Feb 20 20:27:40 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.4.100#53(via wifi0)
Feb 20 20:27:40 nico-lenovo-ubuntu dnsmasq[6728]: using nameserver 
194.168.8.100#53(via wifi0)
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:  
[1487622460.1799] platform-linux: do-change-link[5]: failure changing link: 
failure 19 (No such device)
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1800] device (lan1): failed to disable userspace IPv6LL address 
handling
Feb 20 20:27:40 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622460.1803] devices removed (path: 
/sys/devices/pci:00/:00:14.0/usb2/2-4/2-4.1/2-4.1.3/2-4.1.3:2.0/net/lan1,
 iface: lan1)
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.6972] device (eth0): failed to find device 6 'eth0' with udev
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.6990] manager: (eth0): new Ethernet device 
(/org/freedesktop/NetworkManager/Devices/4)
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.7679] device (eth0): interface index 6 renamed iface from 'eth0' to 
'lan1'
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.7742] devices added (path: 
/sys/devices/pci:00/:00:14.0/usb2/2-4/2-4.1/2-4.1.3/2-4.1.3:2.0/net/lan1,
 iface: lan1)
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.7742] device added (path: 
/sys/devices/pci:00/:00:14.0/usb2/2-4/2-4.1/2-4.1.3/2-4.1.3:2.0/net/lan1,
 iface: lan1): no ifupdown configuration found.
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.7745] device (lan1): state change: unmanaged -> unavailable (reason 
'managed') [10 20 2]
Feb 20 20:27:56 nico-lenovo-ubuntu NetworkManager[6715]:   
[1487622476.7752] device (lan1): link connected
Feb 20 20:27:56

Re: [Bug 1663763] [NEW] Firefox menu bar cannot be enabled

2017-02-10 Thread Nico Orrù
Found the solution:

about:config
ui.use_unity_menubar=false

Who thought it was a good idea to enable it by default?

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

Title:
  Firefox menu bar cannot be enabled

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

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


[Bug 1663763] [NEW] Firefox menu bar cannot be enabled

2017-02-10 Thread Nico Orrù
Public bug reported:

On Xubuntu/desktop 16.10
- Menu bar appears on indicator
- Menu bar cannot be enabled in customize

This is a deal breaker. One of the main reasons why I use Firefox rather
than Chrome on Linux is the menu bar.

Should I use Chrome instead?

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: firefox 51.0.1+build2-0ubuntu0.16.10.2
ProcVersionSignature: Ubuntu 4.8.0-37.39-lowlatency 4.8.16
Uname: Linux 4.8.0-37-lowlatency x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nico   2150 F pulseaudio
BuildID: 20170201174907
Channel: Unavailable
CurrentDesktop: XFCE
Date: Fri Feb 10 22:34:03 2017
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2016-10-20 (113 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
IpRoute:
 default via 10.1.0.1 dev wifi0  proto static  metric 600 
 10.1.0.0/16 dev wifi0  proto kernel  scope link  src 10.1.8.81  metric 600 
 169.254.0.0/16 dev wifi0  scope link  metric 1000
Locales: extensions.sqlite corrupt or missing
Plugins:
 Google Talk Plugin Video Renderer - /opt/google/talkplugin/libnpo1d.so 
(google-talkplugin)
 Google Talk Plugin - /opt/google/talkplugin/libnpgoogletalk.so 
(google-talkplugin)
 Shockwave Flash - /usr/lib/flashplugin-installer/libflashplayer.so
PrefSources:
 prefs.js
 
[Profile]/extensions/{3d7eb24f-2740-49df-8937-200b1cc08f8a}/defaults/preferences/flashblock.js
 [Profile]/extensions/foxypr...@eric.h.jung/defaults/preferences/prefs.js
Profiles: Profile0 (Default) - LastVersion=51.0.1/20170201174907 (In use)
RelatedPackageVersions: google-talkplugin 5.41.0.0-1
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/02/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: N1FET43W (1.17 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20FBCTO1WW
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1FET43W(1.17):bd08/02/2016:svnLENOVO:pn20FBCTO1WW:pvrThinkPadX1Carbon4th:rvnLENOVO:rn20FBCTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.name: 20FBCTO1WW
dmi.product.version: ThinkPad X1 Carbon 4th
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug yakkety

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

Title:
  Firefox menu bar cannot be enabled

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

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


[Bug 1642581] Re: Livepatch checkState: check-failed

2017-02-08 Thread Nico Maas
Same on my PC:

client-version: "6"
[...]
[...]
architecture: x86_64
cpu-model: Intel(R) Xeon(R) CPU E5-26xx (Sandy Bridge)
last-check: 2017-01-23T12:17:01.766022601+01:00
boot-time: 2017-02-01T22:07:12+01:00
uptime: 178h8m31s
status:
- kernel: 4.4.0-59.80-generic
  running: true
  livepatch:
checkState: check-failed
patchState: nothing-to-apply
version: ""
fixes: ""

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

Title:
  Livepatch checkState: check-failed

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

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


[Bug 1662670] [NEW] Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-MfyGcj8Fq2: Connection refused

2017-02-07 Thread Nico Orrù
Public bug reported:

Got this error after switching from Cinnamon to Xubuntu-Desktop

nico@nico-lenovo-ubuntu:~$ dropbox stop
Dropbox daemon stopped.
nico@nico-lenovo-ubuntu:~$ dropbox start
Starting Dropbox...
** (dropbox:3817): WARNING **: Couldn't connect to accessibility bus: Failed to 
connect to socket /tmp/dbus-MfyGcj8Fq2: Connection refused
Done!

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: dbus 1.10.10-1ubuntu1.2
ProcVersionSignature: Ubuntu 4.8.0-37.39-lowlatency 4.8.16
Uname: Linux 4.8.0-37-lowlatency x86_64
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Feb  7 21:02:58 2017
InstallationDate: Installed on 2016-10-20 (110 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
SourcePackage: dbus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug package-from-proposed yakkety

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

Title:
  Couldn't connect to accessibility bus: Failed to connect to socket
  /tmp/dbus-MfyGcj8Fq2: Connection refused

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

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


[Bug 1662147] Re: Cannot stop pulseaudio

2017-02-06 Thread Nico Orrù
It is probably a bug of indicator-sound?

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

Title:
  Cannot stop pulseaudio

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

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


[Bug 1662147] Re: Cannot stop pulseaudio

2017-02-06 Thread Nico Orrù
Seems to be respawned by

norru 8557 1  0 Jan23 ?00:00:15 /usr/lib/x86_64-linux-
gnu/indicator-sound/indicator-sound-service

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

Title:
  Cannot stop pulseaudio

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

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


[Bug 1662147] [NEW] Cannot stop pulseaudio

2017-02-06 Thread Nico Orrù
Public bug reported:

I need to kill pulseaudio as I'm using Jackd instead. I don't want to
delete it as I may need it back again.

So far the only workaround I found was to delete /usr/bin/pulseaudio (or
move it out of the way).


norru@GBWWSRUNUBWS02:~$ pulseaudio -k
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru29938  8557  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29940 29938  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29941 29940  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30111 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru29938  8557  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29940 29938  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29941 29940  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30230 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru29938  8557  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29940 29938  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru29941 29940  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30250 28914  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30252 28942  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30297 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru29941 1  1 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30469 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru29941 1  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30486 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ pulseaudio -k
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru30489 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru30493 1  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru30506 29396  0 11:27 pts/000:00:00 grep --color=auto pulse
norru@GBWWSRUNUBWS02:~$ ubuntu-bug pulseaudio

norru@GBWWSRUNUBWS02:~$ sudo service pulseaudio stop
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru30493 1  0 11:27 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog

norru@GBWWSRUNUBWS02:~$ kill 30493
norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru32318 1  1 11:32 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog


norru@GBWWSRUNUBWS02:~$ kill -9 32318

norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru32361  8557  0 11:34 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru32363 32361  0 11:34 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru32364 32363  1 11:34 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog

norru@GBWWSRUNUBWS02:~$ ps -ef | grep pulse
norru32364 1  1 11:34 ?00:00:00 /usr/bin/pulseaudio --start 
--log-target=syslog
norru32381 29396  0 11:34 pts/000:00:00 grep --color=auto pulse


ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: pulseaudio 1:9.0-2ubuntu2.1
ProcVersionSignature: Ubuntu 4.8.0-34.36-generic 4.8.11
Uname: Linux 4.8.0-34-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  norru 30493 F pulseaudio
 /dev/snd/controlC0:  norru 30493 F pulseaudio
CurrentDesktop: X-Cinnamon
Date: Mon Feb  6 11:28:49 2017
InstallationDate: Installed on 2015-06-10 (606 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: pulseaudio
UpgradeStatus: Upgraded to yakkety on 2016-10-31 (97 days ago)
dmi.bios.date: 10/15/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 4502
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P9X79
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4502:bd10/15/2013:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** 

[Bug 1651923] Re: apt https method decodes redirect locations and sends them to the destination undecoded.

2017-01-26 Thread Nico Orrù
Many thanks!

Cheers,
Nico

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

Title:
  apt https method decodes redirect locations and sends them to the
  destination undecoded.

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

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


[Bug 1651923] Re: apt https method decodes redirect locations and sends them to the destination undecoded.

2017-01-18 Thread Nico Orrù
Yep, fixed! Great work! Thanks for your time!

```
norru@GBWWSRUNUBWS02:~$ sudo apt install apt-transport-https
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be upgraded:
  apt-transport-https
1 to upgrade, 0 to newly install, 0 to remove and 76 not to upgrade.
Need to get 34.3 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://gb.archive.ubuntu.com/ubuntu yakkety-proposed/main amd64 
apt-transport-https amd64 1.3.4 [34.3 kB]
Fetched 34.3 kB in 0s (679 kB/s)   
(Reading database ... 348718 files and directories currently installed.)
Preparing to unpack .../apt-transport-https_1.3.4_amd64.deb ...
Unpacking apt-transport-https (1.3.4) over (1.3.3) ...
Setting up apt-transport-https (1.3.4) ...
norru@GBWWSRUNUBWS02:~$ /usr/lib/apt/apt-helper download-file 
http://kxstudio.linuxaudio.org/repo/pool/free/ardour4_4.7.0-1kxstudio1_i386.deb 
test.deb
Get:1 
http://kxstudio.linuxaudio.org/repo/pool/free/ardour4_4.7.0-1kxstudio1_i386.deb 
[60.2 MB]
Fetched 60.2 MB in 6s (8,814 kB/s)
```

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

Title:
  apt https method decodes redirect locations and sends them to the
  destination undecoded.

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

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


[Bug 1651520] Re: Scrambled UI: Text in the Unity windows disappears/mixed after the resume from the screen idle state

2017-01-14 Thread nico
"nico (nicolas-pourcelot), it will help immensely if you filed a new report 
with Ubuntu, using the default repository kernel (not mainline/upstream/3rd 
party) via a terminal:
ubuntu-bug linux"

Thanks for your answer, but I'm not sure how to interpret it.

I've opened a new bug report concerning apport itself here:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1656504

Is it what you wanted me to do ?

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

Title:
  Scrambled UI: Text in the Unity windows disappears/mixed after the
  resume from the screen idle state

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

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


  1   2   3   4   5   6   7   8   >