[Bug 1794589] Re: nodejs-dev conflicts with libcurl4-openssl-dev libssh-dev libssl-dev, causing build failures
Pinning could be an option. Fixing the problem would be more fun. I hate workarounds -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794589 Title: nodejs-dev conflicts with libcurl4-openssl-dev libssh-dev libssl-dev, causing build failures To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nodejs/+bug/1794589/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1785026] Re: [LTCTest][OPAL][OP920] OPAL PRD generated logs is not available in /var/log/opal-prd.log file
Updated "[Regression Potential]" section in bug description with text from comment #5. ** Description changed: [Impact] Without this fix we end up creating /var/log/opal-prd.log file with root user. Hence rsyslogd will not be able to write data to this file. Hence we will not have enough opal-prd logs for debugging. [Test Case] - Installed fixed version of opal-prd package - restart opal-prd daemon (systemctl restart opal-prd) - check whether opal-prd logs are stored in /var/log/opal-prd.log file. [Regression Potential] - Nothing. + This is just changing owner for /var/log/opal-prd.log file. + Without this fix, file won't be created and prd logs gets dropped. + I do not see any possible regression with this fix. + + Original description follows: == Comment: #0 - PAVAMAN SUBRAMANIYAM - 2018-06-27 05:00:15 == Install a P9 Open Power Hardware with the latest OP920 Firmware images provided in the following link: http://pfd.austin.ibm.com/releasenotes/openpower9/OP920/OP920_1824A/OP920_1824A_RelNote_Main.html root@witherspoon:~# cat /etc/os-release ID="openbmc-phosphor" NAME="Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro)" VERSION="ibm-v2.1" VERSION_ID="ibm-v2.1-438-g0030304-r15-0-g19832d3" PRETTY_NAME="Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro) ibm-v2.1" BUILD_ID="ibm-v2.1-438-g0030304-r15" root@witherspoon:~# cat /var/lib/phosphor-software-manager/pnor/ro/VERSION IBM-witherspoon-ibm-OP9-v2.0.3-2.17 op-build-v2.0.3-2-g6279a04-dirty buildroot-2018.02.1-6-ga8d1126 skiboot-v6.0.4 hostboot-9df0950-p378630b occ-90208bb linux-4.16.13-openpower1-pc10362e petitboot-v1.7.1-pcc0e2c7 machine-xml-7cd20a6 hostboot-binaries-8097b96 capp-ucode-p9-dd2-v4 sbe-0b006e7 hcode-fbe2c7c Then check if the OPAL prd generated logs are captured in /var/log/opal- prd.log file. root@ltc-wspoon11:/var/log# cat opal-prd.log root@ltc-wspoon11:/var/log# echo $? 0 == Comment: #4 - VASANT HEGDE - 2018-06-27 09:12:48 == root@ltc-wspoon11:~# grep prd /var/log/syslog Jun 27 08:00:44 ltc-wspoon11 rsyslogd: file '/var/log/opal-prd.log': open error: Permission denied [v8.32.0 try http://www.rsyslog.com/e/2433 ] root@ltc-wspoon11:~# ls -l /var/log total 83332 -rw-r--r-- 1 root root 11833 Jun 15 03:15 alternatives.log -rw-r--r-- 1 root root 0 May 1 06:25 opal-prd.log -rw-r- 1 syslogadm 5084615 May 1 02:12 opal-prd.log.1 Notice that opal-prd.log file is owned by root user while opal-prd.log.1 is owned by syslog. That means someone has manually created that log file? I deleted opal-prd.log file and restart opal-prd daemon. rm /var/log/opal-prd.log systemctl restart opal-prd head /var/log/opal-prd.log Jun 27 08:02:41 ltc-wspoon11 opal-prd: CTRL: Starting PRD daemon Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: engine 3 port 0 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: engine 1 port 2 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: 0008 engine 3 port 1 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: 0008 engine 1 port 2 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: engine 3 port 1 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: engine 2 port 0 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: engine 1 port 0 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: 0008 engine 3 port 0 Jun 27 08:02:41 ltc-wspoon11 opal-prd: I2C: Found Chip: 0008 engine 1 port 0 root@ltc-wspoon11:~# ls -l /var/log ... -rw-r- 1 syslogsyslog 80804 Jun 27 08:02 opal-prd.log ... So looks like its user error. -Vasant == Comment: #6 - VASANT HEGDE - 2018-07-30 23:16:39 == Looks like logrorate stuff is creating new file with root user. Below change should fix this. :/etc/logrotate.d# diff -Naurp opal-prd.org opal-prd --- opal-prd.org 2018-07-30 13:04:08.814168026 -0400 +++ opal-prd 2018-07-31 00:09:04.145154122 -0400 @@ -5,5 +5,5 @@ delaycompress missingok notifempty - create 644 root root + create 644 syslog adm } -Vasant == Comment: #7 - VASANT HEGDE - 2018-07-30 23:17:38 == Fred, Can you look into the proposed change? -Vasant == Comment: #8 - Frederic Bonnard - 2018-07-31 01:18:28 == Hi all, thanks Vasant for the investigation. The fix looks good, I'm just going to check that on Debian as well. I'll let you know asap, F. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1785026 Title: [LTCTest][OPAL][OP920] OPAL PRD generated
[Bug 1753518] Re: package grub-efi-amd64-signed 1.93+2.02-2ubuntu8 failed to install/upgrade: installed grub-efi-amd64-signed package post-installation script subprocess returned error exit status 1
I have installed the IEEE version of the GRUB. Package: grub-ieee1275. It seems to work perfectly. However, I am not expert in computer science, therefore I have no idea of the possible consequences of this change. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1753518 Title: package grub-efi-amd64-signed 1.93+2.02-2ubuntu8 failed to install/upgrade: installed grub-efi-amd64-signed package post- installation script subprocess returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2-signed/+bug/1753518/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794219] Re: [MIR] ledmon
Hi Patricia, I agree with Steve mentioned that ledmon should *not* be critical requirement for VROC but more likely accessory to me, especially ledmon package is not covering the systemd unit to trigger the service when it's installed. What OEM Base image project proposed to include ledmon was based on our PRD (Bug #1759225), so I'm thinking if Stephane can explain more details precisely. Stephane, Can you help me to give more information to clarify this situation? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794219 Title: [MIR] ledmon To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ledmon/+bug/1794219/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1781169] Re: apt frontend locking
Frontend locking causes a regression: dpkg::post-invoke and other related scripts can no longer install/remove packages, as they are now called with 'lock' released, but 'lock-frontend' not. This needs a further change to set DPKG_FRONTEND_LOCKED for those scripts when the frontend lock is acquired. ** Tags removed: verification-needed verification-needed-bionic verification-needed-xenial ** Tags added: verification-failed verification-failed-bionic verification-failed-xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1781169 Title: apt frontend locking To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1781169/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783140] Comment bridged from LTC Bugzilla
--- Comment From xxd...@de.ibm.com 2018-10-05 03:46 EDT--- Hello Robie, Because I migrated both my KVM hypervisors to 18.04, I cannot test it anymore. But Christian Ehrhardt could reproduce the problem. Hopefully he has still the appropriate test envirnoment. Regards, Andreas (bugproxy) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783140 Title: KVM live migration fails To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-power-systems/+bug/1783140/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1735092] Re: package courier-mta 0.78.0-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: courier (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1735092 Title: package courier-mta 0.78.0-2 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/courier/+bug/1735092/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794638] Re: gdm crashes immediately after login
Ok, so it looks like this is intended behaviour, ie to save memory? When I first reported the bug, gdm3 didn't reappear when I switched to tty1, but now it reappears after five seconds or so of showing a blank screen. It then dies shortly after I switch back to tty2. It's just a pity it takes so long to reappear. ** Summary changed: - gdm crashes immediately after login + gdm kills itself (on purpose) immediately after switching away from tty1 ** Changed in: gdm3 (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794638 Title: gdm kills itself (on purpose) immediately after switching away from tty1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1794638/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1781130] Re: Split by page number : error in FontUtils
Hello, Same problem with ubuntu 18.04 and oracle java 8, open-jdk8, open-jdk11 ... Best regards, -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1781130 Title: Split by page number : error in FontUtils To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pdfsam/+bug/1781130/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1781130] Re: Split by page number : error in FontUtils
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: pdfsam (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1781130 Title: Split by page number : error in FontUtils To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pdfsam/+bug/1781130/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796246] [NEW] Assembler crashes when building ndiswrapper
Public bug reported: > lsb_release -rd Description: Ubuntu 18.04.1 LTS Release: 18.04 -- > apt-cache policy binutils binutils: Installato: 2.30-21ubuntu1~18.04 Candidato: 2.30-21ubuntu1~18.04 Tabella versione: *** 2.30-21ubuntu1~18.04 500 500 http://it.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages 100 /var/lib/dpkg/status 2.30-20ubuntu2~18.04 500 500 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages 2.30-15ubuntu1 500 500 http://it.archive.ubuntu.com/ubuntu bionic/main amd64 Packages -- when installing ndiswrapper-1.50 via apt-get: Loading new ndiswrapper-1.60 DKMS files... Building for 4.15.0-34-generic 4.15.0-36-generic Building initial module for 4.15.0-34-generic Done. ndiswrapper: Running module version sanity check. - Original module - No original module exists within this kernel - Installation - Installing to /lib/modules/4.15.0-34-generic/updates/dkms/ depmod... DKMS: install completed. Building initial module for 4.15.0-36-generic Error! Bad return status for module build on kernel: 4.15.0-36-generic (x86_64) Consult /var/lib/dkms/ndiswrapper/1.60/build/make.log for more information. --- contents of the log file: DKMS make.log for ndiswrapper-1.60 for kernel 4.15.0-36-generic (x86_64) mer 3 ott 2018, 12.29.37, CEST make: ingresso nella directory "/usr/src/linux-headers-4.15.0-36-generic" MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/crt_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/hal_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/ndis_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/ntoskernel_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/ntoskernel_io_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/rtl_exports.h MKEXPORT /var/lib/dkms/ndiswrapper/1.60/build/usb_exports.h MKSTUBS /var/lib/dkms/ndiswrapper/1.60/build/win2lin_stubs.h CC [M] /var/lib/dkms/ndiswrapper/1.60/build/crt.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/hal.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/iw_ndis.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/loader.o symbolmap: sezione: invalid section CC [M] /var/lib/dkms/ndiswrapper/1.60/build/ndis.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/ntoskernel.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/ntoskernel_io.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/pe_linker.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/pnp.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/proc.o symbolmap: sezione: invalid section CC [M] /var/lib/dkms/ndiswrapper/1.60/build/rtl.o symbolmap: sezione: invalid section CC [M] /var/lib/dkms/ndiswrapper/1.60/build/wrapmem.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/wrapndis.o CC [M] /var/lib/dkms/ndiswrapper/1.60/build/wrapper.o Assembler messages: Internal error (Errore di segmentazione). Please report this bug. CC [M] /var/lib/dkms/ndiswrapper/1.60/build/usb.o AS [M] /var/lib/dkms/ndiswrapper/1.60/build/win2lin_stubs.o scripts/Makefile.build:332: recipe for target '/var/lib/dkms/ndiswrapper/1.60/build/wrapper.o' failed make[1]: *** [/var/lib/dkms/ndiswrapper/1.60/build/wrapper.o] Error 2 make[1]: *** Attesa per i processi non terminati symbolmap: sezione: invalid section symbolmap: sezione: invalid section Makefile:1551: recipe for target '_module_/var/lib/dkms/ndiswrapper/1.60/build' failed make: *** [_module_/var/lib/dkms/ndiswrapper/1.60/build] Error 2 make: uscita dalla directory "/usr/src/linux-headers-4.15.0-36-generic" ProblemType: Package DistroRelease: Ubuntu 18.04 Package: ndiswrapper-dkms 1.60-6 ProcVersionSignature: Ubuntu 4.15.0-34.37-generic 4.15.18 Uname: Linux 4.15.0-34-generic x86_64 ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 DKMSKernelVersion: 4.15.0-36-generic Date: Wed Oct 3 12:29:45 2018 InstallationDate: Installed on 2016-01-25 (981 days ago) InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805) PackageArchitecture: all PackageVersion: 1.60-6 Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 3.6.5-3ubuntu1 PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 2.7.15~rc1-1 RelatedPackageVersions: dpkg 1.19.0.5ubuntu2 apt 1.6.3ubuntu0.1 SourcePackage: ndiswrapper Title: ndiswrapper-dkms 1.60-6: ndiswrapper kernel module failed to build UpgradeStatus: No upgrade log present (probably fresh install) ProblemType: Package DistroRelease: Ubuntu 18.04 Package: ndiswrapper-dkms 1.60-6 ProcVersionSignature: Ubuntu 4.15.0-34.37-generic 4.15.18 Uname: Linux 4.15.0-34-generic x86_64 ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 DKMSKernelVersion: 4.15.0-36-generic Date: Wed Oct 3 12:29:45 2018 InstallationDate: Installed on 2016-01-25 (981 days ago) InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805) PackageArchitecture: all PackageVersion: 1
[Bug 1796244] [NEW] xubuntu 18.10 [new] panel items showing as 'clock' (wrong name)
Public bug reported: this is a very minor cosmetic issue. System was installed earlier today (QA test install), x86. This is still first boot after install (& post-install test), I decided I wanted a second panel, so created it & started adding items. After a few items were added (applications menu, workspace switcher, window buttons, clock, weather, pulse-audio-control - items after CLOCK are all named clock in the list. They have the correct icons, and if you hover the mouse over them you can see what they are, eg. "Internal name: pulseaudio-17 \n PID 21148" with correct icon, but appears in the list as "Clock" I added more items, and those I chose were also clock. I removed some, then added some back, also named as clock. I didn't I've taken two screenshots; I looked but couldn't find another matching bug report.. I can explore further if wanted/requested... ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: xubuntu-desktop 2.227 ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic i686 ApportVersion: 2.20.10-0ubuntu11 Architecture: i386 CurrentDesktop: XFCE Date: Fri Oct 5 17:48:02 2018 InstallationDate: Installed on 2018-10-05 (0 days ago) InstallationMedia: Xubuntu 18.10 "Cosmic Cuttlefish" - Beta i386 (20181004) SourcePackage: xubuntu-meta UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: xubuntu-meta (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug cosmic i386 third-party-packages ** Attachment added: "Screenshot_2018-10-05_14-23-54.png" https://bugs.launchpad.net/bugs/1796244/+attachment/5197461/+files/Screenshot_2018-10-05_14-23-54.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796244 Title: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796244] Re: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name)
lshw report - summary hp dx6120mt (pentium 4 dual core, i686, 3gb ram, nvideo 7600gt using noveau) 32bit only cpu using x86 image ** Attachment added: "lshw full report" https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+attachment/5197467/+files/lshw_dx6120.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796244 Title: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796244] Re: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name)
same picture; except for mouse hovering over another item to show the different arrow-caused text to change, eg "Internal name: weather-18 \n PID: 21151" (note: I may have photos in wrong order) ** Attachment added: "Screenshot_2018-10-05_14-24-14.png" https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+attachment/5197465/+files/Screenshot_2018-10-05_14-24-14.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796244 Title: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796244] Re: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name)
same picture; except for mouse hovering over another item to show the different arrow-caused text to change, eg "Internal name: weather-18 \n PID: 21151" (note: I may have photos in wrong order) ** Attachment added: "Screenshot_2018-10-05_14-24-14.png" https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+attachment/5197466/+files/Screenshot_2018-10-05_14-24-14.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796244 Title: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1723094] Re: Live images should be able to turn off Snap updates
** Changed in: snapd 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/1723094 Title: Live images should be able to turn off Snap updates To manage notifications about this bug go to: https://bugs.launchpad.net/snapd/+bug/1723094/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795853] Re: Assembler crashes when building ndiswrapper
As requested, this is the link to the newly created bug https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1796246 (why did I have to do this?) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795853 Title: Assembler crashes when building ndiswrapper To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1795853/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796238] Re: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript()
** Tags added: rls-cc-incoming -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796238 Title: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1796238/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795581] Re: linux-hwe-edge: 4.15.0-37.40~16.04.1 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 phase: Uploaded + kernel-stable-phase:Promoted to proposed + kernel-stable-phase-changed:Friday, 05. October 2018 08:04 UTC ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 - phase: Uploaded - kernel-stable-phase:Promoted to proposed - kernel-stable-phase-changed:Friday, 05. October 2018 08:04 UTC + phase: Promoted to proposed + proposed-announcement-sent: true + proposed-testing-requested: true -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795581 Title: linux-hwe-edge: 4.15.0-37.40~16.04.1 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795581/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1251059] Re: Preferences dialog window too small
It is possible to resize the dialog here but I think it depends on your WM. No fix has arrived here on Xenial. I'll check Bionic asap and report back. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1251059 Title: Preferences dialog window too small To manage notifications about this bug go to: https://bugs.launchpad.net/thunderbird/+bug/1251059/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796246] Re: Assembler crashes when building ndiswrapper
*** This bug is a duplicate of bug 1795853 *** https://bugs.launchpad.net/bugs/1795853 ** This bug has been marked a duplicate of bug 1795853 Assembler crashes when building ndiswrapper -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796246 Title: Assembler crashes when building ndiswrapper To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1796246/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794638] Re: gdm kills itself (on purpose) immediately after switching away from tty1
Just a little confusion over terminology... The gdm3 process should stay running. Please use 'ps' to verify it does. The thing that provides the GUI and that gets killed and restarted is the 'gnome-shell' process owned by the 'gdm' user. Is that what you see? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794638 Title: gdm kills itself (on purpose) immediately after switching away from tty1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1794638/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795853] Re: Assembler crashes when building ndiswrapper
That's not what I meant. The 'ubuntu-bug yourfile.crash' command will create a new bug. If it doesn't then try 'apport-cli yourfile.crash' instead. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795853 Title: Assembler crashes when building ndiswrapper To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1795853/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796244] Re: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name)
*** This bug is a duplicate of bug 1758048 *** https://bugs.launchpad.net/bugs/1758048 ** This bug has been marked a duplicate of bug 1758048 Incorrect names displayed in "Items" tab -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796244 Title: xubuntu 18.10 [new] panel items showing as 'clock' (wrong name) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1796244/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] [NEW] timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency
Public bug reported: This is a POTENTIAL REGRESSION found on a SRU testing node "gonzo", with 4.4 amd64 lowlatency kernel. This issue cannot be reproduced with the kernel in -updates (4.4.0-137) And cannot be reproduced with the AMD64 generic kernel in -proposed (4.4.0-138) as well 16:50:01 DEBUG| [stdout] timer STARTING 16:50:05 ERROR| [stderr] /home/ubuntu/autotest/client/tests/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.sh: line 111: 39506 Killed ./stress-ng -v -t ${DURATION} --${s} ${INSTANCES} ${STRESS_OPTIONS} &> ${TMP_FILE} 16:50:05 DEBUG| [stdout] timer RETURNED 137 16:50:05 DEBUG| [stdout] timer FAILED (kernel oopsed) 16:50:05 DEBUG| [stdout] [ 1418.982110] BUG: unable to handle kernel paging request at 00010001 16:50:05 DEBUG| [stdout] [ 1419.065329] IP: [] kmem_cache_alloc+0x77/0x1f0 16:50:05 DEBUG| [stdout] [ 1419.137102] PGD 16f6dd067 PUD 0 16:50:05 DEBUG| [stdout] [ 1419.175602] Oops: [#6] SMP 16:50:05 DEBUG| [stdout] [ 1419.214101] Modules linked in: unix_diag binfmt_misc vhost_net vhost macvtap cuse macvlan dccp_ipv4 dccp jitterentropy_rng algif_rng ghash_generic salsa20_generic salsa20_x86_64 camellia_generic camellia_aesni_avx_x86_64 camellia_x86_64 cast6_avx_x86_64 cast6_generic cast_common serpent_avx_x86_64 serpent_sse2_x86_64 serpent_generic twofish_generic twofish_avx_x86_64 twofish_x86_64_3way twofish_x86_64 twofish_common xts algif_skcipher tgr192 wp512 rmd320 rmd256 rmd160 rmd128 md4 algif_hash af_alg aufs kvm_amd kvm ipmi_devintf ipmi_ssif irqbypass dcdbas ipmi_si fam15h_power acpi_power_meter joydev input_leds ipmi_msghandler serio_raw i2c_piix4 k10temp amd64_edac_mod 8250_fintek mac_hid shpchp edac_mce_amd edac_core ib_iser rdma_cm iw_cm ib_cm ib_sa ib_mad ib_core ib_addr iscsi_tcp libiscsi_tcp libiscsi 16:50:05 DEBUG| [stdout] [ 1420.062172] scsi_transport_iscsi autofs4 btrfs raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear crct10dif_pclmul crc32_pclmul ghash_clmulni_intel mptsas mptscsih pata_acpi hid_generic aesni_intel aes_x86_64 mptbase lrw gf128mul glue_helper psmouse ahci ablk_helper usbhid cryptd pata_atiixp libahci scsi_transport_sas bnx2 hid 16:50:05 DEBUG| [stdout] [ 1420.472200] CPU: 3 PID: 39506 Comm: ubuntu_stress_s Tainted: G D 4.4.0-138-generic #164-Ubuntu 16:50:05 DEBUG| [stdout] [ 1420.588693] Hardware name: Dell Inc. PowerEdge R415/08WNM9, BIOS 1.9.3 04/26/2012 16:50:05 DEBUG| [stdout] [ 1420.678138] task: 880177823800 ti: 88016a5b task.ti: 88016a5b 16:50:05 DEBUG| [stdout] [ 1420.767584] RIP: 0010:[] [] kmem_cache_alloc+0x77/0x1f0 16:50:05 DEBUG| [stdout] [ 1420.868478] RSP: 0018:88016a5b3bd0 EFLAGS: 00010202 16:50:05 DEBUG| [stdout] [ 1420.931924] RAX: RBX: 024000c0 RCX: 0129e216 16:50:05 DEBUG| [stdout] [ 1421.017209] RDX: 0129e215 RSI: 024000c0 RDI: 0001a5c0 16:50:05 DEBUG| [stdout] [ 1421.102496] RBP: 88016a5b3c00 R08: 8802156da5c0 R09: 00010001 16:50:05 DEBUG| [stdout] [ 1421.187782] R10: 88000ff0 R11: 0ff0 R12: 024000c0 16:50:05 DEBUG| [stdout] [ 1421.273070] R13: 811d53e8 R14: 880215003b00 R15: 880215003b00 16:50:05 DEBUG| [stdout] [ 1421.358354] FS: 7f1323076700() GS:8802156c() knlGS: 16:50:05 DEBUG| [stdout] [ 1421.455081] CS: 0010 DS: ES: CR0: 80050033 16:50:05 DEBUG| [stdout] [ 1421.523728] CR2: 00010001 CR3: 00016f6dc000 CR4: 000406f0 16:50:05 DEBUG| [stdout] [ 1421.609013] Stack: 16:50:05 DEBUG| [stdout] [ 1421.632941] 88019c080a28 cfff 16:50:05 DEBUG| [stdout] [ 1421.721371] 7fffefec 88020ff29000 88016a5b3c38 811d53e8 16:50:05 DEBUG| [stdout] [ 1421.809805] 0002 88019c080a28 cfff 7fffefec 16:50:05 DEBUG| [stdout] [ 1421.898237] Call Trace: 16:50:05 DEBUG| [stdout] [ 1421.927367] [] anon_vma_prepare+0x48/0x180 16:50:05 DEBUG| [stdout] [ 1421.996017] [] handle_mm_fault+0x13ed/0x1b70 16:50:05 DEBUG| [stdout] [ 1422.066743] [] ? atime_needs_update+0x6f/0xd0 16:50:05 DEBUG| [stdout] [ 1422.138510] [] ? touch_atime+0x33/0xd0 16:50:05 DEBUG| [stdout] [ 1422.202997] [] ? generic_file_read_iter+0x5dc/0x6b0 16:50:05 DEBUG| [stdout] [ 1422.281009] [] ? find_vma+0x68/0x70 16:50:05 DEBUG| [stdout] [ 1422.342374] [] ? follow_page_mask+0x36/0x3a0 16:50:05 DEBUG| [stdout] [ 1422.413100] [] __get_user_pages+0x11e/0x600 16:50:05 DEBUG| [stdout] [ 1422.482788] [] get_user_pages+0x52/0x60 16:50:05 DEBUG| [stdout] [ 1422.548314] [] copy_strings.isra.20+0x173/0x350 16:50:05 DEBUG| [stdout] [ 1422.622161] [] copy_strings_kernel+0x34/0x40 16:50:05 DEBUG| [stdout] [ 1422.692898] [] do_execveat_common.isra.31+0x4cc/0x770 16:50:05 DEBUG| [stdout] [ 1422.
[Bug 1770082] Re: systemd-networkd not renaming devices on boot
Wrong cut&paste: --- # dpkg -s netplan.io | grep Version Version: 0.40.1~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/1770082 Title: systemd-networkd not renaming devices on boot To manage notifications about this bug go to: https://bugs.launchpad.net/netplan/+bug/1770082/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1770082] Re: systemd-networkd not renaming devices on boot
Sorry, still not working here. Same behavior as my previous post. Maybe it's due to VirtualBox? Haven't tried on my production KDE (Proxmox) yet... --- # dpkg -s netplan.io | grep Version Version: 0.40~18.04.1 --- ** Tags removed: verification-needed-bionic ** Tags added: verification-failed-bionic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1770082 Title: systemd-networkd not renaming devices on boot To manage notifications about this bug go to: https://bugs.launchpad.net/netplan/+bug/1770082/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1758048] Re: Incorrect names displayed in "Items" tab
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: xfce4-panel (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1758048 Title: Incorrect names displayed in "Items" tab To manage notifications about this bug go to: https://bugs.launchpad.net/xfce4-panel/+bug/1758048/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796251] Re: gnome-shell crashed with SIGSEGV in __strlen_avx2() from real_save_png() from gdk_pixbuf__png_image_save_to_callback() from gdk_pixbuf_real_save_to_callback() from gdk_pixbuf_save_to
** Summary changed: - /usr/bin/gnome-shell:11:__strlen_avx2:real_save_png:gdk_pixbuf__png_image_save_to_callback:gdk_pixbuf_real_save_to_callback:gdk_pixbuf_save_to_callbackv + gnome-shell crashed with SIGSEGV in __strlen_avx2() from real_save_png() from gdk_pixbuf__png_image_save_to_callback() from gdk_pixbuf_real_save_to_callback() from gdk_pixbuf_save_to_callbackv() -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796251 Title: gnome-shell crashed with SIGSEGV in __strlen_avx2() from real_save_png() from gdk_pixbuf__png_image_save_to_callback() from gdk_pixbuf_real_save_to_callback() from gdk_pixbuf_save_to_callbackv() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796251/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796252] Re: gnome-shell crashed with assertion failure: ../../src/hb-object-private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]...
** Summary changed: - /usr/bin/gnome-shell:gnome-shell: ../../src/hb-object-private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]: \343\202\242\343\202\265\343\203\274\343\202\267\343\203\247\343\203\263 `hb_object_is_valid (obj)' \343\201\253\345\244\261\346\225\227\343\201\227\343\201\276\343\201\227\343\201\237\343\200\202 + gnome-shell crashed with assertion failure: ../../src/hb-object-private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796252 Title: gnome-shell crashed with assertion failure: ../../src/hb-object- private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]... To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796252/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796251] [NEW] gnome-shell crashed with SIGSEGV in __strlen_avx2() from real_save_png() from gdk_pixbuf__png_image_save_to_callback() from gdk_pixbuf_real_save_to_callback() from gdk_pixbuf_save_
Public bug reported: The Ubuntu Error Tracker has been receiving reports about a problem regarding gnome-shell. This problem was most recently seen with package version 3.30.0-3ubuntu1, the problem page at https://errors.ubuntu.com/problem/1473c291c70d181ad72605561ac28f3b860445d5 contains more details, including versions of packages affected, stacktrace or traceback, and individual crash reports. If you do not have access to the Ubuntu Error Tracker and are a software developer, you can request it at http://forms.canonical.com/reports/. ** Affects: gnome-shell (Ubuntu) Importance: Undecided Status: New ** Tags: cosmic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796251 Title: gnome-shell crashed with SIGSEGV in __strlen_avx2() from real_save_png() from gdk_pixbuf__png_image_save_to_callback() from gdk_pixbuf_real_save_to_callback() from gdk_pixbuf_save_to_callbackv() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796251/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796252] [NEW] gnome-shell crashed with assertion failure: ../../src/hb-object-private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]...
Public bug reported: The Ubuntu Error Tracker has been receiving reports about a problem regarding gnome-shell. This problem was most recently seen with package version 3.30.0-1ubuntu2, the problem page at https://errors.ubuntu.com/problem/9afb0dcc7f78b5b850ee48662ccf8311043a89ec contains more details, including versions of packages affected, stacktrace or traceback, and individual crash reports. If you do not have access to the Ubuntu Error Tracker and are a software developer, you can request it at http://forms.canonical.com/reports/. ** Affects: gnome-shell (Ubuntu) Importance: Undecided Status: New ** Tags: cosmic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796252 Title: gnome-shell crashed with assertion failure: ../../src/hb-object- private.hh:253: Type* hb_object_reference(Type*) [with Type = hb_face_t]... To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796252/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796183] Re: vpn indicator icon is not appearing
** Package changed: xubuntu-artwork (Ubuntu) => network-manager-applet (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796183 Title: vpn indicator icon is not appearing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1796183/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794721] Re: Remove gjs from s390x
This is done now. I was planning to look into some followup uploads to make sure things don't build uninstallable binaries (BD: gjs or similar) ** Changed in: gjs (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/1794721 Title: Remove gjs from s390x To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1794721/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796253] [NEW] With one flash drive connected other flash drive doesn't connect anymore
Public bug reported: I have a Toshiba L855 laptop at home. When I connect any usb device to a USB3 port before boot then no other USB device doesn't work and even detected after boot. This concern even USB mouse and keyboard. But when I reconnect all USB devices to laptop then they started to work. I see this behaviour on every ubuntu 16.04.5 linux kernel i.e. version 4.15, so I suspect that it is due to some linux-extra-module. I have also windows 7 OS on the same laptop and I have never struck such a problem there. ProblemType: Bug DistroRelease: Ubuntu 16.04 Package: linux-modules-extra-4.15.0-36-generic 4.15.0-36.39~16.04.1 ProcVersionSignature: Ubuntu 4.15.0-36.39~16.04.1-generic 4.15.18 Uname: Linux 4.15.0-36-generic x86_64 ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 CurrentDesktop: GNOME-Flashback:Unity Date: Fri Oct 5 12:17:20 2018 SourcePackage: linux-hwe UpgradeStatus: Upgraded to xenial on 2018-05-25 (132 days ago) ** Affects: linux-hwe (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796253 Title: With one flash drive connected other flash drive doesn't connect anymore To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1796253/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796183] Re: vpn indicator icon is not appearing
https://github.com/shimmerproject/elementary-xfce/issues/104 Can you verify that this bug is fixed in 18.10 or by manually adding the missing icon(s) to 18.04? ** Bug watch added: github.com/shimmerproject/elementary-xfce/issues #104 https://github.com/shimmerproject/elementary-xfce/issues/104 ** Package changed: network-manager-applet (Ubuntu) => xubuntu-artwork (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796183 Title: vpn indicator icon is not appearing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xubuntu-artwork/+bug/1796183/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] Missing required logs.
This bug is missing log files that will aid in diagnosing the problem. While running an Ubuntu kernel (not a mainline or third-party kernel) please enter the following command in a terminal window: apport-collect 1796250 and then change the status of the bug to 'Confirmed'. If, due to the nature of the issue you have encountered, you are unable to run this command, please add a comment stating that fact and change the bug status to 'Confirmed'. This change has been made by an automated script, maintained by the Ubuntu Kernel Team. ** Changed in: linux (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796250 Title: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1796250/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796089] Re: Microbit rebooting and resetting file system crashes Thunar
Can you reproduce this issue in the 18.10 Beta live session? The next release comes with Thunar 1.8.1, and it would help to know if the crash still occurs. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796089 Title: Microbit rebooting and resetting file system crashes Thunar To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/thunar/+bug/1796089/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1762058] Re: package astromenace 1.3.2+repack-3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: astromenace (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1762058 Title: package astromenace 1.3.2+repack-3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/astromenace/+bug/1762058/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796089] Re: Microbit rebooting and resetting file system crashes Thunar
It will be a little while before I can test that. It did happen in 16.04 and 16.10 but its only now I'm teaching coding to youngsters its a pain. Will get back once I've had got a Beta live test done! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796089 Title: Microbit rebooting and resetting file system crashes Thunar To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/thunar/+bug/1796089/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1764190] Re: While system load monitor is running, X.Org CPU usage is high
Thanks for the quick reply. Both releases shipped with the exact same package version, so it is not quite clear what change has fixed this bug. ** Changed in: xfce4-systemload-plugin (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1764190 Title: While system load monitor is running, X.Org CPU usage is high To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-systemload-plugin/+bug/1764190/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1789913] Re: X crashes with "randr: falling back to unsynchronized pixmap sharing" when connecting to an external monitor via HDMI (I+A)
I verified the xserver-xorg-core-hwe-16.04 on Dell Precision 7730(I+A). This external monitor works normal. ** Tags removed: verification-needed-xenial ** Tags added: verification-done-xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1789913 Title: X crashes with "randr: falling back to unsynchronized pixmap sharing" when connecting to an external monitor via HDMI (I+A) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1789913/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795853] Re: Assembler crashes when building ndiswrapper
As apport-cli led to the same situation as before, I tried step 2, but I couldn't find any recent error reported on that page. Therefore, after performing an automatic system update, I tried step 3, as you suggested, and the problem did not presented again (ndiswrapper-dkms installed regularly and the module compiled without errors). I cannot send you more details or create a new bug. Thanks for your help. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795853 Title: Assembler crashes when building ndiswrapper To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1795853/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 216847] Re: sshd will not start at boot if ListenAddress is set, because network interface is not yet up
10 years ago ... Same bug ! Incredible :( -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to the bug report. https://bugs.launchpad.net/bugs/216847 Title: sshd will not start at boot if ListenAddress is set, because network interface is not yet up To manage notifications about this bug go to: https://bugs.launchpad.net/openssh/+bug/216847/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795584] Re: linux-lts-xenial: 4.4.0-138.164~14.04.1 -proposed tracker
** Changed in: kernel-sru-workflow/prepare-package Status: In Progress => Fix Released ** Changed in: kernel-sru-workflow/prepare-package-meta Status: In Progress => Fix Released ** Changed in: kernel-sru-workflow/prepare-package-signed Status: In Progress => Fix Released ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1795582 phase: Packaging + kernel-stable-phase-changed:Friday, 05. October 2018 09:30 UTC + kernel-stable-phase:Uploaded ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1795582 - phase: Packaging - kernel-stable-phase-changed:Friday, 05. October 2018 09:30 UTC - kernel-stable-phase:Uploaded + phase: Uploaded -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795584 Title: linux-lts-xenial: 4.4.0-138.164~14.04.1 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795584/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1780916] Re: Serious openssl bug crashes imaps sessions
Will the patched version ever land in Ubuntu 18.04? If not, I'll patch the server myself. I'm a bit surprised (and disappointed - seeing the seriousness of this bug and the wide range of devices it affects) that the package hasn't been updated yet. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1780916 Title: Serious openssl bug crashes imaps sessions To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cyrus-imapd/+bug/1780916/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1792365] Re: On-screen keyboard works only in the login screen and the activities menu
** Summary changed: - On-screen keyboard doesn't work outside of Ubuntu's text fields + On-screen keyboard works only in the login screen and the activities menu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1792365 Title: On-screen keyboard works only in the login screen and the activities menu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gedit/+bug/1792365/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1793862] Re: package mongodb-server-core (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/mongos', which is also in package mongodb-org-mongos 4.0.2
Thank you for your report. This looks like a local configuration problem, rather than a bug in Ubuntu. Specifically, you have the third party package mongodb-org-mongos 4.0.2 installed which has broken your system. You can find pointers to get help for this sort of problem here: http://www.ubuntu.com/support/community Since we use this bug tracker to track bugs in Ubuntu, rather than configuration problems, I'm marking this bug as Invalid. This helps us to focus on fixing bugs in Ubuntu. If you believe that this is really a bug, then you may find it helpful to read "How to report bugs effectively" http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful if you would then provide a more complete description of the problem, explain why you believe this is a bug in Ubuntu rather than a problem specific to your system, and then change the bug status back to New. ** Changed in: mongodb (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1793862 Title: package mongodb-server-core (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/mongos', which is also in package mongodb-org-mongos 4.0.2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mongodb/+bug/1793862/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1427487] Re: Shutdown screen is unresponsive
I guess something happened like a common case, a soft reset won't affect data on the device unless the battery is very low. As a result, Laptop or package is unresponsive. You can check the solution on following the link https://www.hpsupporthelpline.com/ as you can get the easy solution from HP Support Assistant. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1427487 Title: Shutdown screen is unresponsive To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1427487/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796260] [NEW] UEFI installation alongside BIOS installation: System fails to boot with cannot find a valid boot entry
Public bug reported: Ubuntu Cos;ic Desktop 20191005 Test Case: 1. Boot in BIOS mode and install on entire disk => Verify that the system boots 2. Boot in UEFI and perform a new installation alongside previous one => Verify that you can boot to the new system Actual result It fails immediately on boot with a message from the uefi firmware like "Cannot find a valid boot entry" (its very brief because the system reboots immediately in a loop) Log files of the UEFI installation attached. The EFI partition is created and its content is: . ./EFI ./EFI/ubuntu ./EFI/ubuntu/grubx64.efi ./EFI/ubuntu/shimx64.efi ./EFI/ubuntu/mmx64.efi ./EFI/ubuntu/BOOTX64.CSV ./EFI/ubuntu/grub.cfg ./EFI/BOOT ./EFI/BOOT/BOOTX64.EFI ./EFI/BOOT/fbx64.efi ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: ubiquity 18.10.9 ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic x86_64 ApportVersion: 2.20.10-0ubuntu11 Architecture: amd64 CasperVersion: 1.396 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 5 09:40:31 2018 InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --- LiveMediaBuild: Ubuntu 18.10 "Cosmic Cuttlefish" - Beta amd64 (20181005) ProcEnviron: TERM=xterm-256color PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=C.UTF-8 SHELL=/bin/bash SourcePackage: ubiquity UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: ubiquity (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug cosmic rls-cc-incoming ubuntu ** Attachment added: "uefi.logs.tgz" https://bugs.launchpad.net/bugs/1796260/+attachment/5197487/+files/uefi.logs.tgz -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796260 Title: UEFI installation alongside BIOS installation: System fails to boot with cannot find a valid boot entry To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1796260/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] Re: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency
Tested on a KVM with 4.4.0-138 amd64 lowlatency kernel, didn't spot this issue. Need to test on "gonzo" -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796250 Title: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1796250/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1736680] Re: fixefox duplex printing fails
I likewise encountered this problem after upgrading from Ubuntu 16.04 to 18.04. Duplex printing works fine from other applications. I currently have Firefox 62.0.3 installed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1736680 Title: fixefox duplex printing fails To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1736680/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796238] Re: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript()
I did make this happen with 1.54.0 and 1.54.1 (about to be uploaded). But only when using "debugexit" - normal logout, reboot and fast user switching all worked without crashing. Can you confirm that? I would like to see this forwarded to (gjs initially) upstream, please. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796238 Title: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1796238/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795583] Re: linux-aws: 4.4.0-1032.35 -proposed tracker
** Summary changed: - linux-aws: -proposed tracker + linux-aws: 4.4.0-1032.35 -proposed tracker ** Changed in: kernel-sru-workflow/prepare-package Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/prepare-package Assignee: Canonical Kernel Team (canonical-kernel-team) => Kleber Sacilotto de Souza (kleber-souza) ** Changed in: kernel-sru-workflow/prepare-package-meta Status: New => In Progress ** Changed in: kernel-sru-workflow/prepare-package-meta Assignee: Canonical Kernel Team (canonical-kernel-team) => Kleber Sacilotto de Souza (kleber-souza) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795583 Title: linux-aws: 4.4.0-1032.35 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795583/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796260] Re: UEFI installation alongside BIOS installation: System fails to boot with cannot find a valid boot entry
** Description changed: Ubuntu Cos;ic Desktop 20191005 Test Case: 1. Boot in BIOS mode and install on entire disk => Verify that the system boots 2. Boot in UEFI and perform a new installation alongside previous one => Verify that you can boot to the new system Actual result It fails immediately on boot with a message from the uefi firmware like "Cannot find a valid boot entry" (its very brief because the system reboots immediately in a loop) + The BIOS installation boots fine if I switch back to BIOS mode. Log files of the UEFI installation attached. The EFI partition is created and its content is: . ./EFI ./EFI/ubuntu ./EFI/ubuntu/grubx64.efi ./EFI/ubuntu/shimx64.efi ./EFI/ubuntu/mmx64.efi ./EFI/ubuntu/BOOTX64.CSV ./EFI/ubuntu/grub.cfg ./EFI/BOOT ./EFI/BOOT/BOOTX64.EFI ./EFI/BOOT/fbx64.efi ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: ubiquity 18.10.9 ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic x86_64 ApportVersion: 2.20.10-0ubuntu11 Architecture: amd64 CasperVersion: 1.396 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 5 09:40:31 2018 InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --- LiveMediaBuild: Ubuntu 18.10 "Cosmic Cuttlefish" - Beta amd64 (20181005) ProcEnviron: - TERM=xterm-256color - PATH=(custom, no user) - XDG_RUNTIME_DIR= - LANG=C.UTF-8 - SHELL=/bin/bash + TERM=xterm-256color + PATH=(custom, no user) + XDG_RUNTIME_DIR= + LANG=C.UTF-8 + SHELL=/bin/bash SourcePackage: ubiquity UpgradeStatus: No upgrade log present (probably fresh install) ** Also affects: grub2 (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/1796260 Title: UEFI installation alongside BIOS installation: System fails to boot with cannot find a valid boot entry To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1796260/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795579] Re: linux-hwe: 4.15.0-37.40~16.04.1 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/certification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => Incomplete ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 phase: Uploaded + kernel-stable-phase-changed:Friday, 05. October 2018 10:04 UTC + kernel-stable-phase:Promoted to proposed ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 - phase: Uploaded - kernel-stable-phase-changed:Friday, 05. October 2018 10:04 UTC - kernel-stable-phase:Promoted to proposed + phase: Promoted to proposed + proposed-announcement-sent: true + proposed-testing-requested: true -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795579 Title: linux-hwe: 4.15.0-37.40~16.04.1 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795579/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1768230] Re: Long time booting : Failed to connect to lvmetad. Falling back to device scanning.
After the update to the latest available version of the package .. initramfs-tools/bionic-updates,bionic-updates,now 0.130ubuntu3.5 all [installed] the problem still exists! Distributor ID: Ubuntu Description: Ubuntu 18.04.1 LTS Release: 18.04 Codename: bionic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1768230 Title: Long time booting : Failed to connect to lvmetad. Falling back to device scanning. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1768230/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1788103] Re: [SRU] openvswitch 2.5.5
trusty with UCA/mitaka-proposed: == Totals == Ran: 94 tests in 249.6156 sec. - Passed: 88 - Skipped: 6 - Expected Fail: 0 - Unexpected Success: 0 - Failed: 0 Sum of execute time for each test: 416.3870 sec. $ apt-cache policy openvswitch-switch openvswitch-switch: Installed: 2.5.5-0ubuntu0.16.04.1~cloud0 Candidate: 2.5.5-0ubuntu0.16.04.1~cloud0 Version table: *** 2.5.5-0ubuntu0.16.04.1~cloud0 0 500 http://ubuntu-cloud.archive.canonical.com/ubuntu/ trusty-proposed/mitaka/main amd64 Packages 100 /var/lib/dpkg/status 2.0.2-0ubuntu0.14.04.3 0 500 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages 2.0.1+git20140120-0ubuntu2 0 500 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages ** Tags removed: verification-mitaka-needed ** Tags added: verification-mitaka-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1788103 Title: [SRU] openvswitch 2.5.5 To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1788103/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] Re: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency
It looks like this issue is a bit random, with 4.4.0-137-lowlatency amd64 kernel on gonzo, the kernel oops happened with sysfs and tee test. ** Description changed: - This is a POTENTIAL REGRESSION found on a SRU testing node "gonzo", with - 4.4 amd64 lowlatency kernel. + This is found on a SRU testing node "gonzo", with 4.4 amd64 lowlatency + kernel. This issue cannot be reproduced with the kernel in -updates (4.4.0-137) And cannot be reproduced with the AMD64 generic kernel in -proposed (4.4.0-138) as well - 16:50:01 DEBUG| [stdout] timer STARTING 16:50:05 ERROR| [stderr] /home/ubuntu/autotest/client/tests/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.sh: line 111: 39506 Killed ./stress-ng -v -t ${DURATION} --${s} ${INSTANCES} ${STRESS_OPTIONS} &> ${TMP_FILE} 16:50:05 DEBUG| [stdout] timer RETURNED 137 16:50:05 DEBUG| [stdout] timer FAILED (kernel oopsed) 16:50:05 DEBUG| [stdout] [ 1418.982110] BUG: unable to handle kernel paging request at 00010001 16:50:05 DEBUG| [stdout] [ 1419.065329] IP: [] kmem_cache_alloc+0x77/0x1f0 - 16:50:05 DEBUG| [stdout] [ 1419.137102] PGD 16f6dd067 PUD 0 - 16:50:05 DEBUG| [stdout] [ 1419.175602] Oops: [#6] SMP + 16:50:05 DEBUG| [stdout] [ 1419.137102] PGD 16f6dd067 PUD 0 + 16:50:05 DEBUG| [stdout] [ 1419.175602] Oops: [#6] SMP 16:50:05 DEBUG| [stdout] [ 1419.214101] Modules linked in: unix_diag binfmt_misc vhost_net vhost macvtap cuse macvlan dccp_ipv4 dccp jitterentropy_rng algif_rng ghash_generic salsa20_generic salsa20_x86_64 camellia_generic camellia_aesni_avx_x86_64 camellia_x86_64 cast6_avx_x86_64 cast6_generic cast_common serpent_avx_x86_64 serpent_sse2_x86_64 serpent_generic twofish_generic twofish_avx_x86_64 twofish_x86_64_3way twofish_x86_64 twofish_common xts algif_skcipher tgr192 wp512 rmd320 rmd256 rmd160 rmd128 md4 algif_hash af_alg aufs kvm_amd kvm ipmi_devintf ipmi_ssif irqbypass dcdbas ipmi_si fam15h_power acpi_power_meter joydev input_leds ipmi_msghandler serio_raw i2c_piix4 k10temp amd64_edac_mod 8250_fintek mac_hid shpchp edac_mce_amd edac_core ib_iser rdma_cm iw_cm ib_cm ib_sa ib_mad ib_core ib_addr iscsi_tcp libiscsi_tcp libiscsi 16:50:05 DEBUG| [stdout] [ 1420.062172] scsi_transport_iscsi autofs4 btrfs raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear crct10dif_pclmul crc32_pclmul ghash_clmulni_intel mptsas mptscsih pata_acpi hid_generic aesni_intel aes_x86_64 mptbase lrw gf128mul glue_helper psmouse ahci ablk_helper usbhid cryptd pata_atiixp libahci scsi_transport_sas bnx2 hid 16:50:05 DEBUG| [stdout] [ 1420.472200] CPU: 3 PID: 39506 Comm: ubuntu_stress_s Tainted: G D 4.4.0-138-generic #164-Ubuntu 16:50:05 DEBUG| [stdout] [ 1420.588693] Hardware name: Dell Inc. PowerEdge R415/08WNM9, BIOS 1.9.3 04/26/2012 16:50:05 DEBUG| [stdout] [ 1420.678138] task: 880177823800 ti: 88016a5b task.ti: 88016a5b 16:50:05 DEBUG| [stdout] [ 1420.767584] RIP: 0010:[] [] kmem_cache_alloc+0x77/0x1f0 16:50:05 DEBUG| [stdout] [ 1420.868478] RSP: 0018:88016a5b3bd0 EFLAGS: 00010202 16:50:05 DEBUG| [stdout] [ 1420.931924] RAX: RBX: 024000c0 RCX: 0129e216 16:50:05 DEBUG| [stdout] [ 1421.017209] RDX: 0129e215 RSI: 024000c0 RDI: 0001a5c0 16:50:05 DEBUG| [stdout] [ 1421.102496] RBP: 88016a5b3c00 R08: 8802156da5c0 R09: 00010001 16:50:05 DEBUG| [stdout] [ 1421.187782] R10: 88000ff0 R11: 0ff0 R12: 024000c0 16:50:05 DEBUG| [stdout] [ 1421.273070] R13: 811d53e8 R14: 880215003b00 R15: 880215003b00 16:50:05 DEBUG| [stdout] [ 1421.358354] FS: 7f1323076700() GS:8802156c() knlGS: 16:50:05 DEBUG| [stdout] [ 1421.455081] CS: 0010 DS: ES: CR0: 80050033 16:50:05 DEBUG| [stdout] [ 1421.523728] CR2: 00010001 CR3: 00016f6dc000 CR4: 000406f0 16:50:05 DEBUG| [stdout] [ 1421.609013] Stack: 16:50:05 DEBUG| [stdout] [ 1421.632941] 88019c080a28 cfff 16:50:05 DEBUG| [stdout] [ 1421.721371] 7fffefec 88020ff29000 88016a5b3c38 811d53e8 16:50:05 DEBUG| [stdout] [ 1421.809805] 0002 88019c080a28 cfff 7fffefec 16:50:05 DEBUG| [stdout] [ 1421.898237] Call Trace: 16:50:05 DEBUG| [stdout] [ 1421.927367] [] anon_vma_prepare+0x48/0x180 16:50:05 DEBUG| [stdout] [ 1421.996017] [] handle_mm_fault+0x13ed/0x1b70 16:50:05 DEBUG| [stdout] [ 1422.066743] [] ? atime_needs_update+0x6f/0xd0 16:50:05 DEBUG| [stdout] [ 1422.138510] [] ? touch_atime+0x33/0xd0 16:50:05 DEBUG| [stdout] [ 1422.202997] [] ? generic_file_read_iter+0x5dc/0x6b0 16:50:05 DEBUG| [stdout] [ 1422.281009] [] ? find_vma+0x68/0x70 16:50:05 DEBUG| [stdout] [ 1422.342374] [] ? follo
[Bug 1575437] Re: Asus ZenBook UX501VW frequently hangs during boot under Ubuntu 16.04
the bug reproduced on ubuntu 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/1575437 Title: Asus ZenBook UX501VW frequently hangs during boot under Ubuntu 16.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1575437/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796263] [NEW] package pppconfig 2.3.23 failed to install/upgrade: installed pppconfig package post-installation script subprocess returned error exit status 1
Public bug reported: the package pppconfig failed to update ProblemType: Package DistroRelease: Ubuntu 18.04 Package: pppconfig 2.3.23 ProcVersionSignature: Ubuntu 4.15.0-36.39~16.04.1-generic 4.15.18 Uname: Linux 4.15.0-36-generic x86_64 ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 Date: Fri Oct 5 13:15:17 2018 ErrorMessage: installed pppconfig package post-installation script subprocess returned error exit status 1 InstallationDate: Installed on 2018-04-28 (159 days ago) InstallationMedia: Ubuntu 16.04.4 LTS "Xenial Xerus" - Release amd64 (20180228) PackageArchitecture: all Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 3.6.5-3ubuntu1 PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 2.7.15~rc1-1 RelatedPackageVersions: dpkg 1.19.0.5ubuntu2 apt 1.6.5 SourcePackage: pppconfig Title: package pppconfig 2.3.23 failed to install/upgrade: installed pppconfig package post-installation script subprocess returned error exit status 1 UpgradeStatus: Upgraded to bionic on 2018-10-05 (0 days ago) modified.conffile..etc.init.d.dns-clean: [deleted] ** Affects: pppconfig (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package bionic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796263 Title: package pppconfig 2.3.23 failed to install/upgrade: installed pppconfig package post-installation script subprocess returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pppconfig/+bug/1796263/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795898] Re: TypeError: _action_done() got an unexpected keyword argument 'trans_failed'
** Branch linked: lp:~rbalint/update-manager/lp-1795898-upgrade- workaround ** Branch linked: lp:~rbalint/update-manager/lp-1795898-upgrade- workaround-bionic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795898 Title: TypeError: _action_done() got an unexpected keyword argument 'trans_failed' To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1795898/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795583] Re: linux-aws: 4.4.0-1032.35 -proposed tracker
** Changed in: kernel-sru-workflow/prepare-package Status: In Progress => Fix Released ** Changed in: kernel-sru-workflow/prepare-package-meta Status: In Progress => Fix Released ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1795582 phase: Packaging + kernel-stable-phase:Uploaded + kernel-stable-phase-changed:Friday, 05. October 2018 10:31 UTC ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1795582 - phase: Packaging - kernel-stable-phase:Uploaded - kernel-stable-phase-changed:Friday, 05. October 2018 10:31 UTC + phase: Uploaded -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795583 Title: linux-aws: 4.4.0-1032.35 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795583/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1573429] Re: virtualbox-dkms 4.3.36-dfsg-1+deb8u1ubuntu1.14.04.1: virtualbox kernel module failed to build
*** This bug is a duplicate of bug 1521734 *** https://bugs.launchpad.net/bugs/1521734 ** This bug has been marked a duplicate of bug 1521734 virtualbox-dkms: virtualbox kernel module failed to build [gcc: error: unrecognized command line option ‘-fstack-protector-strong’] -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1573429 Title: virtualbox-dkms 4.3.36-dfsg-1+deb8u1ubuntu1.14.04.1: virtualbox kernel module failed to build To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1573429/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796238] Re: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript()
I did that: https://gitlab.gnome.org/GNOME/gjs/issues/212 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796238 Title: [regression] mozjs60 crashes with SIGSEGV on gnome-shell exit, in GetPropertyOperation() from Interpret() from js::RunScript() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1796238/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1789786] Re: SRU ledmon into Bionic
Hello Woodrow, or anyone else affected, Accepted ledmon into bionic-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/ledmon/0.90-0ubuntu1~18.04.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested and change the tag from verification-needed-bionic to verification-done-bionic. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-bionic. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: ledmon (Ubuntu Bionic) Status: New => Fix Committed ** Tags added: verification-needed verification-needed-bionic ** Changed in: ledmon (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/1789786 Title: SRU ledmon into Bionic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ledmon/+bug/1789786/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1737866] Re: Too many open files when large number of routers on a host
Regression testing for xenial + UCA/pike-proposed == Totals == Ran: 94 tests in 362.4202 sec. - Passed: 89 - Skipped: 5 - Expected Fail: 0 - Unexpected Success: 0 - Failed: 0 Sum of execute time for each test: 432.8592 sec. $ apt-cache policy openvswitch-switch openvswitch-switch: Installed: 2.8.4-0ubuntu0.17.10.1 Candidate: 2.8.4-0ubuntu0.17.10.1 Version table: *** 2.8.4-0ubuntu0.17.10.1 500 500 http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-proposed/pike/main amd64 Packages 100 /var/lib/dpkg/status 2.5.4-0ubuntu0.16.04.1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages 2.5.2-0ubuntu0.16.04.2 500 500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages 2.5.0-0ubuntu1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu xenial/main amd64 Packages ** Tags removed: verification-pike-needed ** Tags added: verification-pike-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1737866 Title: Too many open files when large number of routers on a host To manage notifications about this bug go to: https://bugs.launchpad.net/charm-neutron-openvswitch/+bug/1737866/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796265] [NEW] Gnome-shell unusable after unlocking screen
Public bug reported: After locking the screen, unlocking it again does not return me to a properly working gnome-shell. I can see the desktop background and the top panel (which is responsive). However I cannot access the activities overview, and the Ubuntu dock is missing. One time I noticed that the search field from the activities overview was visible, and it was possible to search for an application. The search did return results, and it was possible to start applications, but they did not show up on the screen. In some cases I could run gnome-shell -r, but this would end the whole session and return me to the login screen. ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: gnome-shell 3.30.0-3ubuntu1 ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic x86_64 ApportVersion: 2.20.10-0ubuntu11 Architecture: amd64 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 5 12:44:13 2018 DisplayManager: gdm3 EcryptfsInUse: Yes InstallationDate: Installed on 2017-07-03 (458 days ago) InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412) SourcePackage: gnome-shell UpgradeStatus: Upgraded to cosmic on 2018-10-05 (0 days ago) ** Affects: gnome-shell (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug cosmic third-party-packages -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796265 Title: Gnome-shell unusable after unlocking screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796265/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796268] [NEW] Ubuntu crashed during installation from DVD
Public bug reported: grub-installer failed ProblemType: Bug DistroRelease: Ubuntu 18.04 Package: ubiquity 18.04.14.6 ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18 Uname: Linux 4.15.0-29-generic x86_64 ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 CasperVersion: 1.394 Date: Fri Oct 5 16:23:26 2018 InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --- LiveMediaBuild: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) SourcePackage: grub-installer UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: grub-installer (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug bionic ubiquity-18.04.14.6 ubuntu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796268 Title: Ubuntu crashed during installation from DVD To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1796268/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] Re: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency
** Also affects: ubuntu-kernel-tests 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/1796250 Title: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1796250/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795092] Re: xubuntu 18.10 daily image (x86) fails to boot - initramfs
installed lubuntu 18.04.1 on dell 755 without updates, format of /, but used my old /home (from fedora). rebooted post install, pointed sources to my ISP's ubuntu mirror (bandwidth free updates) & dist-upgrade. I added xubuntu-desktop & some of the apps missing from my modified xfce desktop. added canonical kernel ppa; changed [ppa] source to point to cosmic; update & install kernel. reboot & login (normally!) guiverc@755-lubu:~$ screenfetch -n guiverc@755-lubu OS: Ubuntu 18.04 bionic Kernel: x86_64 Linux 4.18.0-8-generic Uptime: 10m Packages: 1678 Shell: bash 4.4.19 Resolution: 1680x1050 DE: XFCE WM: Xfwm4 WM Theme: Agualemon GTK Theme: Mist [GTK2] Icon Theme: gnome Font: Sans 10 CPU: Intel Core2 Duo E6850 @ 2x 2.71GHz GPU: ATI RV515 RAM: 477MiB / 4824MiB -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795092 Title: xubuntu 18.10 daily image (x86) fails to boot - initramfs To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1795092/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1251059] Re: Preferences dialog window too small
Thanks for the update, Ken. And just to confirm, which window do you have a problem with? Is it the general tab or the adanced tab. What do you mean by "WM"? Thanks G -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1251059 Title: Preferences dialog window too small To manage notifications about this bug go to: https://bugs.launchpad.net/thunderbird/+bug/1251059/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1736680] Re: firefox duplex printing fails
** Summary changed: - fixefox duplex printing fails + firefox duplex printing fails -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1736680 Title: firefox duplex printing fails To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1736680/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796265] Re: Gnome-shell unusable after unlocking screen
Addon: This seems to affect only the X11 version, the Wayland session appears to lock and unlock just fine, so I'm switching to that for now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796265 Title: Gnome-shell unusable after unlocking screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1796265/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1755536] Re: gnome-control-center is not open ubuntu 18.04
This bug affects me too. Downloaded 18.04.01 today (5/10/2018) Fresh install, no changes at installation (next next next ...) Log in, trying to open settings -> Send Error report trying to run gnome-control-center from terminal -> Core dump trying to remove gnome-control-center (is removed with ubuntu-desktop as well) sudo apt remove gnome-control-center sudo apt autoremove sudo apt install gnome-control-center Still not working. same results as above -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1755536 Title: gnome-control-center is not open ubuntu 18.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1755536/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1780790] Re: Menus, tooltips and dropdowns are often misplaced on screen
This is an extremely annoying bug which creates quite a lot of lack of polish of the desktop. Should I be submitting it upstream or something? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1780790 Title: Menus, tooltips and dropdowns are often misplaced on screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1780790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1774177] Re: Personal scaling settings not used on the unlock screen
This happens to me 100% of the time now and is extremely annoying. Issues like this have made the 18.04 GNOME transition a clear step back in desktop polish. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1774177 Title: Personal scaling settings not used on the unlock screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1774177/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796163] Fix proposed to oslo.config (stable/rocky)
Fix proposed to branch: stable/rocky Review: https://review.openstack.org/608235 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796163 Title: py3 failure cfg.py - dictionary changed size during iteration To manage notifications about this bug go to: https://bugs.launchpad.net/oslo.config/+bug/1796163/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794292] Re: plymouthd crashed with SIGSEGV in /sbin/plymouthd:11 in ply_renderer_set_handler_for_input_source -> ply_keyboard_stop_watching_for_renderer_input -> ply_keyboard_stop_watching_for_i
At my laptop it happens at (almost) every start. FYI I attach a symbolic trace ** Attachment added: "symbolic trace of crash after released fix" https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1794292/+attachment/5197512/+files/stack1.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794292 Title: plymouthd crashed with SIGSEGV in /sbin/plymouthd:11 in ply_renderer_set_handler_for_input_source -> ply_keyboard_stop_watching_for_renderer_input -> ply_keyboard_stop_watching_for_input -> ply_device_manager_deactivate_keyboards -> on_deactivate To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1794292/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1774177] Re: Personal scaling settings not used on the unlock screen
This bug doesn't exist on Wayland. It does seem like GNOME developers don't care about Xorg anymore and these kinds of bugs won't get fixed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1774177 Title: Personal scaling settings not used on the unlock screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1774177/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794721] Re: Remove gjs from s390x
infinity wants new uploads of all the packages that have had removed binaries on s390x so that 1) the build log shows correctly as dep-wait or failed and 2) so that the s390x binaries don't accidentally get copied back to the archive. I uploaded some of these to the cosmic unapproved queue already. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794721 Title: Remove gjs from s390x To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1794721/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795566] Re: linux-oem: 4.15.0-1022.25 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/certification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 phase: Uploaded + kernel-stable-phase:Promoted to proposed + kernel-stable-phase-changed:Friday, 05. October 2018 11:32 UTC ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1795564 - phase: Uploaded - kernel-stable-phase:Promoted to proposed - kernel-stable-phase-changed:Friday, 05. October 2018 11:32 UTC + phase: Promoted to proposed + proposed-announcement-sent: true + proposed-testing-requested: true -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795566 Title: linux-oem: 4.15.0-1022.25 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1795566/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1795092] Re: xubuntu 18.10 daily image (x86) fails to boot - initramfs
found my xubuntu 18.10 daily image iso (updated this morning 2018-10-04 is date found in zsync) xubuntu plymouth screen, ctrl-alt-f2 & scrolling [ 99.99] ehci-pci :00:1a.7:dma_direct_map_sg: overflow 0x00016cbe6+2048 of device mask and eventually --- [ 9.570802] sd 8:0:0:0: [sdb] No Caching mode page found [ 9.570846] sd 8:0:0:0: [sdb] Assuming drive cache: write through "BusyBox v1.27.2 (Ubuntu 1:1.27.2-2ubuntu4) built-in shell (ash) Enter 'help' for a list of built-in commands (initramfs) Unable to find a medium containing a live file system [ 234.592022] usb 4-1:device descriptor read/64, error -110 [ 240.353082] usb 4-1:device descriptor read/8m error -110 // three more usb 4-1 messages ... usb usb4-port1: unable to enumerate USB device // the usb messages I ignore; they appeared when I started using a cheap powered // hub which is always connected ; occurred on fedora (now gone) & opensuse // on ctrl-alt-f2 or text screen there were more usb messages I ignore // also note I'm keying this text in on nearby desktop; typos may exist. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1795092 Title: xubuntu 18.10 daily image (x86) fails to boot - initramfs To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1795092/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796187] Re: Writer hangs for over 20 minutes loading a 3MB, 450-page DOCX
I can observe the issue in an up-to-date bionic amd64 VM. Opening the attached document and rendering it completely took 32 minutes. This is an insane amount of time to load a 516 pages document (153316 words, 927209 characters), but it eventually completed and once done the document can be navigated and edited just fine, as far as I can tell. If there isn't one already, can you please report a bug upstream at https://bugs.documentfoundation.org/enter_bug.cgi?product=LibreOffice&format=guided, and share the link to that bug here? Thanks! ** Changed in: libreoffice (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796187 Title: Writer hangs for over 20 minutes loading a 3MB, 450-page DOCX To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1796187/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796187] Re: Writer hangs for over 20 minutes loading a 3MB, 450-page DOCX
Note that I also tested libreoffice 6.0.6 that's installed by default in Ubuntu 18.04 (the deb packages, not the snap), and it took over 20 minutes to load the same document, so it's not a snap-specific problem. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796187 Title: Writer hangs for over 20 minutes loading a 3MB, 450-page DOCX To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1796187/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796250] Re: timer test in ubuntu_stress_smoke_test will cause kernel oops on X-lowlatency
So I believe this is the sysfs test that causes the issues, the subsequent tee timer stressors just appear to be broken because the sysfs stressor got the kernel into a mangled broken state. I was able to run the tee and timer stressors on a cleanly booted 4.4.0-137-lowlatency kernel without any issues. Running the sysfs stressor caused a load of oopses as follows: 740.873265] iounmap: bad address c90004da [ 740.929503] CPU: 4 PID: 1788 Comm: stress-ng-sysfs Not tainted 4.4.0-138-lowlatency #164-Ubuntu [ 740.929509] Hardware name: Dell Inc. PowerEdge R415/08WNM9, BIOS 1.9.3 04/26/2012 [ 740.929512] 0286 5dc48b8f33ce7222 8800da813bc0 8140dc61 [ 740.929536] 8800df1f9d80 c90004da 8800da813be0 8106ec1f [ 740.929541] 8800df1f9d80 c90004da 8800da813bf0 8106ec5c [ 740.929544] Call Trace: [ 740.929553] [] dump_stack+0x63/0x82 [ 740.929558] [] iounmap.part.1+0x7f/0x90 [ 740.929563] [] iounmap+0x2c/0x30 [ 740.929572] [] acpi_os_map_cleanup.part.9+0x31/0x40 [ 740.929587] [] acpi_os_unmap_iomem+0xbe/0xf0 [ 740.929607] [] read_log+0xad/0x170 [ 740.929619] [] tpm_binary_bios_measurements_open+0x37/0x90 [ 740.929626] [] do_dentry_open+0x202/0x310 [ 740.929632] [] ? tpm_ascii_bios_measurements_show+0x260/0x260 [ 740.929645] [] vfs_open+0x54/0x80 [ 740.929656] [] ? may_open+0x5b/0xf0 [ 740.929662] [] path_openat+0x1b6/0x13a0 [ 740.929670] [] ? __do_page_fault+0x23a/0x440 [ 740.929678] [] ? free_one_page+0x191/0x340 [ 740.929686] [] do_filp_open+0x91/0x100 [ 740.929695] [] ? mntput_no_expire+0x2e/0x1b0 [ 740.929702] [] ? __alloc_fd+0xc7/0x190 [ 740.929720] [] do_sys_open+0x138/0x2b0 [ 740.929735] [] SyS_open+0x1e/0x20 [ 740.929747] [] entry_SYSCALL_64_fastpath+0x22/0xc1 [ 749.735460] BUG: unable to handle kernel paging request at 00010001 [ 749.818685] IP: [] kmem_cache_alloc_trace+0x76/0x210 [ 749.896706] PGD d3e68067 PUD 0 [ 749.934172] Oops: [#1] PREEMPT SMP [ 749.981003] Modules linked in: kvm_amd kvm irqbypass ipmi_devintf ipmi_ssif dcdbas input_leds joydev amd64_edac_mod 8250_fintek k10temp fam15h_power serio_raw edac_mce_amd ipmi_si i2c_piix4 acpi_power_meter edac_core ipmi_msghandler shpchp mac_hid ib_iser rdma_cm iw_cm ib_cm ib_sa ib_mad ib_core ib_addr iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi autofs4 btrfs raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel hid_generic aes_x86_64 mptsas lrw mptscsih gf128mul usbhid glue_helper ablk_helper pata_acpi hid cryptd psmouse pata_atiixp mptbase ahci bnx2 libahci scsi_transport_sas [ 750.743813] CPU: 4 PID: 1791 Comm: stress-ng-sysfs Not tainted 4.4.0-138-lowlatency #164-Ubuntu [ 750.847825] Hardware name: Dell Inc. PowerEdge R415/08WNM9, BIOS 1.9.3 04/26/2012 [ 750.937282] task: 8800d3e45580 ti: 8800da824000 task.ti: 8800da824000 [ 751.026734] RIP: 0010:[] [] kmem_cache_alloc_trace+0x76/0x210 [ 751.133881] RSP: 0018:8800da827c18 EFLAGS: 00010202 [ 751.197334] RAX: RBX: RCX: 0b1af204 [ 751.282627] RDX: 0b1af004 RSI: 0b1af004 RDI: 0001a740 [ 751.367921] RBP: 8800da827c58 R08: 880215003b00 R09: 8129e635 [ 751.453209] R10: 0637760b R11: R12: 024000c0 [ 751.538502] R13: 00010001 R14: 88020fc24900 R15: 880215003b00 [ 751.623798] FS: 7f8e5a1f4700() GS:88021570() knlGS: [ 751.720535] CS: 0010 DS: ES: CR0: 80050033 [ 751.789183] CR2: 00010001 CR3: db29e000 CR4: 000406f0 [ 751.874477] Stack: [ 751.898415] 88020fc24900 0030 [ 751.986848] 88020f67cf00 8800d94cf980 88020fc24900 8802124386a8 [ 752.075289] 8800da827c98 8129e635 88020fc24900 [ 752.163722] Call Trace: [ 752.192853] [] kernfs_fop_open+0x275/0x370 [ 752.261505] [] do_dentry_open+0x202/0x310 [ 752.329117] [] ? kernfs_fop_release+0x60/0x60 [ 752.400893] [] vfs_open+0x54/0x80 [ 752.460186] [] ? may_open+0x5b/0xf0 [ 752.521559] [] path_openat+0x1b6/0x13a0 [ 752.587093] [] ? bad_area_access_error+0x43/0x50 [ 752.661986] [] do_filp_open+0x91/0x100 [ 752.726486] [] ? __alloc_fd+0xc7/0x190 [ 752.790980] [] do_sys_open+0x138/0x2b0 [ 752.855479] [] SyS_open+0x1e/0x20 [ 752.914775] [] entry_SYSCALL_64_fastpath+0x22/0xc1 [ 752.991744] Code: 08 48 39 f2 75 e7 48 83 78 10 00 4c 8b 28 0f 84 48 01 00 00 4d 85 ed 0f 84 3f 01 00 00 49 63 47 20 49 8b 3f 48 8d 8a 00 02 00 00 <49> 8b 5c 05 00 4c 89 e8 65 48 0f c7 0f 0f 94 c0 84 c0 74 ab 49 [ 753.217863] RIP [] kmem_cache_alloc_trace+0x76/0x210 [ 753.296928] RSP [ 753.338534] CR2: 00010001 [
[Bug 1794721] Re: Remove gjs from s390x
Some coordination would have been nice. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794721 Title: Remove gjs from s390x To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1794721/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796273] [NEW] Anki crash at starts with unsupported QT library version
Public bug reported: Installing Anki from the repository in Ubuntu 18.10 makes the application crashing because of a mismatch of QT library (5.9 required by Anki upstream, and built with 5.11). Going further make the application crashing. Installing the application from the tarball downloadable from the website works. Maybe Anki should be converted also to snap? ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: anki 2.1.0+dfsg-1 ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic x86_64 ApportVersion: 2.20.10-0ubuntu11 Architecture: amd64 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 5 13:39:59 2018 InstallationDate: Installed on 2017-09-17 (383 days ago) InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170915) PackageArchitecture: all SourcePackage: anki UpgradeStatus: Upgraded to cosmic on 2018-10-02 (2 days ago) ** Affects: anki (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug cosmic ** Attachment added: "Screenshot from 2018-10-05 13-43-01.png" https://bugs.launchpad.net/bugs/1796273/+attachment/5197513/+files/Screenshot%20from%202018-10-05%2013-43-01.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796273 Title: Anki crash at starts with unsupported QT library version To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/anki/+bug/1796273/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796273] Re: Anki crash at starts with unsupported QT library version
QT error message when launching Anki ** Attachment added: "Screenshot from 2018-10-05 13-42-43.png" https://bugs.launchpad.net/ubuntu/+source/anki/+bug/1796273/+attachment/5197517/+files/Screenshot%20from%202018-10-05%2013-42-43.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796273 Title: Anki crash at starts with unsupported QT library version To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/anki/+bug/1796273/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783248] Re: Update awscli to 1.15.15 from sid
Here's the documentation for how bug fixes get in to Ubuntu stable releases: https://wiki.ubuntu.com/StableReleaseUpdates#Procedure -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783248 Title: Update awscli to 1.15.15 from sid To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/awscli/+bug/1783248/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1794721] Re: Remove gjs from s390x
OK, I just read a half uninformed rant in #ubuntu-release from last night. It would be good to have those rants in future with some of the parties involved up to that point. We could have avoided that mix up with the provides, for example. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1794721 Title: Remove gjs from s390x To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1794721/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783248] Re: Update awscli to 1.15.15 from sid
Ubuntu 18.10 now has awscli 1.15.79-1. Ubuntu 18.10 will be released later this month. ** Changed in: awscli (Ubuntu) Status: Confirmed => Fix Released ** Tags added: cosmic upgrade-software-version -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783248 Title: Update awscli to 1.15.15 from sid To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/awscli/+bug/1783248/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1782031] Re: [SRU][xenial] Enable SCE option and systemd probe in libopenscap8
I have been asked to give a second opinion regarding this SRU and I must say my feelings are a bit mixed. On one side: I have to agree with Robie that this SRU might confuse existing users, those that would otherwise expect some checks coming back with "unknown" or "notchecked" to suddenly start failing. That might regress existing users in a sense, and that is bad. On the other hand, both SCE and systemd probes/schema were not available nor supported for xenial before, right? Deliberately using functionality that's not supported and relying on it to return an ambiguous state at the end is not valid use IMO. I think it will be quite obvious for anyone using unsupported functionality and relying on it to stay as "unknown"/"notchecked" that eventually those might just start actually running. I think we should not really care about cases of such assumptions, since I somehow feel the developer was not doing the right thing anyway. We can't handle all use-cases. It's still a regression, yes, but a regression that most probably is caused by invalid use. Am I wrong? Sure, this might be a problem for 'backport' cases, where there's the same check-set for different series, but since there was obviously a difference in functionality between one version an the other, the developer should have handled this better. That being said, I do not have a strong opinion here. It's really hard to say what's the best way to go as I don't know how many users are there of openscap. I'm probably lacking that context to be able to give a solid answer. Regressing users is bad, but even normal, non-feature bugfixes can 'regress' people that are depending on the erroneous behavior. I do remember one case handled by a more experienced SRU member that also involved slight regression of functionality for users that didn't use the package properly and the decision was to accept it. Not sure exactly if we have the same case here though. Somehow it does feel like it, but maybe I lack context here 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/1782031 Title: [SRU][xenial] Enable SCE option and systemd probe in libopenscap8 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/openscap/+bug/1782031/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796274] [NEW] /usr/lib/packagekit/packagekitd:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:std::__throw_length_error
Public bug reported: The Ubuntu Error Tracker has been receiving reports about a problem regarding packagekit. This problem was most recently seen with package version 1.1.10-1ubuntu6, the problem page at https://errors.ubuntu.com/problem/97c33f533af7c2ce7fe52bd67a84c2a230b59ba9 contains more details, including versions of packages affected, stacktrace or traceback, and individual crash reports. If you do not have access to the Ubuntu Error Tracker and are a software developer, you can request it at http://forms.canonical.com/reports/. ** Affects: packagekit (Ubuntu) Importance: Undecided Status: New ** Tags: bionic cosmic kylin-18.10 raring saucy trusty -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796274 Title: /usr/lib/packagekit/packagekitd:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:std::__throw_length_error To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/packagekit/+bug/1796274/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796275] [NEW] Screen reader is not auto-enabled on first login if enabled when installing
Public bug reported: As per iso testcase the screen-reader is supposed to be auto activated if the user enabled it when installing. This is not the case in the ISO (5oct2018) ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: ubiquity (not installed) ProcVersionSignature: Ubuntu 4.18.0-8.9-generic 4.18.7 Uname: Linux 4.18.0-8-generic x86_64 ApportVersion: 2.20.10-0ubuntu11 Architecture: amd64 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 5 12:58:47 2018 InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd quiet splash --- maybe-ubiquity InstallationDate: Installed on 2018-10-05 (0 days ago) InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Beta amd64 (20181005) 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.9 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796275 Title: Screen reader is not auto-enabled on first login if enabled when installing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1796275/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1057558] Re: I can't add interface to router, if there is another port in non-shared network of other tenant
This is a really irritating problem. I have the similar issue a few days ago. I was totally out of mind. Then, My friend told me to visit the link https://www.belkinroutersupportnumber.com/ After visiting my problem get resolved. There was a team to support all kind of router issue. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1057558 Title: I can't add interface to router, if there is another port in non- shared network of other tenant To manage notifications about this bug go to: https://bugs.launchpad.net/neutron/+bug/1057558/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1737866] Re: Too many open files when large number of routers on a host
xenial + UCA/ocata-proposed == Totals == Ran: 94 tests in 585.1451 sec. - Passed: 88 - Skipped: 6 - Expected Fail: 0 - Unexpected Success: 0 - Failed: 0 Sum of execute time for each test: 892.7394 sec. $ apt-cache policy openvswitch-switch openvswitch-switch: Installed: 2.6.3-0ubuntu0.17.04.1~cloud0 Candidate: 2.6.3-0ubuntu0.17.04.1~cloud0 Version table: *** 2.6.3-0ubuntu0.17.04.1~cloud0 500 500 http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-proposed/ocata/main amd64 Packages 100 /var/lib/dpkg/status 2.5.4-0ubuntu0.16.04.1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages 2.5.2-0ubuntu0.16.04.2 500 500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages 2.5.0-0ubuntu1 500 500 http://nova.clouds.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/1737866 Title: Too many open files when large number of routers on a host To manage notifications about this bug go to: https://bugs.launchpad.net/charm-neutron-openvswitch/+bug/1737866/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1796274] Re: /usr/lib/packagekit/packagekitd:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:std::__throw_length_error
Odd, it crashes in std::stringstream::str() -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1796274 Title: /usr/lib/packagekit/packagekitd:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:std::__throw_length_error To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/packagekit/+bug/1796274/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1787191] Re: Crash due to BUG: Bad page map in process X & BUG: Bad rss-counter state X
*** This bug is a duplicate of bug 1787127 *** https://bugs.launchpad.net/bugs/1787127 I build custom kernel from ubuntu kernel source 3.13.0-158 with bfq patch ,bug still happen .The error message is : [35952.358708] BUG: Bad page map in process java pte:01e67320 pmd:16efdd067 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1787191 Title: Crash due to BUG: Bad page map in process X & BUG: Bad rss-counter state X To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1787191/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1780076] Re: 18.04 login screen is skewed/distorted (incorrect stride) when using hibmc_drm graphics
Hello Bin, or anyone else affected, Accepted gdm3 into bionic-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/gdm3/3.28.3-0ubuntu18.04.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed.Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested and change the tag from verification-needed-bionic to verification-done-bionic. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-bionic. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance! ** Changed in: gdm3 (Ubuntu Bionic) Status: In Progress => Fix Committed ** Tags added: verification-needed verification-needed-bionic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1780076 Title: 18.04 login screen is skewed/distorted (incorrect stride) when using hibmc_drm graphics To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1780076/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs