[Bug 2068738] Re: AMD GPUs fail with null pointer dereference when IOMMU enabled, leading to black screen

2024-07-04 Thread Mathias Weyland
Hello. I ran these instructions and was able to boot the -116 kernel on
a laptop that was subject to this bug, i.e. where the -113 kernel booted
into a black screen (HP EliteBook 735 G5).

Thank you for your efforts and regards!
Matt

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

Title:
  AMD GPUs fail with null pointer dereference when IOMMU enabled,
  leading to black screen

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


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

[Bug 2022308] Re: realtek RTS525A sdcard reader unusable on HWE kernel

2024-04-02 Thread Mathias Bavay
As a side note, It could be related to
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1929444 (but still
not exactly the same)

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

Title:
  realtek RTS525A sdcard reader unusable on HWE kernel

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


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

Re: [PATCH] xhci: Free the command allocated for setting LPM if we return early

2023-04-03 Thread Mathias Nyman

On 28.3.2023 1.25, Mirsad Goran Todorovac wrote:

On 27. 03. 2023. 11:50, Mathias Nyman wrote:

The command allocated to set exit latency LPM values need to be freed in
case the command is never queued. This would be the case if there is no
change in exit latency values, or device is missing.

Fixes: 5c2a380a5aa8 ("xhci: Allocate separate command structures for each LPM 
command")
Cc: 
Signed-off-by: Mathias Nyman 
---
  drivers/usb/host/xhci.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index bdb6dd819a3b..6307bae9cddf 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -4442,6 +4442,7 @@ static int __maybe_unused 
xhci_change_max_exit_latency(struct xhci_hcd *xhci,
  
  	if (!virt_dev || max_exit_latency == virt_dev->current_mel) {

spin_unlock_irqrestore(>lock, flags);
+   xhci_free_command(xhci, command);
return 0;
}
  


After more testing, I can confirm that your patch fixes the leak in the original
environment.


Thanks for testing.
Can I add the tags below to the patch?
 
Reported-by: Mirsad Goran Todorovac 

Tested-by: Mirsad Goran Todorovac 

Thanks
Mathias



--
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: BUG: drivers/usb/host/xhci: memleak in alloc from xhci_disable_usb3_lpm_timeout()

2023-04-03 Thread Mathias Nyman

On 25.3.2023 13.33, Mirsad Goran Todorovac wrote:

On 25. 03. 2023. 12:27, Mirsad Goran Todorovac wrote:

Hi all!

Here are again the good news and the bad news:

BAD:  another kernel memory leak detected (one more to hunt down and fix)
GOOD: another kernel memory leak detected (one less unaccounted for)

I tried to make some fun, but maintainers are busy folks, so let's get down
to business:

---
Nine (9) new systemd-udevd kernel memory leaks occurred (unable to reproduce).

The platform is Ubuntu 22.10 with (relatively recent) systemd 251.4-1ubuntu7.1
on LENOVO_MT_82H8_BU_idea_FM_IdeaPad 3 15ITL6 with BIOS GGCN51WW from 
11/16/2022.

The symptom (/sys/kernel/debug/kmemleak output):

unreferenced object 0x909698ff9280 (size 64):
   comm "systemd-udevd", pid 436, jiffies 4294893239 (age 6287.088s)
   hex dump (first 32 bytes):
 e0 51 bb 99 96 90 ff ff 00 00 00 00 00 00 00 00  .Q..
 40 5b bb 99 96 90 ff ff 00 00 00 00 00 00 00 00  @[..
   backtrace:
 [] slab_post_alloc_hook+0x8c/0x320
 [] __kmem_cache_alloc_node+0x1c7/0x2b0
 [] kmalloc_node_trace+0x2b/0xa0
 [] xhci_alloc_command+0x7c/0x1b0
 [] xhci_alloc_command_with_ctx+0x21/0x70
 [] xhci_change_max_exit_latency+0x2e/0x1c0>>  
[] xhci_disable_usb3_lpm_timeout+0x7b/0xb0
 [] usb_disable_link_state+0x57/0xe0


Thanks for the report.

I think I found the leak, and wrote a patch for it.
Any chance you could test it with the same setup?

https://git.kernel.org/pub/scm/linux/kernel/git/mnyman/xhci.git/commit/?h=for-usb-linus=8bacee588602ed74cc22aaf4c56b796300e5a943

Thanks
-Mathias


--
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: [PATCH] xhci: Free the command allocated for setting LPM if we return early

2023-04-03 Thread Mathias Nyman

On 27.3.2023 14.51, Greg KH wrote:

On Mon, Mar 27, 2023 at 12:50:19PM +0300, Mathias Nyman wrote:

The command allocated to set exit latency LPM values need to be freed in
case the command is never queued. This would be the case if there is no
change in exit latency values, or device is missing.

Fixes: 5c2a380a5aa8 ("xhci: Allocate separate command structures for each LPM 
command")
Cc: 
Signed-off-by: Mathias Nyman 
---
  drivers/usb/host/xhci.c | 1 +
  1 file changed, 1 insertion(+)


Do you want me to take this now, or will you be sending this to me in a
separate series of xhci fixes?  Either is fine with me.


I can send a separate series this week, there are some other fixes as well.

Thanks
Mathias


--
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


[PATCH] xhci: Free the command allocated for setting LPM if we return early

2023-04-03 Thread Mathias Nyman
The command allocated to set exit latency LPM values need to be freed in
case the command is never queued. This would be the case if there is no
change in exit latency values, or device is missing.

Fixes: 5c2a380a5aa8 ("xhci: Allocate separate command structures for each LPM 
command")
Cc: 
Signed-off-by: Mathias Nyman 
---
 drivers/usb/host/xhci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index bdb6dd819a3b..6307bae9cddf 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -4442,6 +4442,7 @@ static int __maybe_unused 
xhci_change_max_exit_latency(struct xhci_hcd *xhci,
 
if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
spin_unlock_irqrestore(>lock, flags);
+   xhci_free_command(xhci, command);
return 0;
}
 
-- 
2.25.1


-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


[Bug 1970374] [NEW] package linux-image-unsigned-5.14.0-1032-oem (not installed) failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2022-04-25 Thread Mathias
Public bug reported:

It has been one month that I cannot update my kernel and I get this
error.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: linux-image-unsigned-5.14.0-1032-oem (not installed)
ProcVersionSignature: Ubuntu 5.14.0-1029.32-oem 5.14.21
Uname: Linux 5.14.0-1029-oem x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.23
AptOrdering:
 linux-image-5.14.0-1032-oem:amd64: Remove
 linux-image-unsigned-5.14.0-1032-oem:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Apr 25 09:29:36 2022
ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: initramfs-tools
Title: package linux-image-unsigned-5.14.0-1032-oem (not installed) failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  package linux-image-unsigned-5.14.0-1032-oem (not installed) failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

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


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

[Bug 1967501] Re: Trying to save a PDF file in Chrome causes an error in Ubuntu before the Save file dialogue opens

2022-04-01 Thread Mathias Schindler
*** This bug is a duplicate of bug 1966784 ***
https://bugs.launchpad.net/bugs/1966784

I am sorry, I can't look at the other bug because apparently I lack any
rights to see the bug #1966784. Thanks for the fast reply.

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

Title:
  Trying to save a PDF file in Chrome causes an error in Ubuntu before
  the Save file dialogue opens

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-desktop-portal-gnome/+bug/1967501/+subscriptions


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

[Bug 1966053] [NEW] Installing Ubuntu 21.10 fails because the installer hangs at installing Firefox from snap

2022-03-23 Thread Mathias Schindler
Public bug reported:

My Lenovo desktop running Ubuntu 21.10 became unstable and bloated and
in the interest of time, I decided to just reinstall the entire system
using a fresh installation iso.

The system boots properly and the installer works without hassle until
it tries to install firefox (apparently using snap). This is a behavior
I could reproduce. The only workaround was to deactive network during
installation. At this stage, the installation went comepletely fine.

After rebooting, the system hangs after clicking on the "Firefox" icon.

Installing a current Firefox using apt does not cause any crash.


I am not sure if this is related to bug #1947352.

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


** Tags: impish

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

Title:
  Installing Ubuntu 21.10 fails because the installer hangs at
  installing Firefox from snap

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


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

[Bug 1940851] Re: False positive: "running_procs" incorrectly reports libkeyutils.so.1.9 as "Spam tool component"

2022-02-12 Thread Mathias Homann
I'm having the same kind of problem on a host that has postgres running
inside a docker container.

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

Title:
  False positive: "running_procs" incorrectly reports libkeyutils.so.1.9
  as "Spam tool component"

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2022-02-08 Thread Peter Nicolai Mathias Hansteen
Now running with

Linux 5.13.0-28-generic #31-Ubuntu SMP Thu Jan 13 17:41:06 UTC 2022
x86_64 x86_64 x86_64 GNU/Linux

plugging in a second external monitor (hdmi) either via docking station
or directly into the system itself when a usb-c monitor is attached, the
hdmi one is not recognized.

dmesg output attached.

** Attachment added: "dmesg date 2022-02-08"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1942427/+attachment/5559742/+files/dmesg_20220208.txt

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1942699] Re: SRU: Update Telegram Desktop to 3.1.1

2022-01-18 Thread Mathias Weyland
I used telegram-desktop 3.1.1+ds-1~ubuntu20.04.1 on focal for two days
now and the package is back into a functional state for me. No issues
observed whatsoever. I cannot say anything about libtgowt but it is my
understanding that this is "just" a build dependency for audio/video
call that is statically linked into telegram at build time. I don't use
that feature though.

In any case, Łukasz, thank you so much for taking care of that!

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

Title:
  SRU: Update Telegram Desktop to 3.1.1

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


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

[Bug 1956401] Re: amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22 works

2022-01-11 Thread Mathias Schindler
Hello, I updated to 5.13.0-25 and I confirm it works properly on a Ryzen
5-3600G.

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

Title:
  amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22
  works

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2022-01-06 Thread Peter Nicolai Mathias Hansteen
Checking again today with

Linux 5.13.0-23-generic #23-Ubuntu SMP Fri Nov 26 11:41:15 UTC 2021
x86_64 x86_64 x86_64 GNU/Linux

plugging both external monitors into hdmi ports on the docking station
has the system see all monitors, however clicking Apply in the Displays
settings only produces no display on the external monitors and greyed-
out display on the internal one.

In addition, the mouse pointer freezes, but I can Alt-Tab between
windows.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1956469] [NEW] GPU related problems after kernel update

2022-01-05 Thread Mathias Schindler
Public bug reported:

After the last stable kernel update, my system is slow, browsers fail to
start and crash and dmesg is full of gpu related error messages.

Loading the previous kernel does not result in any problems.

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: xorg 1:7.7+22ubuntu2
ProcVersionSignature: Ubuntu 5.13.0-22.22-generic 5.13.19
Uname: Linux 5.13.0-22-generic x86_64
ApportVersion: 2.20.11-0ubuntu71
Architecture: amd64
BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Jan  5 14:57:16 2022
DistUpgraded: Fresh install
DistroCodename: impish
DistroVariant: ubuntu
DkmsStatus:
 v4l2loopback, 0.12.5, 5.13.0-22-generic, x86_64: installed
 v4l2loopback, 0.12.5, 5.13.0-23-generic, x86_64: installed
 virtualbox, 6.1.26, 5.13.0-22-generic, x86_64: installed
 virtualbox, 6.1.26, 5.13.0-23-generic, x86_64: installed
ExtraDebuggingInterest: Yes
GpuHangFrequency: This is the first time
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c8) (prog-if 
00 [VGA controller])
   Subsystem: Hewlett-Packard Company Picasso [103c:8643]
InstallationDate: Installed on 2021-07-16 (172 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210715)
MachineType: HP HP Desktop M01-F0xxx
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-22-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/26/2019
dmi.bios.release: 15.17
dmi.bios.vendor: AMI
dmi.bios.version: F.11
dmi.board.name: 8643
dmi.board.vendor: HP
dmi.board.version: SMVB
dmi.chassis.type: 3
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 52.38
dmi.modalias: 
dmi:bvnAMI:bvrF.11:bd11/26/2019:br15.17:efr52.38:svnHP:pnHPDesktopM01-F0xxx:pvr:rvnHP:rn8643:rvrSMVB:cvnHP:ct3:cvr:sku8KX18EA#ABD:
dmi.product.family: 103C_53311M HP Desktop PC
dmi.product.name: HP Desktop M01-F0xxx
dmi.product.sku: 8KX18EA#ABD
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.107-8ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.2.2-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 21.2.2-1ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.20.13-1ubuntu1.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2build1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1build1

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


** Tags: amd64 apport-bug freeze impish ubuntu wayland-session

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

Title:
  GPU related problems after kernel update

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


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

[Bug 1753509] Re: avahi-daemon adds/installs every printer on network

2021-12-27 Thread Mathias Weyland
lp:1477106 is another bug where this is being discussed (but didn't get
much attention). I agree that this is due to somewhat broken behaviour
of gtk3 and not cups-filter or avahi. In any case, an updated GTK 3
patch for Focal is available in the following for those who came here
with this problem:

https://launchpad.net/~launchpad-weyland/+archive/ubuntu/libgtk3-no-
avahi/

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

Title:
  avahi-daemon adds/installs every printer on network

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


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

[Bug 1477106] Re: Cups directive "Browsing Off" ignored by print dialog

2021-12-27 Thread Mathias Weyland
Since the bug report is very old, the original cause for what is
described here may have changed. But on a focal system, the gtk print
dialog populates the printer list on its own. Even if cups is not
running locally, it queries avahi-daemon and produces a list of
printers. This is causing a number of issues, including printer
duplicates, printer entries that don't work, printers that are labeled
in a weird way etc. It is silly that such broken behaviour cannot be
turned off. In any case, until this improves, users may choose to use a
patched version of gtk3 where the broken avahi lookup is removed from
the printer dialog:

https://launchpad.net/~launchpad-weyland/+archive/ubuntu/libgtk3-no-
avahi/

Also see lp:1379359 and lp:1753509

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

Title:
  Cups directive "Browsing Off" ignored by print dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/1477106/+subscriptions


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-11-12 Thread Peter Nicolai Mathias Hansteen
Update: after upgrading to 21.10 (Linux 5.13.0-21-generic #21-Ubuntu SMP
Tue Oct 19 08:59:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux) the problem
persists with a twist:

The settings applet now sees all monitors, but trying to configure a
setup with all three is not really feasible since selecting a setup
leads to both external monitors going blank and the primary screen
dimming, with no visible dialog for confirming that the new
configuration is to be applied permanently (possibly displayed on one of
the two blanked-out monitors).

I hope this bug will be addressed shortly.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-10-18 Thread Peter Nicolai Mathias Hansteen
The last working kernel version was indeed the kind of information the
developers were looking for. Excellent that you were able to supply that
bit of information.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-10-18 Thread Peter Nicolai Mathias Hansteen
The last working kernel version was indeed the kind of information the
developers were looking for. Excellent that you were able to supply that
bit of information.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1939297] Re: External monitors are black (connected through USB-C hub)

2021-09-14 Thread Mathias Bjerke
I'm also having the same issue. My external screen is blank when using
docking on the 5.11.0-34-generic kernel.

** Attachment added: "2021-08-14_i915_drm_link_training_unsuccessful_error.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.11/+bug/1939297/+attachment/5525093/+files/2021-08-14_i915_drm_link_training_unsuccessful_error.log

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

Title:
  External monitors are black (connected through USB-C hub)

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-09-10 Thread Peter Nicolai Mathias Hansteen
The system now runs 5.11.0-34-generic which still has the bug.

Looking in my /boot the oldest I have is 5.11.0-31-generic which
introduced the bug as far as I can tell (thanks apt autoremove). I do
however update whenever the thing prompts me to so I would venture a
guess that whatever preceded 5.11.0-31 worked.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1942427] Re: [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-09-10 Thread Peter Nicolai Mathias Hansteen
I would urge you to reconsider the importance of this bug.

This change broke a working setup, with no apparent user-visible
workaround available.

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

Title:
  [Lenovo Thunderbolt 3 Dock] Upgrade to 5.11.0-31-generic #33 breaks
  use of external displays with i915

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


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

[Bug 1942427] Re: Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-09-02 Thread Peter Nicolai Mathias Hansteen
Unplugging the docking station and running with one external display via
hdmi works.

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

Title:
  Upgrade to 5.11.0-31-generic #33 breaks use of external displays with
  i915

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


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

[Bug 1942427] [NEW] Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-09-02 Thread Peter Nicolai Mathias Hansteen
Public bug reported:

upgrading to latest packages, my setup with 3 displays (internal plus 2
external, plugged into Lenovo USB-c base station) no longer works.

the Settings -> Displays app does find all displays, but the system only
displays on the internal one. Attempting to enable all displays fails,
the third disappears from view in the Displays app just before it
presents the "Keep settings" dialog. However no output appears on any of
the external displays other than the display's own firmware messages.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: xorg 1:7.7+22ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-31.33-generic 5.11.22
Uname: Linux 5.11.0-31-generic x86_64
ApportVersion: 2.20.11-0ubuntu65.1
Architecture: amd64
CasperMD5CheckResult: unknown
CompositorRunning: None
Date: Thu Sep  2 10:54:09 2021
DistUpgraded: 2021-06-14 13:24:54,764 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
DistroCodename: hirsute
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo UHD Graphics 620 [17aa:225d]
InstallationDate: Installed on 2020-08-13 (384 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: LENOVO 20L6S30S00
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.11.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to hirsute on 2021-06-14 (79 days ago)
dmi.bios.date: 08/10/2020
dmi.bios.release: 1.35
dmi.bios.vendor: LENOVO
dmi.bios.version: N24ET60W (1.35 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20L6S30S00
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.ec.firmware.release: 1.20
dmi.modalias: 
dmi:bvnLENOVO:bvrN24ET60W(1.35):bd08/10/2020:br1.35:efr1.20:svnLENOVO:pn20L6S30S00:pvrThinkPadT480:rvnLENOVO:rn20L6S30S00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T480
dmi.product.name: 20L6S30S00
dmi.product.sku: LENOVO_MT_20L6_BU_Think_FM_ThinkPad T480
dmi.product.version: ThinkPad T480
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.105-3~21.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.0.3-0ubuntu0.3
version.libgl1-mesa-glx: libgl1-mesa-glx 21.0.3-0ubuntu0.3
version.xserver-xorg-core: xserver-xorg-core 2:1.20.11-1ubuntu1.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1

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


** Tags: amd64 apport-bug hirsute ubuntu

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

Title:
  Upgrade to 5.11.0-31-generic #33 breaks use of external displays with
  i915

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


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

[Bug 1942427] Re: Upgrade to 5.11.0-31-generic #33 breaks use of external displays with i915

2021-09-02 Thread Peter Nicolai Mathias Hansteen
Also, switching to an "Ubuntu" session instead of "Ubuntu with Xorg"
made no difference.

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

Title:
  Upgrade to 5.11.0-31-generic #33 breaks use of external displays with
  i915

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


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

[Bug 1939740] [NEW] Reporting a bug fails because of error message "Invalid core dump"

2021-08-12 Thread Mathias Schindler
Public bug reported:

After starting my desktop, I received a message that (I believe) gnome-
shell encountered an issue and I confirmed to send this report to
ubuntu. However, the submission process failed because of the following
error message:

"Problem in gnome-shell

Das Problem kann nicht gemeldet werden:

Invalid core dump: BFD:warning: /tmp/apport_core_wu53zz5_ is truncated:
expected core file size >= 611393536, found: 356581376"

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: gnome-shell 40.2-1ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-20.21+21.10.1-generic 5.11.21
Uname: Linux 5.11.0-20-generic x86_64
ApportVersion: 2.20.11-0ubuntu67
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Thu Aug 12 20:41:22 2021
DisplayManager: gdm3
InstallationDate: Installed on 2021-07-16 (27 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210715)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
RelatedPackageVersions: mutter-common 40.2.1-1ubuntu1
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug impish wayland-session

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

Title:
  Reporting a bug fails because of error message "Invalid core dump"

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


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

[Bug 1928763] [NEW] Ubuntu does not recognize the touchpad

2021-05-18 Thread Mathias Schindler
Public bug reported:

The device in question is a Lenovo IdeaPad 5 15ARE05.

Using the touchpad does not work in Ubuntu. Input does not get
recognized.

Using an external USB mouse works fine.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: xorg 1:7.7+22ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-17.18-generic 5.11.12
Uname: Linux 5.11.0-17-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Tue May 18 10:07:58 2021
DistUpgraded: Fresh install
DistroCodename: hirsute
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Renoir [1002:1636] (rev c3) (prog-if 00 
[VGA controller])
   Subsystem: Lenovo Renoir [17aa:381b]
InstallationDate: Installed on 2021-03-24 (54 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210322)
MachineType: LENOVO 81YQ
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-17-generic 
root=UUID=216cd85a-60ae-4f84-b68c-ba90f8154877 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/14/2021
dmi.bios.release: 1.39
dmi.bios.vendor: LENOVO
dmi.bios.version: E7CN39WW
dmi.board.asset.tag: No Asset Tag
dmi.board.name: LNVNB161216
dmi.board.vendor: LENOVO
dmi.board.version: No DPK
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: IdeaPad 5 15ARE05
dmi.ec.firmware.release: 1.39
dmi.modalias: 
dmi:bvnLENOVO:bvrE7CN39WW:bd01/14/2021:br1.39:efr1.39:svnLENOVO:pn81YQ:pvrIdeaPad515ARE05:rvnLENOVO:rnLNVNB161216:rvrNoDPK:cvnLENOVO:ct10:cvrIdeaPad515ARE05:
dmi.product.family: IdeaPad 5 15ARE05
dmi.product.name: 81YQ
dmi.product.sku: LENOVO_MT_81YQ_BU_idea_FM_IdeaPad 5 15ARE05
dmi.product.version: IdeaPad 5 15ARE05
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.104-1build1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.0.1-2
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.11-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1

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


** Tags: amd64 apport-bug hirsute ubuntu wayland-session

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

Title:
  Ubuntu does not recognize the touchpad

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

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

[Bug 1926121] [NEW] After suspending, no video signal appears after waking up

2021-04-25 Thread Mathias Schindler
Public bug reported:

No video signal appears after waking up my computer from suspending it
and leaving it in this state for a while.

This issue has appeared after upgrading from Ubuntu 20.10 (where
suspending and waking up worked flawlessly) to 21.04. The computer in
question is a HP Desktop - M01-F0230ng with a Ryzen 5 3400G processor.

A similar issue exists with a Lenovo Desktop and a Ryzen 7 4600G.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: xorg 1:7.7+22ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
CasperMD5CheckResult: unknown
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 26 07:12:31 2021
DistUpgraded: 2021-04-22 20:20:35,886 ERROR got error from PostInstallScript 
./xorg_fix_proprietary.py (g-io-error-quark: Konnte Unterprozess 
"./xorg_fix_proprietary.py" nicht ausführen: Failed to execve: Datei oder 
Verzeichnis nicht gefunden (1))
DistroCodename: hirsute
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c8) (prog-if 
00 [VGA controller])
   Subsystem: Hewlett-Packard Company Picasso [103c:8643]
InstallationDate: Installed on 2020-03-28 (393 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200328)
MachineType: HP HP Desktop M01-F0xxx
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-16-generic 
root=UUID=8fc8c49e-2944-4e22-9137-fd8870710ea3 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to hirsute on 2021-04-22 (3 days ago)
dmi.bios.date: 11/26/2019
dmi.bios.release: 15.17
dmi.bios.vendor: AMI
dmi.bios.version: F.11
dmi.board.name: 8643
dmi.board.vendor: HP
dmi.board.version: SMVB
dmi.chassis.type: 3
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 52.38
dmi.modalias: 
dmi:bvnAMI:bvrF.11:bd11/26/2019:br15.17:efr52.38:svnHP:pnHPDesktopM01-F0xxx:pvr:rvnHP:rn8643:rvrSMVB:cvnHP:ct3:cvr:
dmi.product.family: 103C_53311M HP Desktop PC
dmi.product.name: HP Desktop M01-F0xxx
dmi.product.sku: 8KX18EA#ABD
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.104-1build1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.0.1-2
version.libgl1-mesa-glx: libgl1-mesa-glx 21.0.1-2
version.xserver-xorg-core: xserver-xorg-core 2:1.20.11-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug hirsute third-party-packages ubuntu wayland-session

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

Title:
  After suspending, no video signal appears after waking up

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

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

[Bug 1906452] [NEW] 5.4.0-56: External Display not recognized

2020-12-01 Thread Mathias GW
Public bug reported:

Machine:   Type: Laptop System: Acer product: Aspire A515-44 v: V1.02 serial: 
 
   Mobo: RO model: Calla_RN v: V1.02 serial:  UEFI: INSYDE v: 
1.02 
   date: 03/23/2020 
CPU:   Topology: 8-Core model: AMD Ryzen 7 4700U with Radeon Graphics bits: 
64 type: MCP 
   arch: Zen rev: 1 L2 cache: 4096 KiB 
   flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 
svm bogomips: 31939 
   Speed: 1397 MHz min/max: 1400/2000 MHz Core speeds (MHz): 1: 1397 2: 
1397 3: 1397 
   4: 1396 5: 1863 6: 1863 7: 1863 8: 4180 
Graphics:  Device-1: AMD Renoir vendor: Acer Incorporated ALI driver: amdgpu v: 
5.6.0.20.20 
   bus ID: 05:00.0 chip ID: 1002:1636 
   Display: x11 server: X.Org 1.20.8 driver: amdgpu,ati unloaded: 
fbdev,modesetting,vesa 
   compositor: marco resolution: 1920x1080~60Hz, 2560x1080~60Hz 
   OpenGL: renderer: AMD Radeon Graphics v: 4.6.14736 Core Profile 
Context 20.20 
   compat-v: 4.6.14736 direct render: Yes 

If I use kernel linux-5.6.0.56, no external display is recognized.
With linux-5.6.0.54 it works.

** Affects: linux (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/1906452

Title:
  5.4.0-56: External Display not recognized

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

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

[Bug 1810416] Re: SD card error mmc0: error -110 whilst initialising SD card

2020-10-11 Thread Mathias
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1810416/comments/25

works well for me!

[code]
Okt 11 12:38:25 ubuntu kernel: mmc0: card 59b4 removed
Okt 11 12:38:30 ubuntu kernel: mmc0: cannot verify signal voltage switch
Okt 11 12:38:30 ubuntu kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
Okt 11 12:38:30 ubuntu kernel: mmcblk0: mmc0:59b4 USDU1 113 GiB 
Okt 11 12:38:30 ubuntu kernel:  mmcblk0: p1 p2

Linux ubuntu 5.8.0-050800rc5-generic #202007140715 SMP Tue Jul 14 11:18:29 UTC 
2020 x86_64 x86_64 x86_64 GNU/Linux
[/code]

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

Title:
  SD card error mmc0: error -110 whilst initialising SD card

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

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

[Bug 1876267] Re: Changing sound left/right balance impacts on front/back

2020-07-02 Thread Mathias
Thanks Sebastien - i have reported it there to.
https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1045

No Problems with pavucontrol. Thats my workaround atm.

** Bug watch added: gitlab.gnome.org/GNOME/gnome-control-center/-/issues #1045
   https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1045

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

Title:
  Changing sound left/right balance impacts on front/back

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

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

[Bug 1876267] Re: Audio settings strange behaviour with ASUS STXII sound card

2020-07-01 Thread Mathias
Hi Hui, Thanks!
The fix resolve the problem with the mode selector. Now I can switch between 
stereo and 5.1 without falling back to the default audio device. The problem 
with the sliders is still there... BR, Mathias

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

Title:
  Audio settings strange behaviour with ASUS STXII sound card

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

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

[Bug 1878602] Re: When TBT dock is plugged into ICL TBT xHCI, port without device is in CAS state, causes many warm reset fail

2020-06-11 Thread Mathias Nyman
I'm not aware of any known issue like this.
Is there any USB3 device connected at all?

The only sign of a connected device is that one time CAS bit is set.

device never reaches enables state (no successful link training), no error, 
not going to invalid or compliance state either.
Just stays in disabled/Disconnected, as if no device is connected.

Driver tries everything to enable the device, several resets, warm reset, turns 
port power
off/on, but no reaction. 

(CAS -Cold Attach Status is set when xHC can't advance the link to the enabled 
U0 state due
to itself being in D3, or because its clocks are not running.)

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

Title:
  When TBT dock is plugged into ICL TBT xHCI, port without device is in
  CAS state, causes many warm reset fail

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

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

[Bug 1877398] [NEW] virtual camera function does not work in version 8.6.1

2020-05-07 Thread Mathias Schindler
Public bug reported:

Greetings,

This bug has already been reported to the creator of the software, the
current version is 8.7.1 and the problem is supposed to be fixed in this
version. Would it be possible to upgrade the webcamoid-package in ubuntu
(focal) to said version?

best regards,

** Affects: webcamoid (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/1877398

Title:
  virtual camera function does not work in version 8.6.1

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

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

[Bug 1876267] ProcCpuinfoMinimal.txt

2020-05-01 Thread Mathias
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1876267/+attachment/5364324/+files/ProcCpuinfoMinimal.txt

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

Title:
  Audio settings strange behaviour with ASUS STXII sound card

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

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

[Bug 1876267] Re: Audio settings strange behaviour with ASUS STXII sound card

2020-05-01 Thread Mathias
apport information

** Description changed:

  What happens:
  
  If an Asus STXII 7.1 sound card is installed and another output device
  is present, there is a strange behavior in the Gnome audio settings.
  
  After the first start of Ubuntu the Asus soundcard is not the default
  device. This can be selected in the Gnome settings. If a different
  speaker configuration is selected now. E.g. stereo instead of 5.1 or
  vice versa, the selection jumps from the Asus output device back to the
  original output device. The Asus sound card can then be selected again
  and the corresponding speaker configuration will fit now.
  
  If 5.1 is selected as the mode, there is a second problem.
  Moving the balance slider (left / right) moves the slider (front / back) 
slightly as well.
+ The slider for lfe is grayed out, even when I enable the lfe remixing in 
/etc/pulse/daemon.conf
+ In the speaker test, all 5.1 channels work fine, including the lfe.
  
  For better illustration I made a screen video. (see attachment)
  
  This is probably a general bug in Gnome - it has been occurring since
  Ubuntu 18.x and affects all distros that use Gnome since then.
  Unfortunately I was not able to make a report in Gnome, because the
  registration on the Gnome site does not work anymore... Maybe you have a
  good contact to the Gnome team?
  
  Ubuntu 20.04 LTS (Release 20.04)
  Package: gnome-control-center (1:3.36.1-1ubuntu5)
  
- 
  Expected behavior:
  It should be possible to select the sound card and the setting should be 
retained even if the speaker configuration is changed. Furthermore, the balance 
sliders should not influence each other.
- 
+ Lfe slider should work.
  
  BR,
  Mathias

** Description changed:

  What happens:
  
  If an Asus STXII 7.1 sound card is installed and another output device
  is present, there is a strange behavior in the Gnome audio settings.
  
  After the first start of Ubuntu the Asus soundcard is not the default
  device. This can be selected in the Gnome settings. If a different
  speaker configuration is selected now. E.g. stereo instead of 5.1 or
  vice versa, the selection jumps from the Asus output device back to the
  original output device. The Asus sound card can then be selected again
  and the corresponding speaker configuration will fit now.
  
  If 5.1 is selected as the mode, there is a second problem.
  Moving the balance slider (left / right) moves the slider (front / back) 
slightly as well.
  The slider for lfe is grayed out, even when I enable the lfe remixing in 
/etc/pulse/daemon.conf
  In the speaker test, all 5.1 channels work fine, including the lfe.
  
  For better illustration I made a screen video. (see attachment)
  
  This is probably a general bug in Gnome - it has been occurring since
  Ubuntu 18.x and affects all distros that use Gnome since then.
  Unfortunately I was not able to make a report in Gnome, because the
  registration on the Gnome site does not work anymore... Maybe you have a
  good contact to the Gnome team?
  
  Ubuntu 20.04 LTS (Release 20.04)
  Package: gnome-control-center (1:3.36.1-1ubuntu5)
  
  Expected behavior:
  It should be possible to select the sound card and the setting should be 
retained even if the speaker configuration is changed. Furthermore, the balance 
sliders should not influence each other.
- Lfe slider should work.
+ Lfe slider should work. (And in a perfect world this would also activate lfe 
remixing and gives the user a cross over frequency option, but this is just an 
idea :)
  
  BR,
  Mathias

** Tags added: apport-collected

** Description changed:

  What happens:
  
  If an Asus STXII 7.1 sound card is installed and another output device
  is present, there is a strange behavior in the Gnome audio settings.
  
  After the first start of Ubuntu the Asus soundcard is not the default
  device. This can be selected in the Gnome settings. If a different
  speaker configuration is selected now. E.g. stereo instead of 5.1 or
  vice versa, the selection jumps from the Asus output device back to the
  original output device. The Asus sound card can then be selected again
  and the corresponding speaker configuration will fit now.
  
  If 5.1 is selected as the mode, there is a second problem.
  Moving the balance slider (left / right) moves the slider (front / back) 
slightly as well.
  The slider for lfe is grayed out, even when I enable the lfe remixing in 
/etc/pulse/daemon.conf
  In the speaker test, all 5.1 channels work fine, including the lfe.
  
  For better illustration I made a screen video. (see attachment)
  
  This is probably a general bug in Gnome - it has been occurring since
  Ubuntu 18.x and affects all distros that use Gnome since then.
  Unfortunately I was not able to make a report in Gnome, because the
  registration on the Gnome site does not work anymore... Maybe you have a
  good contact to the Gnome team?
  
  Ubuntu 20.04 LTS (Release 20.04)
  Package: gnome-control-center (1:3.36.1

[Bug 1876267] [NEW] Audio settings strange behaviour with ASUS STXII sound card

2020-05-01 Thread Mathias
Public bug reported:

What happens:

If an Asus STXII 7.1 sound card is installed and another output device
is present, there is a strange behavior in the Gnome audio settings.

After the first start of Ubuntu the Asus soundcard is not the default
device. This can be selected in the Gnome settings. If a different
speaker configuration is selected now. E.g. stereo instead of 5.1 or
vice versa, the selection jumps from the Asus output device back to the
original output device. The Asus sound card can then be selected again
and the corresponding speaker configuration will fit now.

If 5.1 is selected as the mode, there is a second problem.
Moving the balance slider (left / right) moves the slider (front / back) 
slightly as well.

For better illustration I made a screen video. (see attachment)

This is probably a general bug in Gnome - it has been occurring since
Ubuntu 18.x and affects all distros that use Gnome since then.
Unfortunately I was not able to make a report in Gnome, because the
registration on the Gnome site does not work anymore... Maybe you have a
good contact to the Gnome team?

Ubuntu 20.04 LTS (Release 20.04)
Package: gnome-control-center (1:3.36.1-1ubuntu5)


Expected behavior:
It should be possible to select the sound card and the setting should be 
retained even if the speaker configuration is changed. Furthermore, the balance 
sliders should not influence each other.


BR,
Mathias

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

** Attachment added: "soundsettings.webm"
   
https://bugs.launchpad.net/bugs/1876267/+attachment/5364314/+files/soundsettings.webm

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

Title:
  Audio settings strange behaviour with ASUS STXII sound card

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

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

[Bug 1737972] Re: Can not start httpd (apache), missing mod_dnssd.so

2020-01-20 Thread Mathias
I have the same problem on 19.10 and can't find a fix after hours and
hours of googling.

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

Title:
  Can not start httpd (apache), missing mod_dnssd.so

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-user-share/+bug/1737972/+subscriptions

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

[Bug 1847904] [NEW] intel grafic

2019-10-13 Thread Wadewitz Mathias
Public bug reported:

cant install intel grafic drivers

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 5.0.0-31.33~18.04.1-generic 5.0.21
Uname: Linux 5.0.0-31-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.7
Architecture: amd64
BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sun Oct 13 14:59:11 2019
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 0e) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display [1043:15bd]
InstallationDate: Installed on 2019-10-12 (0 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub
 Bus 001 Device 003: ID 04f2:b483 Chicony Electronics Co., Ltd 
 Bus 001 Device 002: ID 1d57:fa01 Xenta 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: ASUSTeK COMPUTER INC. X200MA
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-31-generic 
root=UUID=704348ec-f63c-4238-870e-381e532c8448 ro quiet splash vt.handoff=1
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/13/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: X200MA.504
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: X200MA
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX200MA.504:bd11/13/2014:svnASUSTeKCOMPUTERINC.:pnX200MA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX200MA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: X
dmi.product.name: X200MA
dmi.product.sku: ASUS-NotebookSKU
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.97-1ubuntu1~18.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.8-0ubuntu0~18.04.3
version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.8-0ubuntu0~18.04.3
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

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


** Tags: amd64 apport-bug bionic ubuntu

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

Title:
  intel grafic

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

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

[Bug 1577645] Re: Brasero fails to finish image burning, gets stuck in creating image checksum after burning data to dvd.

2019-09-02 Thread Mathias Scheibe
Having the same error with 18.04 LTS.

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

Title:
  Brasero fails to finish image burning, gets stuck in creating image
  checksum after burning data to dvd.

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

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

[Bug 1095534] Re: Remmina remote desktop client goes fullscreen on the wrong display

2019-08-27 Thread Mathias Winterhalter
** Changed in: remmina (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/1095534

Title:
  Remmina remote desktop client goes fullscreen on the wrong display

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

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

[Bug 1095534] Re: Remmina remote desktop client goes fullscreen on the wrong display

2019-08-27 Thread Mathias Winterhalter
Fix Released in v1.3.6:
https://gitlab.com/Remmina/Remmina/merge_requests/1900

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

Title:
  Remmina remote desktop client goes fullscreen on the wrong display

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

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

[Bug 1095534] Re: Remmina remote desktop client goes fullscreen on the wrong display

2019-08-20 Thread Mathias Winterhalter
I opened a merge request which fixes that:
https://gitlab.com/Remmina/Remmina/merge_requests/1895

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

Title:
  Remmina remote desktop client goes fullscreen on the wrong display

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

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

[Bug 1838979] Re: [i915] framebuffer console flickers on 5.0.0 kernel

2019-08-06 Thread Mathias Leyendecker
>do you have the bug only on tty
>or also on the desktop after 3 sec?

Only on tty, although the flickering briefly happens during boot and
shutdown, as Plymouth briefly switches to text mode before LightDM is
loaded. I do not know whether Plymouth itself is affected because it's
so quick anyway.

As I said in the OP, X.Org itself is not affected.

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

Title:
  [i915] framebuffer console flickers on 5.0.0 kernel

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

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

[Bug 1838979] Re: [i915] framebuffer console flickers on 5.0.0 kernel

2019-08-05 Thread Mathias Leyendecker
apport-collect did not create anything meaningful (exited with "Package 
linux-hwe not installed and no hook available, ignoring"), but I ran a few 
commands (including dmesg) to try to include a more complete report.
Please let me know if you need anything else.

My computer is the Clevo N750WU (laptop).

** Attachment added: "i915_bug.tar.gz"
   
https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1838979/+attachment/5281057/+files/i915_bug.tar.gz

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

Title:
  [i915] framebuffer console flickers on 5.0.0 kernel

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

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

[Bug 1838979] Re: [i915] framebuffer console flickers on 5.0.0 kernel

2019-08-05 Thread Mathias Leyendecker
** Description changed:

  Since upgrading to kernel 5.0.0-23-generic, the framebuffer tty is
  unusable due to flickering like crazy, showing green rectangles instead
  of a console. X.Org and Plymouth still display correctly.
  
  In addition, the following message appears in dmesg:
  [ 9191.868497] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun
  [ 9687.876764] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun
  
  My GPU is Intel UHD Graphics 620.
  
  The problem does not occur on the 4.18.0-25-generic kernel, which
  implies this might be a problem with the kernel, or the i915 module.
  
  Description:  Ubuntu 18.04.2 LTS
  Release:  18.04
  
+ Architecture: amd64
+ 
  linux-generic-hwe-18.04 version 5.0.0.23.80
  
  In case this is relevant:
  xserver-xorg-video-intel-hwe-18.04 version 
2:2.99.917+git20171229-1ubuntu1~18.04.1
  xserver-xorg-video-fbdev-hwe-18.04 version 1:0.5.0-1ubuntu1~18.04.1

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

Title:
  [i915] framebuffer console flickers on 5.0.0 kernel

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

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

[Bug 1838979] [NEW] [i915] framebuffer console flickers on 5.0.0 kernel

2019-08-05 Thread Mathias Leyendecker
Public bug reported:

Since upgrading to kernel 5.0.0-23-generic, the framebuffer tty is
unusable due to flickering like crazy, showing green rectangles instead
of a console. X.Org and Plymouth still display correctly.

In addition, the following message appears in dmesg:
[ 9191.868497] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun
[ 9687.876764] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun

My GPU is Intel UHD Graphics 620.

The problem does not occur on the 4.18.0-25-generic kernel, which
implies this might be a problem with the kernel, or the i915 module.

Description:Ubuntu 18.04.2 LTS
Release:18.04

Architecture: amd64

linux-generic-hwe-18.04 version 5.0.0.23.80

In case this is relevant:
xserver-xorg-video-intel-hwe-18.04 version 
2:2.99.917+git20171229-1ubuntu1~18.04.1
xserver-xorg-video-fbdev-hwe-18.04 version 1:0.5.0-1ubuntu1~18.04.1

** Affects: linux-hwe (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/1838979

Title:
  [i915] framebuffer console flickers on 5.0.0 kernel

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

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

[Bug 1769432] Re: Parse error during gnuradio installation

2019-03-21 Thread Mathias Neumann
** Attachment added: "gnuradio-grc.xml"
   
https://bugs.launchpad.net/ubuntu/+source/gnuradio/+bug/1769432/+attachment/5248260/+files/gnuradio-grc.xml

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

Title:
  Parse error during gnuradio installation

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

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

[Bug 1769432] Re: Parse error during gnuradio installation

2019-03-21 Thread Mathias Neumann
For Comment 5

** Attachment added: "fals content i think"
   
https://bugs.launchpad.net/ubuntu/+source/gnuradio/+bug/1769432/+attachment/5248259/+files/gnuradio.xml

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

Title:
  Parse error during gnuradio installation

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

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

[Bug 1769432] Re: Parse error during gnuradio installation

2019-03-21 Thread Mathias Neumann
Hi there,

i have the same error, and when i look into the file:
/usr/share/mime/packages/gnuradio.xml

the content is:

/usr/share/gnuradio/grc/freedesktop/gnuradio-grc.xml

in all the other xmls which are in this directory they begin which:



Could this be the error?

Tanks

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

Title:
  Parse error during gnuradio installation

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

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

[Bug 1814069] Re: kernel linux-image-4.15.0-44 not booting on Hyperv Server 2008R2

2019-03-06 Thread Mathias
problem still exist after update to 4.15.0-46

latest working kernel for me is 4.15.0-43

hyper-v server 2008r2

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

Title:
  kernel linux-image-4.15.0-44 not booting on Hyperv Server 2008R2

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

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

[Bug 1788928] Re: psmouse: after sleep/suspend thinkpad touchpad not functional

2019-01-23 Thread Mathias
*** This bug is a duplicate of bug 1786574 ***
https://bugs.launchpad.net/bugs/1786574

Commenting to help others: I'm on Ubuntu 18.10 on a Lenovo L540 laptop and had 
the same problem.
I didn't have i2c_i801 in my blacklist either, but still the touchpad would be 
unresponsive after suspend (so not a duplicate of #1786574). 

Adding "psmouse.synaptics_intertouch=0" to GRUB_CMDLINE_LINUX in
/etc/default/grub seems to have solved it for me as well.

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

Title:
  psmouse: after sleep/suspend thinkpad touchpad not functional

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

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

[Bug 1776173] Re: qt print dialog shipped with bionic ignores printer defaults

2019-01-16 Thread Mathias Reichardt
On my system there are more missing or broken options (not only the
duplex problem) in the qt print dialog.

On my bionic system i found the following other problems:
- the printers are always on color mode, instead of gray-scale.
- the option to select the input tray is missing.
- the borders can't set smaller then the default.

it would be good if not only the duplex option would 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/1776173

Title:
  qt print dialog shipped with bionic ignores printer defaults

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1776173/+subscriptions

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

[Bug 1799931] [NEW] crash when installing ubuntu (alongside windows boot)

2018-10-25 Thread Mathias Bolle
Public bug reported:

it happened when i install ubuntu alongside windows boot manager.

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: ubiquity 18.10.12
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
CasperVersion: 1.399
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 25 13:06:17 2018
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity nomodeset quiet splash oem-config/enable=true ---
LiveMediaBuild: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug cosmic ubiquity-18.10.12 ubuntu

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

Title:
  crash when installing ubuntu (alongside windows boot)

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

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

[Bug 1788321] Re: swapon failed: invalid argument

2018-09-05 Thread Mathias
Swapon is not working with swap file or swap partion. Mkswap with Kernel
4.15.0-30-gernic and swapon with Kernel 4.15.0-33-gernic is even not
working.


VMware ESXi 6.0 + Ubuntu 18.04 (32Bit)
- Linux 4.15.0-33-generic (i686)
affected

VMware ESXi 6.0 + Ubuntu 18.04 (32Bit)
- Linux 4.15.0-30-generic (i686)
not affected

VMware ESXi 6.0 + Ubuntu 18.04 (64Bit)
- Linux 4.15.0-33-generic (x86_64)
not affected

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

Title:
  swapon failed: invalid argument

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

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

[Bug 1787445] [NEW] package texlive-full 2015.20160320-1ubuntu0.1 failed to install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

2018-08-16 Thread Rio Mathias Mungok
Public bug reported:

I often got message about system error but have no Idea what is the
problem. I am new with ubuntu. thanks for helping

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: texlive-full 2015.20160320-1ubuntu0.1
ProcVersionSignature: Ubuntu 4.4.0-130.156-generic 4.4.134
Uname: Linux 4.4.0-130-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.18
Architecture: amd64
Date: Sat Aug 11 09:50:09 2018
ErrorMessage: Abhängigkeitsprobleme - verbleibt unkonfiguriert
InstallationDate: Installed on 2016-07-09 (768 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1
 apt  1.2.15ubuntu0.2
SourcePackage: texlive-base
Title: package texlive-full 2015.20160320-1ubuntu0.1 failed to install/upgrade: 
Abhängigkeitsprobleme - verbleibt unkonfiguriert
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: texlive-base (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package texlive-full 2015.20160320-1ubuntu0.1 failed to
  install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

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

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

[Bug 1785410] [NEW] Can not open Gnome snaps as they are not connected to «gnome platform snap»

2018-08-04 Thread Mathias Bynke
Public bug reported:

After upgrading Ubuntu from 17.10 to 18.04.1 I can no longer start
gnome-system-monitor or any of the other snaps named «gnome-*» (that
were installed automatically).

Trying to open System monitor using its icon, nothing happens apart from
a spinning mouse pointer appearing for a few seconds.

Trying to run «gnome-system-monitor» from the terminal fails immediately with 
this output:
«
/snap/gnome-system-monitor/51/bin/desktop-launch: line 23: 
/home/mathias/.config/user-dirs.dirs: Permission denied
You need to connect this snap to the gnome platform snap.

You can do this with those commands:
snap install gnome-3-26-1604
snap connect gnome-system-monitor:gnome-3-26-1604 gnome-3-26-1604

(the '3-26-1604' number defines the platform version and might change)
»

This is the output from «snap list»:
«
Name  VersionRev   Tracking  Publisher Notes
amparemarkdownreader  1.0.0  1 stablejuthawong -
atom  1.28.2 185   stablesnapcrafters  classic
core  16-2.33.1  4917  stablecanonical core
gitkraken 3.6.6  74stablemmtrt -
gnome-3-26-1604   3.26.0 70stablecanonical -
gnome-calculator  3.28.2 180   stable/…  canonical -
gnome-characters  3.28.2 103   stable/…  canonical -
gnome-logs3.28.2 37stable/…  canonical -
gnome-system-monitor  3.28.2 51stable/…  canonical -
gtk-common-themes 0.1319   stable/…  canonical -
signal-desktop1.15.0 69stablesnapcrafters  -
»

Running gnome-calculator, gnome-characters, gnome-logs or gnome-system-
monitor using «snap run gnome-calculator» etc. gives similar results –
with one exception: gnome-system-monitor is the only one that gives the
«Permission denied» line quoted above. Interestingly, simply running the
command «gnome-calculator» works. Maybe I have it installed both as a
snap and as a normal application?

I tested following the instructions for gnome-system-monitor and gnome-
logs, and that does indeed fix the problem for those snaps, and I can
now launch System monitor normally. But there should of course be no
need for me to fix this in the first place.

I filed this bug using «ubuntu-bug snapd» as it is obviously related to
snap, but I am by no means sure that this is where the problem is. I
have installed all available updates.

«snap version» gives the following output:
«
snap2.34.2+18.04
snapd   2.34.2+18.04
series  16
ubuntu  18.04
kernel  4.15.0-29-generic
»

I am happy to provide more information to help get this issue fixed.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: snapd 2.34.2+18.04
ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18
Uname: Linux 4.15.0-29-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Aug  4 19:48:56 2018
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-05-01 (825 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
SourcePackage: snapd
UpgradeStatus: Upgraded to bionic on 2018-07-23 (11 days ago)

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


** Tags: amd64 apport-bug bionic

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

Title:
  Can not open Gnome snaps as they are not connected to «gnome platform
  snap»

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

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

[Bug 1742922] Re: no connection anymore with r8152 on 4.13.0-26

2018-07-24 Thread Mathias Radtke
Hi,
I just submitter my patch to the corresponding maintainers and let's see what 
happens

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

Title:
  no connection anymore with r8152 on 4.13.0-26

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

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

[Bug 1742922] Re: no connection anymore with r8152 on 4.13.0-26

2018-07-13 Thread Mathias Radtke
thanks for the hint, I had to edit the patch a bit but now it works
fine. Did this on 4.17.6

Cheers

** Patch added: "Surface Dock 3 patch on Kernel 4.17.6"
   
https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1742922/+attachment/5163286/+files/dock.patch

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

Title:
  no connection anymore with r8152 on 4.13.0-26

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

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

[Bug 1742922] Re: no connection anymore with r8152 on 4.13.0-26

2018-07-13 Thread Mathias Radtke
This problem still exists.
is there anyone working on 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/1742922

Title:
  no connection anymore with r8152 on 4.13.0-26

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

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

[Bug 1768074] Re: Mouseover does not show folder names reliably

2018-05-05 Thread Mathias Bynke
I have now reported the bug i Bugzilla. This is my first report there,
so feel free to correct any mistakes I may have made.

https://bugzilla.gnome.org/show_bug.cgi?id=795832

** Bug watch added: GNOME Bug Tracker #795832
   https://bugzilla.gnome.org/show_bug.cgi?id=795832

** Also affects: baobab via
   https://bugzilla.gnome.org/show_bug.cgi?id=795832
   Importance: Unknown
   Status: Unknown

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

Title:
  Mouseover does not show folder names reliably

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

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

[Bug 1768074] [NEW] Mouseover does not show folder names reliably

2018-04-30 Thread Mathias Bynke
Public bug reported:

When holding my cursor still over a folder in the visualization (in
either mode) I expect the name and size of the folder to appear in a
floating box, as well as the names the folders contained in it.

In my brand new install of Ubuntu 18.04, however, this does not happen most of 
the time. When holding my cursor over a folder, it «lights up» as usual, but 
after a second or two, it gets darker again, and nothing appears.
However, it sometimes does work for certain folders. Based on a small amount of 
testing, those folders seem to be close to 8 or 9 o'clock when using the pie 
chart mode, and mostly only folders at the bottom of the hierarchy. I can then 
move the cursor within the visualization and see the names of all the folders 
as usual. But if the cursor is outside any folder for some small amount of 
time, I have to «activate» it again by holding the cursor over a working folder 
again.

The behavior is quite strange and unpredictable, and I have no idea what
is causing it or what to do about it. But I thought I would report it
here as it makes it very difficult for me to use this application. I am
happy to answer any questions.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: baobab 3.28.0-1
ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
Uname: Linux 4.15.0-20-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 30 17:43:39 2018
InstallationDate: Installed on 2018-04-27 (2 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: baobab
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

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

Title:
  Mouseover does not show folder names reliably

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

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

[Bug 1721988] Re: Ubuntu 17.10 full disk encryption + Nvidia drivers not booting

2018-04-28 Thread Mathias Bynke
I was previously affected by this (albeit with the 340 version) and had
to do the workaround. After making a fresh install of the just released
Ubuntu 18.04, it seems to no problem. Even with the same encrypted setup
as before on the same machine as before, I am now prompted for the
passphrase in the splash, and the boot completes as it should. So I
would say that either this happens randomly, or it has been fixed in
18.04.

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

Title:
  Ubuntu 17.10 full disk encryption + Nvidia drivers not booting

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

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

[Bug 647578] Re: ubuntu netbook 10.4 installation crashes

2018-04-03 Thread Mathias Gebhardt
Dear Simon,

unfortunately, the netbook is not alive anymore.
Please just close this bug.

Regards,

Mathias

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

Title:
  ubuntu netbook 10.4 installation crashes

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

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

[Bug 1715155] Re: XRDP 0.9.1 sockedir does not exist

2018-03-16 Thread Mathias
This bug is fixed with XRDP version 0.9.5 and it will released in Bionic
/ Ubuntu 18.04.

** Changed in: xrdp (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/1715155

Title:
  XRDP 0.9.1 sockedir does not exist

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

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

[Bug 1732030] Re: 'apt update' dies with seccomp error

2018-01-20 Thread Mathias Hermansson
Had the same issue, but wihtout libnss-libvirt installed. Switching to
the mirror method also triggers the error.

# sed -i 
's/http:\/\/archive.ubuntu.com\/ubuntu\//mirror:\/\/mirrors.ubuntu.com\/mirrors.txt/g'
 /etc/apt/sources.list
# apt update
0% [Working]
  Seccomp prevented execution of syscall 78 on architecture amd64 

Reading package lists... Done
E: Method mirror has died unexpectedly!
E: Sub-process mirror returned an error code (31)

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

Title:
  'apt update' dies with seccomp error

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

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

[Bug 1744457] [NEW] Installing systemd-cron removes ubuntu-standard

2018-01-20 Thread Mathias Hermansson
Public bug reported:

Installing systemd-cron removes ubuntu-standard, which has a dependency
to cron.

# apt show systemd-cron
Package: systemd-cron
Version: 1.5.12-1
[...]
Provides: anacron, cron-daemon
[...]
Conflicts: anacron, cron-daemon
Replaces: anacron, cron
[...]

# apt show ubuntu-standard
Package: ubuntu-standard
Version: 1.407
[...]
Depends: busybox-static, cpio, cron, dmidecode, dnsutils, dosfstools, ed, file, 
ftp, hdparm, info, iptables, language-selector-common, libpam-systemd, 
logrotate, lshw, lsof, ltrace, man-db, mime-support, parted, pciutils, 
popularity-contest, psmisc, rsync, strace, time, usbutils, wget
[...]

Is there a reason to why cron is not in the Provides field?

** Affects: systemd-cron (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/1744457

Title:
  Installing systemd-cron removes ubuntu-standard

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

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

[Bug 1711337] Re: Firefox crashes at start on armv7L after 55.0.1 update

2018-01-11 Thread Mathias
This works with Ubuntu Mate 17.10 (armhf) on a Raspberry Pi 3

sudo apt-get purge firefox
wget 
http://launchpadlibrarian.net/352602073/firefox_57.0.4+build1-0ubuntu0.14.04.1_armhf.deb
sudo dpkg -i firefox_57.0.4+build1-0ubuntu0.14.04.1_armhf.deb
echo 'user_pref("gfx.content.azure.backends", "");' >> 
~/.mozilla/firefox/*.default/prefs.js

Many thanks, James Donald.

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

Title:
  Firefox crashes at start on armv7L after 55.0.1 update

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

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

[Bug 1658469] Re: [FFe] mod_http2 is not available in Apache

2017-11-22 Thread Mathias
Bionic includes the /etc/apache2/mods-available/proxy_http2.load file,
but the module mod_proxy_http2.so has been removed.

Is it a mistake?

Suite: Ubuntu 18.04 (bionic)
https://packages.ubuntu.com/bionic/amd64/apache2/filelist
https://packages.ubuntu.com/bionic/amd64/apache2-bin/filelist

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

Title:
  [FFe] mod_http2 is not available in Apache

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

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

[Bug 1730325] [NEW] Backup "Failed with an unknown error" with "No module named gi.repository"

2017-11-06 Thread Mathias Bynke
Public bug reported:

On a fresh install of Ubuntu 17.04, deja-dup consistently failed doing
backup, both over SSH, to an external hard drive and to the internal
drive. I tried initiating the backup both using the terminal and from
the GUI. The backup window would show up for a couple of seconds before
displaying «Failed with an unknown error».

Running deja-dup --backup with DEJA_DUP_DEBUG=1 gave me the following:

DUPLICITY: . Detaljer fra bakstykke-feilmelding: Traceback (most recent call 
last):
DUPLICITY: .   File "/usr/bin/duplicity", line 1532, in 
DUPLICITY: . with_tempdir(main)
DUPLICITY: .   File "/usr/bin/duplicity", line 1526, in with_tempdir
DUPLICITY: . fn()
DUPLICITY: .   File "/usr/bin/duplicity", line 1364, in main
DUPLICITY: . action = commandline.ProcessCommandLine(sys.argv[1:])
DUPLICITY: .   File 
"/usr/lib/python2.7/dist-packages/duplicity/commandline.py", line 1122, in 
ProcessCommandLine
DUPLICITY: . globals.backend = backend.get_backend(args[0])
DUPLICITY: .   File "/usr/lib/python2.7/dist-packages/duplicity/backend.py", 
line 223, in get_backend
DUPLICITY: . obj = get_backend_object(url_string)
DUPLICITY: .   File "/usr/lib/python2.7/dist-packages/duplicity/backend.py", 
line 211, in get_backend_object
DUPLICITY: . raise BackendException(_("Could not initialize backend: %s") % 
str(sys.exc_info()[1]))
DUPLICITY: . BackendException: Klarte ikke \xe5 starte bakstykke. No module 
named gi.repository

It turned out that installing the package python-gi solved the problem,
and the backup now runs as expected. It seems to me that this package
should have been a dependency of deja-dup.

I am running deja-dup 34.4-0ubuntu1 and duplicity 0.7.06-2ubuntu3.

** Affects: deja-dup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: gi.repository python-gi

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

Title:
  Backup "Failed with an unknown error" with "No module named
  gi.repository"

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

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

[Bug 1715155] Re: XRDP 0.9.1 sockedir does not exist

2017-10-02 Thread Mathias
** Tags added: packaging

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

Title:
  XRDP 0.9.1 sockedir does not exist

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

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

[Bug 869571] Re: gnome-shell crashed with SIGSEGV in g_type_check_instance_cast()

2017-09-25 Thread Clerc Mathias
I have the same problem on ubuntu 17.10 with gnome shell 3.26.0

Bug usually occurs while tabbing between active windows. The effect is
the screen freezing for some time and when it comes back gnome-shell
restarting (looks same as restarting it with "ALT+F2, r").

I do not have actual reproduction steps as it does not seem to occur
consistently on my machine, just about once per week.

I have ibus-mozc installed and after each crash it stops reacting to hot keys.
Manually changing input method from the toolbar brings it back to life making 
hotkeys work again.

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

Title:
  gnome-shell crashed with SIGSEGV in g_type_check_instance_cast()

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

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

[Bug 446350] Re: no bash completion for sv (from runit)

2017-09-22 Thread Mathias Wegmann
Had the same problem, so I wrote one myself.:
https://gist.github.com/WoodenDoors/6083e0a9d6927e22214493680c1f3a1c

First time writing something like that, so I don't know if it's any
good, but maybe it's still useful to someone.

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

Title:
  no bash completion for sv (from runit)

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

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

[Bug 1715155] Re: XRDP 0.9.1 sockedir does not exist

2017-09-05 Thread Mathias
** Tags added: artful

** Tags added: xrdp

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

Title:
  XRDP 0.9.1 sockedir does not exist

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

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

[Bug 1715155] [NEW] XRDP 0.9.1 sockedir does not exist

2017-09-05 Thread Mathias
Public bug reported:

Ubuntu 17.10 Beta 1 (artful) repo contains XRDP 0.9.1.

Xrdp-sesman have a bug with error message "g_mk_temp_dir:
/var/run/xrdp/sockdir does not exist"

XRDP 0.9.3.1 and XorgXrdp 0.2.3 is released and fixed this bug.

https://github.com/neutrinolabs/xrdp/issues/801

Can you refresh the Debian/Ubuntu packages to the latest version?

https://github.com/neutrinolabs/xrdp/releases
https://github.com/neutrinolabs/xorgxrdp/releases

** Affects: xrdp (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/1715155

Title:
  XRDP 0.9.1 sockedir does not exist

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

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

[Bug 1687465] [NEW] package chromium-browser 58.0.3029.81-0ubuntu2.17.04.1350 failed to install/upgrade: Extrahierte Daten für »./usr/lib/chromium-browser/libblink_web.so« können nicht nach »/usr/lib/

2017-05-01 Thread Mathias Goebel
Public bug reported:

Ubuntu meldet Fehler mit Chromium Browser, jedoch kann ich Ihn benutzen.

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: chromium-browser 58.0.3029.81-0ubuntu2.17.04.1350
Uname: Linux 4.10.12-041012-generic x86_64
ApportVersion: 2.20.4-0ubuntu4
Architecture: amd64
DRM.card0-DP-1:
 enabled: disabled
 dpms: Off
 status: disconnected
 edid-base64: 
 modes:
DRM.card0-DP-2:
 enabled: disabled
 dpms: Off
 status: disconnected
 edid-base64: 
 modes:
DRM.card0-DP-3:
 enabled: disabled
 dpms: Off
 status: disconnected
 edid-base64: 
 modes:
DRM.card0-HDMI-A-1:
 enabled: enabled
 dpms: On
 status: connected
 edid-base64: 
AP///wAi8EsoAQEBAS4UAQOANCB47p7FplZLmiUTUFQhCACBQIGAlQCpQLMA0cABAQEBKDyAoHCwI0AwIDYABkQhAAAa/QAyPxhMEQAKICAgICAg/ABMQTI0MDUKICAgICAg/wBDTjQwNDYwUUJCCiAgAKI=
 modes: 1920x1200 1920x1080 1600x1200 1680x1050 1280x1024 1440x900 1280x960 
1024x768 800x600 640x480
DRM.card0-HDMI-A-2:
 enabled: disabled
 dpms: Off
 status: disconnected
 edid-base64: 
 modes:
DRM.card0-HDMI-A-3:
 enabled: enabled
 dpms: On
 status: connected
 edid-base64: 
AP///wAJ0UJ4RVQAABQUAQOANR14LmCFplZKnCUSUFSla4BxAIHAgUCBgKnAswDRwAEBAjqAGHE4LUBYLEUA3QwRAAAe/wBaNUEwMDUxOFNMMDAw/QAyTBhTEQAKICAgICAg/ABCZW5RIEcyNDIwSERCAPk=
 modes: 1920x1080 1680x1050 1600x900 1280x1024 1280x1024 1280x960 1152x864 
1280x720 1152x720 1024x768 1024x768 832x624 800x600 800x600 640x480 640x480 
720x400
DRM.card0-VGA-1:
 enabled: disabled
 dpms: Off
 status: disconnected
 edid-base64: 
 modes:
Date: Wed Apr 26 17:32:20 2017
Desktop-Session:
 'None'
 'None'
 'None'
Env:
 'None'
 'None'
ErrorMessage: Extrahierte Daten für 
»./usr/lib/chromium-browser/libblink_web.so« können nicht nach 
»/usr/lib/chromium-browser/libblink_web.so.dpkg-new« kopiert werden: 
Unerwartetes Ende der Datei oder des Datenstroms
InstallationDate: Installed on 2017-02-14 (76 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
Load-Avg-1min: 2.00
Load-Processes-Running-Percent:   0.2%
MachineType: Gigabyte Technology Co., Ltd. H61M-D2H-USB3
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.12-041012-generic 
root=UUID=57a279a7-85ad-4458-bfce-fbdced87bf0b ro quiet splash vt.handoff=7
SourcePackage: chromium-browser
Title: package chromium-browser 58.0.3029.81-0ubuntu2.17.04.1350 failed to 
install/upgrade: Extrahierte Daten für 
»./usr/lib/chromium-browser/libblink_web.so« können nicht nach 
»/usr/lib/chromium-browser/libblink_web.so.dpkg-new« kopiert werden: 
Unerwartetes Ende der Datei oder des Datenstroms
UpgradeStatus: Upgraded to zesty on 2017-04-14 (16 days ago)
dmi.bios.date: 07/13/2012
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F7
dmi.board.name: H61M-D2H-USB3
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF7:bd07/13/2012:svnGigabyteTechnologyCo.,Ltd.:pnH61M-D2H-USB3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnH61M-D2H-USB3:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: H61M-D2H-USB3
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'firefox\n'/desktop/gnome/url-handlers/https/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'
modified.conffile..etc.default.chromium-browser: [deleted]

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

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

Title:
  package chromium-browser 58.0.3029.81-0ubuntu2.17.04.1350 failed to
  install/upgrade: Extrahierte Daten für »./usr/lib/chromium-
  browser/libblink_web.so« können nicht nach »/usr/lib/chromium-
  browser/libblink_web.so.dpkg-new« kopiert werden: Unerwartetes Ende
  der Datei oder des Datenstroms

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

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

[Bug 1683460] Re: cannot save several times a scan

2017-04-17 Thread Baptiste Mille-Mathias
actually this is possible to save again using the "save as" in the
application menu.

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

Title:
  cannot save several times a scan

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

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


[Bug 1683460] [NEW] cannot save several times a scan

2017-04-17 Thread Baptiste Mille-Mathias
Public bug reported:

I wanted to save the same scan in png and pdf but the save button kept
insensitive after the first save even after rotating a page hoping to
trigger an unsaved status.

version: 3.24.0

** Affects: simple-scan (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/1683460

Title:
  cannot save several times a scan

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

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


[Bug 1635721] Re: Add a driver for Amazon Elastic Network Adapters (ENA)

2017-02-26 Thread Mathias Bogaert
Would it be possible to also enable the enaSupport AWS AMI image
attribute?

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

Title:
  Add a driver for Amazon Elastic Network Adapters (ENA)

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

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


[Bug 1655842] Re: "Out of memory" errors after upgrade to 4.4.0-59

2017-02-23 Thread Mathias Bogaert
I can confirm 4.4.0-64.85 fixes our OOM issues.

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

Title:
  "Out of memory" errors after upgrade to 4.4.0-59

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

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


[Bug 1650990] Re: Chromium 55 not playing H264 videos

2016-12-19 Thread Mathias Hasselmann
Also on Xenial.

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

Title:
  Chromium 55 not playing H264 videos

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

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


[Bug 1650443] [NEW] package mariadb-server-10.0 10.0.28-0ubuntu0.16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-12-15 Thread Udara Mathias
Public bug reported:

i got this install mariadb

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mariadb-server-10.0 10.0.28-0ubuntu0.16.04.1
ProcVersionSignature: Ubuntu 4.4.0-53.74-generic 4.4.30
Uname: Linux 4.4.0-53-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.2
Architecture: amd64
Date: Fri Dec 16 09:55:46 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-11-19 (26 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
Logs.var.log.daemon.log:
 
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-53-generic 
root=UUID=b2abf006-cb9c-4655-92d5-4c944c70063c ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15
SourcePackage: mariadb-10.0
Title: package mariadb-server-10.0 10.0.28-0ubuntu0.16.04.1 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.mysql.debian-start: [deleted]

** Affects: mariadb-10.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package mariadb-server-10.0 10.0.28-0ubuntu0.16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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


[Bug 1640741] Re: ubuntu 17.04 gnome-software install button not working

2016-12-03 Thread Mathias Avelind
The few times I was able to open it (prior to it doing nothing
whatsoever) nothing ever happened or you had to install the application
more than once.

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

Title:
  ubuntu 17.04 gnome-software install button not working

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

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


[Bug 1606238] Re: gnome-software won't open

2016-12-03 Thread Mathias Avelind
I'm on Ubuntu Gnome 17.04 and experience the very same thing, it loads,
but never opens.

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

Title:
  gnome-software won't open

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

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


[Bug 1581713] Re: Ubuntu Software asks for an Ubuntu Single Sign-On account to install/remove a snap

2016-12-01 Thread Mathias Avelind
It doesn't make a lot of sense from a novice perspective.

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

Title:
  Ubuntu Software asks for an Ubuntu Single Sign-On account to
  install/remove a snap

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

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


[Bug 1643481] Re: Hardware freeze when going fullscreen in certain applications with Wayland

2016-11-22 Thread Mathias Avelind
I'm still running into that problem with 3.22.4-1ubuntu1 on Wayland.

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

Title:
  Hardware freeze when going fullscreen in certain applications with
  Wayland

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

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


[Bug 1643370] Re: 17.04: Unable to login with regular "Gnome" or "Gnome Classic" shell/-session

2016-11-22 Thread Mathias Avelind
Nicely done, it's working again.

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

Title:
  17.04: Unable to login with regular "Gnome" or "Gnome Classic"
  shell/-session

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

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


[Bug 1643370] Re: Unable to login with regular "Gnome" or "Gnome Classic" shell/-session

2016-11-21 Thread Mathias Avelind
apport information

** Tags added: apport-collected wayland-session zesty

** Description changed:

- When attempting to login with either regular Gnome or Gnome Classic
- shell/-session by selecting one of them through the default login screen
- it just sends me back to the login screen, making me type the password
- indefinitely, but when selecting the Wayland option, it signs me in as
- usual.
+ When attempting to login with either regular Gnome or Gnome Classic 
shell/-session by selecting one of them through the default login screen it 
just sends me back to the login screen, making me type the password 
indefinitely, but when selecting the Wayland option, it signs me in as usual.
+ --- 
+ ApportVersion: 2.20.3-0ubuntu8
+ Architecture: amd64
+ CurrentDesktop: GNOME
+ DisplayManager: gdm3
+ DistroRelease: Ubuntu 17.04
+ GsettingsChanges:
+  org.gnome.shell app-picker-view uint32 1
+  org.gnome.shell favorite-apps ['firefox.desktop', 'thunderbird.desktop', 
'qBittorrent.desktop', 'discord-canary.desktop', 'steam.desktop', 
'vlc.desktop', 'org.gnome.Nautilus.desktop']
+  org.gnome.desktop.interface gtk-im-module 'gtk-im-context-simple'
+ InstallationDate: Installed on 2016-11-09 (11 days ago)
+ InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Alpha amd64 (20161109)
+ Package: gnome-shell 3.22.1-1ubuntu2
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=sv_SE.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 4.9.0-1.2-generic 4.9.0-rc5
+ Tags:  zesty wayland-session
+ Uname: Linux 4.9.0-1-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1643370/+attachment/4780882/+files/Dependencies.txt

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

Title:
  Unable to login with regular "Gnome" or "Gnome Classic" shell/-session

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

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


[Bug 1643370] JournalErrors.txt

2016-11-21 Thread Mathias Avelind
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1643370/+attachment/4780883/+files/JournalErrors.txt

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

Title:
  Unable to login with regular "Gnome" or "Gnome Classic" shell/-session

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

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


[Bug 1635559] [NEW] Running update-manager ignores available updates

2016-10-21 Thread Mathias Dietrich
Public bug reported:

Running update-manager tells "System is up to date" although there are
multiple updates available via apt upgrade or ubuntu-software.

This is a terrible bug because with this behavior, security updates are
most probably ignored.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: update-manager 1:16.10.7
ProcVersionSignature: Ubuntu 4.8.0-26.28-generic 4.8.0
Uname: Linux 4.8.0-26-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct 21 10:31:44 2016
GsettingsChanges:
 b'com.ubuntu.update-manager' b'show-details' b'true'
 b'com.ubuntu.update-manager' b'window-height' b'1056'
 b'com.ubuntu.update-manager' b'first-run' b'false'
 b'com.ubuntu.update-manager' b'window-width' b'1855'
 b'com.ubuntu.update-manager' b'launch-time' b'1477038427'
InstallationDate: Installed on 2016-10-16 (4 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
PackageArchitecture: all
SourcePackage: update-manager
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-manager (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/1635559

Title:
  Running update-manager ignores available updates

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

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


[Bug 1635391] [NEW] [Regression] Avahi-daemon nss-mdns hostname resolution is deactivated since 16.10 resulting in "Unable to locate printer"

2016-10-20 Thread Mathias Dietrich
Public bug reported:

Since 16.10 Avahi-daemon nss-mdns hostname resolution for network printer is 
deactivated.
This causes that print jobs against these printers fail with the error "Unable 
to locate printer".

As a reminder, before 16.10, it hostname resolution worked perfectly.

As a workaround change the existing config entry in "/etc/nsswitch.conf" from:
hosts:  files resolve [!UNAVAIL=return] mdns4_minimal [NOTFOUND=return] 
dns

to:
hosts:  files mdns_minimal [NOTFOUND=return] dns myhostname

as described here:

https://wiki.archlinux.org/index.php/Avahi#Hostname_resolution

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: avahi-daemon 0.6.32-1ubuntu1
ProcVersionSignature: Ubuntu 4.8.0-26.28-generic 4.8.0
Uname: Linux 4.8.0-26-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Oct 20 21:31:12 2016
InstallationDate: Installed on 2016-10-16 (4 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
ProcEnviron:
 LANGUAGE=de_DE
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: avahi
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: avahi (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/1635391

Title:
  [Regression] Avahi-daemon nss-mdns hostname resolution is deactivated
  since 16.10 resulting in "Unable to locate printer"

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

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


[Bug 1631127] Re: Formatting USB device fails with "Timed out waiting for object (udisks-error-quark, 0)"

2016-10-06 Thread Mathias Dietrich
** Description changed:

- Formatting a complete usb device with MSDOS table fails with error:
+ Formatting a complete usb device with MBR/DOS table fails with error:
  
  "Error synchronizing after initial wipe: Timed out waiting for object
  (udisks-error-quark, 0)"
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: gnome-disk-utility 3.18.3.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Oct  6 21:30:00 2016
  InstallationDate: Installed on 2016-10-06 (0 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  ProcEnviron:
-  LANGUAGE=de_DE
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=de_DE.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=de_DE
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gnome-disk-utility
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Formatting USB device fails with "Timed out waiting for object
  (udisks-error-quark, 0)"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/1631127/+subscriptions

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

[Bug 1631127] [NEW] Formatting USB device fails with "Timed out waiting for object (udisks-error-quark, 0)"

2016-10-06 Thread Mathias Dietrich
Public bug reported:

Formatting a complete usb device with MBR/DOS table fails with error:

"Error synchronizing after initial wipe: Timed out waiting for object
(udisks-error-quark, 0)"

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: gnome-disk-utility 3.18.3.1-1ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
Uname: Linux 4.4.0-38-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Oct  6 21:30:00 2016
InstallationDate: Installed on 2016-10-06 (0 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
ProcEnviron:
 LANGUAGE=de_DE
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-disk-utility
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-disk-utility (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

** Summary changed:

- Formatting USB device fails
+ Formatting USB device fails with "Timed out waiting for object 
(udisks-error-quark, 0)"

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

Title:
  Formatting USB device fails with "Timed out waiting for object
  (udisks-error-quark, 0)"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/1631127/+subscriptions

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

[Bug 1591772] Re: clicking on a file or folder on the file picker sets mouse in drag mode

2016-06-13 Thread Mathias Bavay
I've been affected by the same bug for several weeks already. Firefox
46.0.1 on Ubuntu 14.04 with KDE.

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

Title:
  clicking on a file or folder on the file picker sets mouse in drag
  mode

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

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


[Bug 1590424] Re: Title and menu bars font size is huge after uninstalling unity 8

2016-06-08 Thread Mathias
What ever the reason was for the huge text was, thank you!

gsettings set org.gnome.desktop.interface text-scaling-factor 1

fixed it for me. The variable was set to 1.95312502 for some
strange reason.

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

Title:
  Title and menu bars font size is huge after uninstalling unity 8

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

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


[Bug 1590424] [NEW] Title and menu bars font size is huge after uninstalling unity 8

2016-06-08 Thread Mathias
Public bug reported:

I installed unity 8 on Ubuntu 16.04 LTS, and then uninstalled it (I am
currently using normal unity). But now my title and menu bar font size
is huge, and text does not fit in the title bar. How do I properly
uninstall it or reset/reinstall unity 7?

I should mention that after I installed and uninstalled unity8, every
time I log out, the screen goes black for a second with some text, and
then it disappears (it is so fast that I can't read it). So obviously
something has changed in my system.

I should also mention that my resolution is 3200x1800 with scaling of
menu and titles=1,88. This worked perfectly before the incident.

Screenshot of huge fonts
http://imgur.com/tJCNsVq

Ubuntu version: Ubuntu 16.04 LTS

Unity version:
unity:
  Installed: 7.4.0+16.04.20160526.1-0ubuntu1
  Candidate: 7.4.0+16.04.20160526.1-0ubuntu1
  Version table:
 *** 7.4.0+16.04.20160526.1-0ubuntu1 500
500 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
100 /var/lib/dpkg/status
 7.4.0+16.04.20160415-0ubuntu1 500
500 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages

** Affects: unity8-desktop-session (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

- I installed unity 8 on Ubuntu 16.04 LTS, and then uninstalled it. Now my
- title and menu bar font size is huge, and text does not fit in the title
- bar. After I installed and uninstalled unity8, every time I log out, the
- screen goes black for a second with some text, and then it disappears
- (it is so fast that I can't read it). So obviously something has changed
- in my system. How do I properly uninstall it or reinstall unity 7?
+ I installed unity 8 on Ubuntu 16.04 LTS, and then uninstalled it (I am
+ currently using normal unity). But now my title and menu bar font size
+ is huge, and text does not fit in the title bar. How do I properly
+ uninstall it or reset/reinstall unity 7?
  
- I should mention that my resolution is 3200x1800 with scaling of menu
- and titles=1,88. This worked perfectly before the incident.
+ I should mention that after I installed and uninstalled unity8, every
+ time I log out, the screen goes black for a second with some text, and
+ then it disappears (it is so fast that I can't read it). So obviously
+ something has changed in my system.
+ 
+ I should also mention that my resolution is 3200x1800 with scaling of
+ menu and titles=1,88. This worked perfectly before the incident.
  
  Screenshot of huge fonts
  http://imgur.com/tJCNsVq
  
  Ubuntu version: Ubuntu 16.04 LTS
  
  Unity version:
  unity:
-   Installed: 7.4.0+16.04.20160526.1-0ubuntu1
-   Candidate: 7.4.0+16.04.20160526.1-0ubuntu1
-   Version table:
-  *** 7.4.0+16.04.20160526.1-0ubuntu1 500
- 500 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
- 100 /var/lib/dpkg/status
-  7.4.0+16.04.20160415-0ubuntu1 500
- 500 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages
+   Installed: 7.4.0+16.04.20160526.1-0ubuntu1
+   Candidate: 7.4.0+16.04.20160526.1-0ubuntu1
+   Version table:
+  *** 7.4.0+16.04.20160526.1-0ubuntu1 500
+ 500 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
+ 100 /var/lib/dpkg/status
+  7.4.0+16.04.20160415-0ubuntu1 500
+ 500 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages

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

Title:
  Title and menu bars font size is huge after uninstalling unity 8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8-desktop-session/+bug/1590424/+subscriptions

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

[Bug 1584324] [NEW] I will update my system from 14.04 to 15.04 but it doesn work.

2016-05-21 Thread Mathias Schröder
Public bug reported:

My system informs me that a new version of kubuntu is available. After
downloading packages, the updater will start doinf update. Than it stops
with an error message.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.8
ProcVersionSignature: Ubuntu 3.13.0-86.130-generic 3.13.11-ckt39
Uname: Linux 3.13.0-86-generic i686
ApportVersion: 2.14.1-0ubuntu3.20
Architecture: i386
CrashDB: ubuntu
Date: Sat May 21 14:30:31 2016
InstallationDate: Installed on 2013-05-01 (1115 days ago)
InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release i386 (20130424)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_DE
 TERM=xterm
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2016-05-21 (0 days ago)
VarLogDistupgradeTermlog:
 
mtime.conffile..etc.update.manager.release.upgrades: 2016-05-05T20:05:47.412351

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


** Tags: apport-bug dist-upgrade i386 third-party-packages trusty

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

Title:
  I will update my system from 14.04 to 15.04 but it doesn work.

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

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


[Bug 1465196] Re: open-iscsi init script creates dependency cycle with NetworkManager

2016-05-14 Thread Mathias Lehnfeld
Occurs consistently on my Xubuntu 16.04 installation. It did
infrequently until a few days ago (I don't know exactly).

[   14.850019] systemd[1]: network-online.target: Found ordering cycle on 
network-online.target/start
[   14.850024] systemd[1]: network-online.target: Found dependency on 
NetworkManager-wait-online.service/start
[   14.850027] systemd[1]: network-online.target: Found dependency on 
basic.target/start
[   14.850029] systemd[1]: network-online.target: Found dependency on 
sockets.target/start
[   14.850030] systemd[1]: network-online.target: Found dependency on 
acpid.socket/start
[   14.850032] systemd[1]: network-online.target: Found dependency on 
sysinit.target/start
[   14.850033] systemd[1]: network-online.target: Found dependency on 
open-iscsi.service/start
[   14.850035] systemd[1]: network-online.target: Found dependency on 
network-online.target/start
[   14.850037] systemd[1]: network-online.target: Breaking ordering cycle by 
deleting job NetworkManager-wait-online.service/start
[   14.850039] systemd[1]: NetworkManager-wait-online.service: Job 
NetworkManager-wait-online.service/start deleted to break ordering cycle 
starting with network-online.target/start
[   14.850092] systemd[1]: network.target: Found ordering cycle on 
network.target/start
[   14.850094] systemd[1]: network.target: Found dependency on 
NetworkManager.service/start
[   14.850096] systemd[1]: network.target: Found dependency on 
basic.target/start
[   14.850098] systemd[1]: network.target: Found dependency on 
sockets.target/start
[   14.850099] systemd[1]: network.target: Found dependency on 
acpid.socket/start
[   14.850101] systemd[1]: network.target: Found dependency on 
sysinit.target/start
[   14.850102] systemd[1]: network.target: Found dependency on 
open-iscsi.service/start
[   14.850104] systemd[1]: network.target: Found dependency on 
network-online.target/start
[   14.850105] systemd[1]: network.target: Found dependency on 
network.target/start
[   14.850107] systemd[1]: network.target: Breaking ordering cycle by deleting 
job NetworkManager.service/start
[   14.850109] systemd[1]: NetworkManager.service: Job 
NetworkManager.service/start deleted to break ordering cycle starting with 
network.target/start

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

Title:
  open-iscsi init script creates dependency cycle with NetworkManager

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

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


[Bug 1575652] Re: PXE install prefixes /cdrom to squashfs location, fails to find it

2016-05-11 Thread Mathias Radtke
@tonymaro

thank you, this did the trick.
Local PXE install works fine now

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

Title:
  PXE install prefixes /cdrom to squashfs location, fails to find it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/live-installer/+bug/1575652/+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   9   10   >