[Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2021-01-06 Thread gruberm
Any progress?
I'm having a hard time to understand what's preventing the upgrade to TB78.

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

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

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

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

[Bug 1903893] Re: [snap] Notifications do not show a custom icon

2021-01-06 Thread Olivier Tilloy
This was also reported upstream:
https://bugs.chromium.org/p/chromium/issues/detail?id=1160601.

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

Title:
  [snap] Notifications do not show a custom icon

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

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

[Bug 1910209] Re: "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

2021-01-06 Thread Christian Ehrhardt 
openvswitch-switch consists of three services actually:

openvswitch-switch.service (top level)
  -> ovsdb-server.service
-> ovs-vswitchd.service

Of those the start/stop/restart of ovsdb-server.service is the one
creating/removing the directory of /var/run/openvswitch/. The latter
ovs-vswitchd.service then re-uses that directory.

The path is created due to /lib/systemd/system/ovsdb-server.service:
RuntimeDirectory=openvswitch
RuntimeDirectoryMode=0755

Acoording to [1] that will be "In case of RuntimeDirectory= the
innermost subdirectories are removed when the unit is stopped. It is
possible to preserve the specified directories in this case if
RuntimeDirectoryPreserve= is configured to restart or yes (see below)"

So the behavior atm is exactly as configured.

The service files are "ours" (= packaging). Upstream only has rhel
service files and those do not dynamically add/remove the path. Instead
I've even seen discussions [2] saying about RuntimeDirectoryPreserve "We
need to have this either as 'yes', or 'restart' - OVN daemons depend on
this directory persisting even when the OVS daemons go away."

We can add a change via:
$ sudo systemctl edit ovsdb-server.service
[Service]
RuntimeDirectoryPreserve=yes

That will keep the directory alive and avoid the issue.
@Yi - for now that could be your solution as it would avoid having you to 
reconfigure (potentially many) other places.


Packaging wise that would be as easy as [3]

But I'm unsure if there is intention in removing this directory - e.g. to get 
the DB state cleaned and re-initialized for sure. I'd leave that up to 
James/Frode who have looked more at OVS. Based on their decision we can try to 
make this statement part of the default config (or not).
Subscribing James/Frode here on the bug and on the MP to carry on from here.

[1]: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
[2]: https://github.com/openvswitch/ovs/pull/247/files#r208172722
[3]: 
https://code.launchpad.net/~paelzer/ubuntu/+source/openvswitch/+git/openvswitch/+merge/395882

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

Title:
  "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

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

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

[Bug 1910209] Re: "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

2021-01-06 Thread Launchpad Bug Tracker
** Merge proposal linked:
   
https://code.launchpad.net/~paelzer/ubuntu/+source/openvswitch/+git/openvswitch/+merge/395882

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

Title:
  "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

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

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

[Bug 1899800] Re: Runtime deadlock: pthread_cond_signal failed to wake up pthread_cond_wait due to a bug in undoing stealing

2021-01-06 Thread Balint Reczey
** Tags removed: verification-needed verification-needed-groovy
** Tags added: verification-done verification-done-groovy

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

Title:
  Runtime deadlock: pthread_cond_signal failed to wake up
  pthread_cond_wait due to a bug in undoing stealing

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

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

[Bug 1910209] Re: "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

2021-01-06 Thread Christian Ehrhardt 
While the behavior has "more impact" when running with openvswitch-dpdk as one 
common path to put the sockets is under /var/run/openvswitch the problem is 
only in openvswitch.
I updated the bug tasks accordingly.

@Yi: I've checked my setups why I haven't seen this before and indeed I usually 
use a path like
"/var/run/vhostuserclient/vhost-user-client-1" and it works fine - so using 
something like that might be more than just a workaround for you.


Never the less I happen to know that /var/run/openvswitch was in some guides in 
the past. I even fixed one stray reference in our own docs [2] now to fully use 
"/var/run/vhostuserclient/vhost-user-client-1" as shown above (its examples had 
a mix of paths up to now).
So thanks for the report for that alone !


The upstream OVS docs [1] usually seem to use a path like 
"/tmp/dpdkvhostclient0".
But even in there are examples of "/usr/local/var/run/openvswitch/vhost-user-1".
Reading that has made me realize that those paths with the pattern 
"/var/run/openvswitch" are all from the pre vhostuserclient time, and back then 
restarting OVS killed the connection anyway.
So it wasn't a problem back then, but if users keep using those paths with 
vhostuserclient - then it is a problem.

Adding a TL;DR to the bug description.

[1]: https://docs.openvswitch.org/en/latest/topics/dpdk/vhost-user/
[2]: https://ubuntu.com/server/docs/openvswitch-dpdk

** Description changed:

+ TL;DR:
+ - stoping/restarting OVS clears /var/run/openvswitch
+ - out of the "vhostuser" connection times a common socket path used
+   was at /var/run/openvswitch
+ - if that path used with "vhostuserclient" that removes the sockets
+   on OVS stop/restart
+ - Since qemu in server mode only creates this sockets once (as by
+   the client/server design makes sense) that breaks the guests until
+   restarted which is what the tech of vhostuserclient wanted to avoid.
+ + Workaround: do use a different path like e.g. 
+   "/var/run/vhostuserclient/vhost-user-client-1"
+ + Solution: let us think if we could keep the path around on stop/restart
+ 
+ --- vv original report vv ---
+ 
  My system is Ubuntu 18.04, I installed ovs DPDK by apt-get and used ovs-
  vswitchd DPDK version, but when I stop openvswitch-switch (sudo
  systemctl stop openvswitch-switch), /var/run/openvswitch is removed, so
  the exisitng VMs can't be accessed any more. I don't know why it is
  removed and who removed it.

** Changed in: openvswitch (Ubuntu)
   Importance: Undecided => Medium

** Also affects: serverguide
   Importance: Undecided
   Status: New

** Changed in: serverguide
   Status: New => Fix Released

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

Title:
  "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

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

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

[Bug 1789177] Re: RabbitMQ fails to synchronize exchanges under high load

2021-01-06 Thread Seyeong Kim
Verification for Train is done.

ii  python3-oslo.messaging 9.7.1-0ubuntu3~cloud1
all  oslo messaging library - Python 3.x

verification steps
1. reproduce this issue
2. update all python3-oslo.messaging in test env
3. restart rabbitmq-server

all Channel issue is gone.


** Tags removed: verification-train-needed
** Tags added: verification-train-done

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

Title:
  RabbitMQ fails to synchronize exchanges under high load

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1789177/+subscriptions

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

[Bug 1910209] Re: "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

2021-01-06 Thread Christian Ehrhardt 
For the 16.04 case there was no dpdkvhostuserclient yet, so there it had
to stay around anyway as OVS was the server.

But I agree that it is in issue in regard to
"/var/run/openvswitch/vhostuser/vhu* is created by qemu once" that
matches what I expect and indeed in that case clearing the var/run
directory is bad indeed.

For the time being a temporary workaround could be to try using a different 
path.
I'm unsure if - without further tweaks - OVS and the Qemu rocessed are allowed 
to access it (apparmor is in place), but you could try putting the socket paths 
at e.g. /var/run/ovs-qemu-sockets/ and see if this works as an interim solution.

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

Title:
  "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

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

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

[Bug 1910209] Re: "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

2021-01-06 Thread Christian Ehrhardt 
FYI:
- systemctl reload works fine (as that calls 
/usr/share/openvswitch/scripts/ovs-systemd-reload)
- systemctl restart also clears the /var/run/openvswitch directory

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

** Also affects: openvswitch (Ubuntu)
   Importance: Undecided
   Status: New

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

** Changed in: dpdk (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  "systemctl stop openvswitch-switch" will remove /var/run/openvswitch

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

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

[Bug 982805] Re: dropbox crashed with IOError in console_print(): [Errno 5] Input/output error

2021-01-06 Thread John Kavita
For several years Write Essay Today for me has been providing Cheap essay 
writing services
for students at all academic levels including High School, College, University, 
and Undergraduate.
We specialize in preparing essays, Do my essay, Write my lab reports, Write my  
Assignment 
and write my thesis papers on a wide variety of subjects.

https://writeessaytoday.com/

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

Title:
  dropbox crashed with IOError in console_print(): [Errno 5]
  Input/output error

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

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

[Bug 1910496] [NEW] nvidia-dkms-440 440.100-0ubuntu0.20.04.1: nvidia kernel module failed to build

2021-01-06 Thread Vitaliy
Public bug reported:

123

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: nvidia-dkms-440 440.100-0ubuntu0.20.04.1
ProcVersionSignature: Ubuntu 5.4.0-59.65-generic 5.4.78
Uname: Linux 5.4.0-59-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.12
Architecture: amd64
CasperMD5CheckResult: skip
DKMSKernelVersion: 5.8.0-34-generic
Date: Thu Jan  7 09:20:34 2021
DuplicateSignature: 
dkms:nvidia-dkms-440:440.100-0ubuntu0.20.04.1:/var/lib/dkms/nvidia/440.100/build/common/inc/nv-linux.h:512:17:
 error: too many arguments to function ‘__vmalloc’
InstallationDate: Installed on 2020-06-22 (198 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
PackageVersion: 440.100-0ubuntu0.20.04.1
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18rc1, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: nvidia-graphics-drivers-440
Title: nvidia-dkms-440 440.100-0ubuntu0.20.04.1: nvidia kernel module failed to 
build
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nvidia-graphics-drivers-440 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package focal

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

Title:
  nvidia-dkms-440 440.100-0ubuntu0.20.04.1: nvidia kernel module failed
  to build

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

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

[Bug 1910496] Re: nvidia-dkms-440 440.100-0ubuntu0.20.04.1: nvidia kernel module failed to build

2021-01-06 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  nvidia-dkms-440 440.100-0ubuntu0.20.04.1: nvidia kernel module failed
  to build

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

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

[Bug 1871268] Re: Installation fails due to useless immediate configuration error when "Install Third-Party Drivers" is selected

2021-01-06 Thread Parker Grytdal
Tagging onto my previous post (https://bugs.launchpad.net/ubuntu-
cdimage/+bug/1871268/comments/167) I am on a Nvidia GTX 2060

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

Title:
  Installation fails due to useless immediate configuration error when
  "Install Third-Party Drivers" is selected

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

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

[Bug 1871268] Re: Installation fails due to useless immediate configuration error when "Install Third-Party Drivers" is selected

2021-01-06 Thread Parker Grytdal
Just hit this bug on Ubuntu MATE 20.10

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

Title:
  Installation fails due to useless immediate configuration error when
  "Install Third-Party Drivers" is selected

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

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

[Bug 1899233] Re: post login - no apps launched - virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to build

2021-01-06 Thread Apport retracing service
** Tags added: focal

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

Title:
  post login - no apps launched - virtualbox-dkms
  6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to
  build

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

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

[Bug 1910494] Re: virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to build

2021-01-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1899233 ***
https://bugs.launchpad.net/bugs/1899233

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1899233, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Tags removed: need-duplicate-check

** This bug has been marked a duplicate of bug 1899233
   post login - no apps launched - virtualbox-dkms 
6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to build

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

Title:
  virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel
  module failed to build

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

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

[Bug 1910494] [NEW] virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to build

2021-01-06 Thread DE BIASIO
*** This bug is a duplicate of bug 1899233 ***
https://bugs.launchpad.net/bugs/1899233

Public bug reported:

happened 3 minutes after I logged in

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1
ProcVersionSignature: Ubuntu 5.4.0-59.65-generic 5.4.78
Uname: Linux 5.4.0-59-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
DKMSKernelVersion: 5.8.0-34-generic
Date: Thu Jan  7 07:13:22 2021
DuplicateSignature: 
dkms:virtualbox-dkms:6.1.10-dfsg-1~ubuntu1.20.04.1:/var/lib/dkms/virtualbox/6.1.10/build/vboxdrv/linux/SUPDrv-linux.c:760:38:
 error: ‘cpu_tlbstate’ undeclared (first use in this function); did you mean 
‘cpuhp_state’?
InstallationDate: Installed on 2020-09-16 (112 days ago)
InstallationMedia: Ubuntu 20.04.0 2020.09.07 LTS am "Custom Focal Fossa" 
(20200907)
PackageVersion: 6.1.10-dfsg-1~ubuntu1.20.04.1
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: virtualbox
Title: virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module 
failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel
  module failed to build

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

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

[Bug 1897848] Re: package xtables-addons-dkms 3.8-2 failed to install/upgrade: installed xtables-addons-dkms package post-installation script subprocess returned error exit status 7

2021-01-06 Thread MikeR
Easier workaround:
sudo apt-get install --install-recommends linux-generic-hwe-20.04

upgrades the kernel to 5.8, and xtables-addons-dkms reinstalls with no
errors

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

Title:
  package xtables-addons-dkms 3.8-2 failed to install/upgrade: installed
  xtables-addons-dkms package post-installation script subprocess
  returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xtables-addons/+bug/1897848/+subscriptions

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

[Bug 1909030] Re: [pulse bridge] Stuttered Audio Playback after xruns

2021-01-06 Thread Len Ovens
Sorry for the delay, Anyway, the device is able to use 44k1 without problems 
and because VLC works fine we can probably rule out jack, and pulse too. 
Studio-controls is just a script that runs jack and adds bridges to it using 
software that is not a part of studio-controls so it is not studio-controls 
specific. Really, that leaves discord either not liking 44k1 or not being able 
to deal with large buffer sizes. It would be interesting to know what discord 
asks for when it opens the audio device. You can check this by stopping jack in 
studio-controls, make sure vlc is not running, run discord and while discord is 
running run:
cd /tmp && wget https://community.ardour.org/files/adevices.sh && bash 
./adevices.sh >adevices-pulse
Attach adevices-pulse here or look at it yourself. The lines to look at are:
used by: pulse
rate: 44100 (44100/1) - The 44100/1 means it really is 44100 as measured by the 
computer
period_size: 4096 - what we call buffer size, the amount of memory pulse can 
deal with per period
buffer_size: 8192 - buffer size X nperiods, the application deals with one half 
while the device deals with the other and then they switch when the device says 
so (at least in jack) pulse does other things sometimes.

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

Title:
  [pulse bridge] Stuttered Audio Playback after xruns

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntustudio-controls/+bug/1909030/+subscriptions

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

[Bug 1899058] Re: upgrade fails

2021-01-06 Thread Ganesh
*** This bug is a duplicate of bug 1889250 ***
https://bugs.launchpad.net/bugs/1889250

I am also facing the same problem however, i do not see nodejs package
installed in the machine :  Please find the logs below :

  MarkInstall python-is-python2:amd64 < none -> 2.7.17-4 @un uN Ib > FU=1
  Installing python2 as Depends of python-is-python2
MarkInstall python2:amd64 < none -> 2.7.17-2ubuntu4 @un uN Ib > FU=0
Installing python2-minimal as PreDepends of python2
  MarkInstall python2-minimal:amd64 < none -> 2.7.17-2ubuntu4 @un uN Ib > 
FU=0
   Removing: python-minimal
MarkDelete python-minimal:amd64 < 2.7.15~rc1-1 @ii mK > FU=0
Installing libpython2-stdlib as Depends of python2
  MarkInstall libpython2-stdlib:amd64 < none -> 2.7.17-2ubuntu4 @un uN Ib > 
FU=0
   Removing: libpython-stdlib
MarkDelete libpython-stdlib:amd64 < 2.7.15~rc1-1 @ii mK > FU=0
 Removing: python
  MarkDelete python:amd64 < 2.7.15~rc1-1 @ii mK Ib > FU=0
Starting pkgProblemResolver with broken count: 1
Starting 2 pkgProblemResolver with broken count: 1
Investigating (0) python-dev:amd64 < 2.7.15~rc1-1 @ii mK Ib >
Broken python-dev:amd64 Depends on python:amd64 < 2.7.15~rc1-1 @ii gR > (= 
2.7.15~rc1-1)
  Considering python:amd64 11 as a solution to python-dev:amd64 21
  Added python:amd64 to the remove list
  Fixing python-dev:amd64 via keep of python:amd64
  MarkKeep python:amd64 < 2.7.15~rc1-1 @ii gR > FU=0
Investigating (0) python:amd64 < 2.7.15~rc1-1 @ii gK Ib >
Broken python:amd64 PreDepends on python-minimal:amd64 < 2.7.15~rc1-1 @ii gR > 
(= 2.7.15~rc1-1)
  Considering python-minimal:amd64 0 as a solution to python:amd64 11
  Added python-minimal:amd64 to the remove list
Broken python:amd64 Depends on libpython-stdlib:amd64 < 2.7.15~rc1-1 @ii gR > 
(= 2.7.15~rc1-1)
  Considering libpython-stdlib:amd64 0 as a solution to python:amd64 11
  Added libpython-stdlib:amd64 to the remove list
"/var/log/dist-upgrade/apt.log" 3758L, 346185C

 Considering python-minimal:amd64 0 as a solution to python:amd64 11
  Added python-minimal:amd64 to the remove list
Broken python:amd64 Depends on libpython-stdlib:amd64 < 2.7.15~rc1-1 @ii gR > 
(= 2.7.15~rc1-1)
  Considering libpython-stdlib:amd64 0 as a solution to python:amd64 11
  Added libpython-stdlib:amd64 to the remove list
  Fixing python:amd64 via keep of python-minimal:amd64
  MarkKeep python-minimal:amd64 < 2.7.15~rc1-1 @ii gR > FU=0
  Fixing python:amd64 via keep of libpython-stdlib:amd64
  MarkKeep libpython-stdlib:amd64 < 2.7.15~rc1-1 @ii gR > FU=0
Investigating (0) libpython2-stdlib:amd64 < none -> 2.7.17-2ubuntu4 @un umN Ib >
Broken libpython2-stdlib:amd64 Breaks on libpython-stdlib:amd64 < 2.7.15~rc1-1 
@ii gK > (< 2.7.15-2)
  Considering libpython-stdlib:amd64 0 as a solution to libpython2-stdlib:amd64 
1
  Added libpython-stdlib:amd64 to the remove list
  Fixing libpython2-stdlib:amd64 via remove of libpython-stdlib:amd64
  MarkDelete libpython-stdlib:amd64 < 2.7.15~rc1-1 @ii gK > FU=0
Investigating (0) python2:amd64 < none -> 2.7.17-2ubuntu4 @un umN Ib >
Broken python2:amd64 Breaks on python:amd64 < 2.7.15~rc1-1 @ii gK Ib > (< 
2.7.15-2)
  Considering python:amd64 11 as a solution to python2:amd64 1
  MarkKeep python2:amd64 < none -> 2.7.17-2ubuntu4 @un umN Ib > FU=0
  Holding Back python2:amd64 rather than change python:amd64
Investigating (0) python2-minimal:amd64 < none -> 2.7.17-2ubuntu4 @un umN Ib >
Broken python2-minimal:amd64 Breaks on python-minimal:amd64 < 2.7.15~rc1-1 @ii 
gK > (< 2.7.15-2)
  Considering python-minimal:amd64 0 as a solution to python2-minimal:amd64 1
  Added python-minimal:amd64 to the remove list
  Fixing python2-minimal:amd64 via remove of python-minimal:amd64
  MarkDelete python-minimal:amd64 < 2.7.15~rc1-1 @ii gK > FU=0
Investigating (1) python-is-python2:amd64 < none -> 2.7.17-4 @un pumN Ib >
Broken python-is-python2:amd64 Depends on python2:amd64 < none | 
2.7.17-2ubuntu4 @un umH >
  Considering python2:amd64 1 as a solution to python-is-python2:amd64 
  Re-Instated python2:amd64
Broken python-is-python2:amd64 Breaks on python:amd64 < 2.7.15~rc1-1 @ii gK Ib >


Reinst Failed because of python:amd64
  MarkKeep python-opengl:amd64 < 3.1.0+dfsg-1 -> 3.1.0+dfsg-2build1 @ii umU Ib 
> FU=0
  Removing python-opengl:amd64 rather than change python-ctypes:amd64
  MarkDelete python-opengl:amd64 < 3.1.0+dfsg-1 | 3.1.0+dfsg-2build1 @ii umH Ib 
> FU=0
Investigating (2) libc6-dbg:amd64 < 2.27-3ubuntu1.4 | 2.31-0ubuntu9.1 @ii umH 
Ib >
Broken libc6-dbg:amd64 Depends on libc6:amd64 < 2.27-3ubuntu1.4 -> 
2.31-0ubuntu9.1 @ii umU IPb > (= 2.27-3ubuntu1.4)
  Considering libc6:amd64 17228 as a solution to libc6-dbg:amd64 0
  Re-Instated libc6-dbg:amd64
Investigating (2) ros-melodic-image-proc:amd64 < 1.15.0-1bionic.20200530.124945 
@ii mK Ib >
Broken ros-melodic-image-proc:amd64 Depends on 

[Bug 1899233] Re: post login - no apps launched - virtualbox-dkms 6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to build

2021-01-06 Thread Muhammad Hussein Fattahizadeh
$ uname -a
Linux sweb-laptop 5.8.0-34-generic #37~20.04.2-Ubuntu SMP Thu Dec 17 14:53:00 
UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

VirtualBox Graphical User Interface Version 6.1.10_Ubuntu r138449
© 2004-2020 Oracle Corporation (Qt5.12.8)
Copyright © 2020 Oracle Corporation and/or its affiliates. All rights reserved.

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

Title:
  post login - no apps launched - virtualbox-dkms
  6.1.10-dfsg-1~ubuntu1.20.04.1: virtualbox kernel module failed to
  build

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

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

[Bug 1910483] [NEW] dkms and initramfs-tools dependent issue

2021-01-06 Thread Zhang Zengbo
Public bug reported:

for a complete new installed distribution, 
  apt-get install linux-modules-nvidia-455-generic 
will fail because it depends on dkms and initramfs-tools, 
but seems not list on deb content. after initramfs-tools and dkms installed, 
  apt-get install linux-modules-nvidia-455-generic 
command ok.

** Affects: linux-restricted-modules (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/1910483

Title:
  dkms  and initramfs-tools dependent issue

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

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

[Bug 465433]

2021-01-06 Thread Bug-janitor
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

Title:
  dolphin crashed in [PolygonRegion, QRegion,
  QX11PaintEngine::updateState] (assert failure)

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

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


[Bug 465433] Re: dolphin crashed in [PolygonRegion, QRegion, QX11PaintEngine::updateState] (assert failure)

2021-01-06 Thread Bug Watch Updater
** Changed in: qt
   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/465433

Title:
  dolphin crashed in [PolygonRegion, QRegion,
  QX11PaintEngine::updateState] (assert failure)

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

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

[Bug 1681494] Re: package linux-headers-4.8.0-46 4.8.0-46.49~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-46 4.8.0-46.49~16.04.1 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1680630] Re: package linux-image-extra-4.8.0-46-generic (not installed) failed to install/upgrade: unable to open '/lib/modules/4.8.0-46-generic/kernel/drivers/usb/usbip/vhci-hcd.ko.dpkg-new': Op

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-46-generic (not installed) failed to
  install/upgrade: unable to open
  '/lib/modules/4.8.0-46-generic/kernel/drivers/usb/usbip/vhci-hcd.ko
  .dpkg-new': Operation not permitted

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

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

[Bug 1685715] Re: package linux-headers-4.8.0-49 4.8.0-49.52~16.04.1 failed to install/upgrade: не удалось открыть «/usr/src/linux-headers-4.8.0-49/drivers/staging/board/Kconfig.dpkg-new»: Operation n

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-49 4.8.0-49.52~16.04.1 failed to
  install/upgrade: не удалось открыть «/usr/src/linux-
  headers-4.8.0-49/drivers/staging/board/Kconfig.dpkg-new»: Operation
  not permitted

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

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

[Bug 1685717] Re: package linux-headers-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed to install/upgrade: не удалось открыть «/usr/src/linux-headers-4.8.0-49-generic/include/config/usb/serial/mos7715/pa

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed to
  install/upgrade: не удалось открыть «/usr/src/linux-
  headers-4.8.0-49-generic/include/config/usb/serial/mos7715/parport.h
  .dpkg-new»: Operation not permitted

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

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

[Bug 1686855] Re: package linux-image-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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

[Bug 1687178] Re: package linux-image-extra-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed to install/upgrade: problèmes de dépendances - laissé non configuré

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-49-generic 4.8.0-49.52~16.04.1 failed
  to install/upgrade: problèmes de dépendances - laissé non configuré

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

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

[Bug 1688374] Re: package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 25

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 25

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

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

[Bug 1687520] Re: package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1689684] Re: On start-up, package linux-headers-4.8.0-51 4.8.0-51.54~16.04.1 failed to install/upgrade: package linux-headers-4.8.0-51 is not ready for configuration cannot configure (current sta

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  On start-up, package linux-headers-4.8.0-51 4.8.0-51.54~16.04.1 failed
  to install/upgrade: package linux-headers-4.8.0-51 is not ready for
  configuration  cannot configure (current status 'half-installed')

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

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

[Bug 1903373] Re: 20.10 install was like molasses; trying to roll back

2021-01-06 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ubiquity (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  20.10 install was like molasses; trying to roll back

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

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

[Bug 1900481] Re: [Vostro 3300, IDT 92HD81B1X5, Mic, Top] Pulseaudio fails to detect card

2021-01-06 Thread Launchpad Bug Tracker
[Expired for pulseaudio (Ubuntu) because there has been no activity for
60 days.]

** Changed in: pulseaudio (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [Vostro 3300, IDT 92HD81B1X5, Mic, Top] Pulseaudio fails to detect
  card

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

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

[Bug 1635257] Re: package linux-image-extra-4.8.0-26-generic 4.8.0-26.28 failed to install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-image-extra-4.8.0-26-generic.list-new': Operatio

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-26-generic 4.8.0-26.28 failed to
  install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-
  image-extra-4.8.0-26-generic.list-new': Operation not permitted

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

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

[Bug 1636271] Re: package linux-headers-4.8.0-26 4.8.0-26.28 failed to install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-headers-4.8.0-26.list-new': Operation not permitted

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-26 4.8.0-26.28 failed to install/upgrade:
  unable to create new file '/var/lib/dpkg/info/linux-headers-4.8.0-26
  .list-new': Operation not permitted

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

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

[Bug 1646287] Re: package linux-image-extra-4.8.0-28-generic 4.8.0-28.30 failed to install/upgrade: unable to open '/lib/modules/4.8.0-28-generic/kernel/drivers/media/dvb-frontends/dibx000_common.ko.d

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-28-generic 4.8.0-28.30 failed to
  install/upgrade: unable to open
  '/lib/modules/4.8.0-28-generic/kernel/drivers/media/dvb-
  frontends/dibx000_common.ko.dpkg-new': Operation not permitted

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

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

[Bug 1669096] Re: package linux-image-4.8.0-39-generic 4.8.0-39.42~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-39-generic 4.8.0-39.42~16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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

[Bug 1671255] Re: package linux-image-4.8.0-41-generic 4.8.0-41.44~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-41-generic 4.8.0-41.44~16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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

[Bug 1671718] Re: package linux-headers-4.8.0-41 4.8.0-41.44~16.04.1 failed to install/upgrade: unable to open '/usr/src/linux-headers-4.8.0-41/include/net/llc.h.dpkg-new': Operation not permitted

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-41 4.8.0-41.44~16.04.1 failed to
  install/upgrade: unable to open '/usr/src/linux-
  headers-4.8.0-41/include/net/llc.h.dpkg-new': Operation not permitted

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

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

[Bug 1674037] Re: package linux-image-extra-4.8.0-41-generic (not installed) failed to install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-image-extra-4.8.0-41-generic.list-new': Oper

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-41-generic (not installed) failed to
  install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-
  image-extra-4.8.0-41-generic.list-new': Operation not permitted

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

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

[Bug 1676132] Re: package linux-image-extra-4.8.0-44-generic 4.8.0-44.47~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-44-generic 4.8.0-44.47~16.04.1 failed
  to install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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

[Bug 1676666] Re: package linux-image-4.8.0-44-generic 4.8.0-44.47~16.04.1 failed to install/upgrade: unable to sync file '/boot/vmlinuz-4.8.0-44-generic.dpkg-new': Input/output error

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-44-generic 4.8.0-44.47~16.04.1 failed to
  install/upgrade: unable to sync file '/boot/vmlinuz-4.8.0-44-generic
  .dpkg-new': Input/output error

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

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

[Bug 1692147] Re: package linux-headers-4.8.0-49 4.8.0-49.52~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-49 4.8.0-49.52~16.04.1 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1692771] Re: package linux-image-extra-4.8.0-52-generic 4.8.0-52.55~16.04.1 failed to install/upgrade: package linux-image-extra-4.8.0-52-generic is not ready for configuration cannot configure (

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-52-generic 4.8.0-52.55~16.04.1 failed
  to install/upgrade: package linux-image-extra-4.8.0-52-generic is not
  ready for configuration  cannot configure (current status 'half-
  installed')

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

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

[Bug 1693513] Re: package linux-image-4.8.0-53-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1693901] Re: package linux-image-4.8.0-53-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL


** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1697270] Re: package linux-image-4.8.0-54-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-54-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1697852] Re: package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin: Ubuntu] failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin:
  Ubuntu] failed to install/upgrade: subprocess new pre-installation
  script returned error exit status 128

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

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

[Bug 1697894] Re: package linux-image-4.4.0-78-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.4.0-78-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 1

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

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

[Bug 1698988] Re: package linux-image-4.8.0-56-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-56-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1699154] Re: package linux-image-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1699300] Re: package linux-image-extra-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: package linux-image-extra-4.8.0-56-generic is not ready for configuration cannot configure (

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed
  to install/upgrade: package linux-image-extra-4.8.0-56-generic is not
  ready for configuration  cannot configure (current status 'half-
  installed')

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

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

[Bug 1699337] Re: package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to
  install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

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

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

[Bug 1699376] Re: package linux-image-4.8.0-56-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-56-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1699428] Re: package linux-headers-4.8.0-54 4.8.0-54.57~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-54 4.8.0-54.57~16.04.1 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1699511] Re: package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: проблемы зависимостей — оставляем не настроенным

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to
  install/upgrade: проблемы зависимостей — оставляем не настроенным

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

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

[Bug 1699649] Re: package linux-image-4.8.0-53-lowlatency 4.8.0-53.56~16.04.1 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-lowlatency 4.8.0-53.56~16.04.1 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

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

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

[Bug 1699767] Re: package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: problemas de dependência - deixando desconfigurado

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to
  install/upgrade: problemas de dependência - deixando desconfigurado

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

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

[Bug 1700205] Re: package linux-image-4.8.0-57-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL


** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-57-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1700210] Re: package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to install/upgrade: проблемы зависимостей — оставляем не настроенным

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-56-generic 4.8.0-56.61~16.04.1 failed to
  install/upgrade: проблемы зависимостей — оставляем не настроенным

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

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

[Bug 1700357] Re: package linux-image-4.8.0-56-generic (not installed) failed - even after "sudo apt-get update AND sudi apt-get upgrade"manually to install/upgrade: subprocess new pre-installation sc

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-56-generic (not installed) failed - even
  after "sudo apt-get update  AND sudi apt-get upgrade"manually to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701273] Re: package linux-image-4.8.0-58-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701299] Re: package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting a re

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed
  to install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting a removal

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

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

[Bug 1701310] Re: package linux-image-4.8.0-58-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701318] Re: package linux-image-4.8.0-58-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status.

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status.

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

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

[Bug 1701348] Re: package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701453] Re: package linux-image-4.8.0-58-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701503] Re: package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed
  to install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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

[Bug 1701887] Re: package linux-image-4.8.0-58-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1701922] Re: package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: il pacchetto linux-image-extra-4.8.0-58-generic non è pronto per la configurazione impossib

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed
  to install/upgrade: il pacchetto linux-image-extra-4.8.0-58-generic
  non è pronto per la configurazione  impossibile configurarlo (stato
  corrente "half-installed")

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

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

[Bug 1701972] Re: package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 [origin: Ubuntu] failed to install/upgrade: el subproceso script pre-installation nuevo devolvió el código de salida de error

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 [origin:
  Ubuntu] failed to install/upgrade: el subproceso script pre-
  installation nuevo devolvió el código de salida de error 128

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

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

[Bug 1702010] Re: kernel update crashes package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  kernel update crashes package linux-image-4.8.0-58-generic
  4.8.0-58.63~16.04.1 failed to install/upgrade: subprocess installed
  post-installation script returned error exit status 2

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

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

[Bug 1702161] Re: package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed to install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed
  to install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

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

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

[Bug 1702225] Re: package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-58-generic 4.8.0-58.63~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1706523] Re: package linux-image-extra-4.10.0-27-generic 4.10.0-27.30~16.04.2 failed to install/upgrade: προβλήματα εξάρτησης - αφήνεται μη ρυθμισμένο

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.10.0-27-generic 4.10.0-27.30~16.04.2
  failed to install/upgrade: προβλήματα εξάρτησης - αφήνεται μη
  ρυθμισμένο

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

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

[Bug 1707925] Re: package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting conf

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed
  to install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1715130] Re: package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configurat

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-51-generic 4.8.0-51.54~16.04.1 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1907559] Re: nvidia-kernel-source-390 390.138-0ubuntu0.20.04.1: nvidia kernel module failed to build

2021-01-06 Thread Seth Sampson
Hi I'm fairly new to Linux so I don't know how much help I can be but I have 
noticed I have been having issues with Nvidia drivers on this 2012 MSI laptop 
with a Nvidia GeForce GTX 660M. The laptop is a MSI GE70. I've tried updating 
the Nvidia drivers so I could play World of Warcraft without success where I've 
talked to other people who are able to play World of Warcraft on even older 
machines that were not infact gaming laptops at all and also running Linux 
software. I hope this is some what helpful, at least giving some of my machine 
specs and if there is a solution I haven't found yet please let me know @ 
hak.0...@gmail.com
Thank you,
-Seth

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

Title:
  nvidia-kernel-source-390 390.138-0ubuntu0.20.04.1: nvidia kernel
  module failed to build

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

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

[Bug 1910481] [NEW] ubuntu 20.4.1 install on extenede partion with another existing partition

2021-01-06 Thread Henry Haksu Kim
Public bug reported:

as noted on the title

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckMismatches: ./boot/grub/efi.img
CasperMD5CheckResult: fail
CasperVersion: 1.445.1
CurrentDesktop: ubuntu:GNOME
Date: Thu Jan  7 13:10:02 2021
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed initrd=/casper/initrd quiet 
splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15.2 ubuntu

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

Title:
  ubuntu 20.4.1 install on extenede partion with another existing
  partition

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

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

[Bug 1193217] Re: package linux-image-3.2.0-48-generic-pae (not installed) failed to install/upgrade: ile tar rovinato - l'archivio del pacchetto è danneggiato

2021-01-06 Thread Po-Hsu Lin
3.2 in ESM, closing this bug.

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-3.2.0-48-generic-pae (not installed) failed to
  install/upgrade: ile tar rovinato - l'archivio del pacchetto è
  danneggiato

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

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

[Bug 1327382] Re: package linux-image-3.2.0-64-generic-pae (not installed) failed to install/upgrade: ErrorMessage: no se pudo crear `/lib/modules/3.2.0-64-generic-pae/kernel/drivers/bluetooth/btusb.k

2021-01-06 Thread Po-Hsu Lin
3.2 in ESM, closing this bug.

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-3.2.0-64-generic-pae (not installed) failed to
  install/upgrade: ErrorMessage: no se pudo crear `/lib/modules/3.2.0-64
  -generic-pae/kernel/drivers/bluetooth/btusb.ko.dpkg-new' (mientras se
  procesaba `./lib/modules/3.2.0-64-generic-
  pae/kernel/drivers/bluetooth/btusb.ko'): No queda espacio en el
  dispositivo

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

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

[Bug 1675674] Re: package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to
  install/upgrade: subprocess installed post-installation script was
  killed by signal (Terminated)

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

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

[Bug 1694003] Re: package linux-headers-4.8.0-53 4.8.0-53.56~16.04.1 failed to install/upgrade: unable to open '/usr/src/linux-headers-4.8.0-53/sound/soc/tegra/Kconfig.dpkg-new': Operation not permitt

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.8.0-53 4.8.0-53.56~16.04.1 failed to
  install/upgrade: unable to open '/usr/src/linux-
  headers-4.8.0-53/sound/soc/tegra/Kconfig.dpkg-new': Operation not
  permitted

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

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

[Bug 1694050] Re: package linux-image-extra-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed to install/upgrade: package linux-image-extra-4.8.0-53-generic is not ready for configuration cannot configure (

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed
  to install/upgrade: package linux-image-extra-4.8.0-53-generic is not
  ready for configuration  cannot configure (current status 'half-
  installed')

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

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

[Bug 1694114] Re: package linux-image-4.8.0-53-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1695173] Re: package linux-image-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1694670] Re: package linux-image-4.8.0-53-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1696216] Re: package linux-image-4.8.0-54-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-54-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1696247] Re: package linux-image-extra-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting a re

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-53-generic 4.8.0-53.56~16.04.1 failed
  to install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting a removal

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

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

[Bug 1696399] Re: package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1696611] Re: package linux-image-4.8.0-53-lowlatency (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-53-lowlatency (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1696634] Re: package linux-image-4.8.0-54-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-54-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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

[Bug 1709228] Re: package linux-headers-4.10.0-30-generic 4.10.0-30.34~16.04.1 failed to install/upgrade: 该软件包正处于非常不稳定的状态; 您最好在配置它之前,先重新安装它

2021-01-06 Thread Po-Hsu Lin
4.10 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.10.0-30-generic 4.10.0-30.34~16.04.1 failed to
  install/upgrade: 该软件包正处于非常不稳定的状态; 您最好在配置它之前,先重新安装它

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

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

[Bug 1722675] Re: package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting conf

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-extra-4.8.0-54-generic 4.8.0-54.57~16.04.1 failed
  to install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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

[Bug 1756945] Re: package linux-headers-4.13.0-37 (not installed) failed to install/upgrade: unable to open '/usr/src/linux-headers-4.13.0-37/arch/mips/include/asm/bug.h.dpkg-new': Operation not permi

2021-01-06 Thread Po-Hsu Lin
4.13 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-headers-4.13.0-37 (not installed) failed to
  install/upgrade: unable to open '/usr/src/linux-
  headers-4.13.0-37/arch/mips/include/asm/bug.h.dpkg-new': Operation not
  permitted

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

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

[Bug 1758625] Re: package linux-image-4.8.0-56-generic (not installed) failed to install/upgrade: le sous-processus nouveau script pre-installation a retourné une erreur de sortie d'état 1

2021-01-06 Thread Po-Hsu Lin
4.8 EOL

** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  package linux-image-4.8.0-56-generic (not installed) failed to
  install/upgrade: le sous-processus nouveau script pre-installation a
  retourné une erreur de sortie d'état 1

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

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

[Bug 1825767] Re: Upgrade from 18.10 to 19.04 aborted

2021-01-06 Thread Po-Hsu Lin
Closing this bug as 18.10 and 19.04 has already reached their EOL

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

** Changed in: linux (Ubuntu)
   Status: Invalid => Won't Fix

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

Title:
  Upgrade from 18.10 to 19.04 aborted

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

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

[Bug 1826065] Re: Can't boot from usb live system to install disco dingo 19.04

2021-01-06 Thread Po-Hsu Lin
Closing this bug as this is a BIOS issue, plus 19.04 EOL

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

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

Title:
  Can't boot from usb live system to install disco dingo 19.04

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

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

  1   2   3   4   5   >