[Touch-packages] [Bug 2028023] Re: [jammy] DNS issue triggered by command "udevadm trigger --subsystem-nomatch=input"

2023-07-17 Thread Aristo Chen
** Tags added: originate-from-2012231

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

Title:
  [jammy] DNS issue triggered by command "udevadm trigger --subsystem-
  nomatch=input"

Status in OEM Priority Project:
  New
Status in systemd package in Ubuntu:
  New

Bug description:
  [Summary]
  In jammy server image, when we use NetworkManager as netplan renderer, we may 
have DNS issue after executing command "udevadm trigger 
--subsystem-nomatch=input" as super user, the udevadm command may also be 
executed when we use "apt install XX" or "snap install XX".

  [Steps to reproduce]
  1. Login to a jammy server(jammy desktop environment works fine) image 
environment with Vagrant
  2. execute command "apt install network-manager"
  3. modify netplan config to use NetworkManager as renderer
  """
  # Let NetworkManager manage all devices on this system
  network:
    version: 2
    renderer: NetworkManager
  """
  4. reboot
  5. execute command "ping google.com" first to make sure DNS works fine
  6. execute command "udevadm trigger --subsystem-nomatch=input" as super user
  7. execute command "ping google.com" to check if DNS still works fine
  8. if DNS works fine, then repeat step 6-7, the fail rate is around 20-30%

  [Other info]
  I have tested the above mentioned steps for the following scenarios, which 
work fine without DNS issue
  1. Using focal server environment with Vagrant, there is no DNS issue
  2. Using jammy server environment with Vagrant which has DNS issue, then add 
the kinetic/kinetic-updates source list, install systemd(version: 
251.4-1ubuntu7.3) from kinetic, and there is no DNS issue

  If using focal server environment with Vagrant, then add the
  jammy/jammy-updates source list, install systemd(version:
  249.11-0ubuntu3.9) from jammy, then I will have DNS issue as well by
  following the steps mentioned in [Steps to reproduce]

  [Other info - Vagrantfile]
  The following content is for the Vagrantfile that I used to test
  """
  Vagrant.configure("2") do |config|
if Vagrant.has_plugin?("vagrant-timezone")
  config.timezone.value = :host
end
config.vm.define "test" do |test|
  test.vm.box = "ubuntu/jammy64"
  test.vm.provider "virtualbox" do |vb|
vb.name = "test2"
vb.memory = "4096"
vb.cpus = 4
config.disksize.size = "50GB"
  end
end
  end
  """

  [Fail rate]
  20-30%

  [Test script]
  The following is the script that I used to test. Ideally it should run forever
  """
  #!/bin/bash

  set -ex

  counter=1

  while true; do
   echo "$(date): test round ${counter}"
   counter=$((counter + 1))
   sudo udevadm trigger --subsystem-nomatch=input
   ping google.com -c 2
   sleep 0.5
  done
  """

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/2028023/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2028023] Re: [jammy] DNS issue triggered by command "udevadm trigger --subsystem-nomatch=input"

2023-07-17 Thread Aristo Chen
** Description changed:

  [Summary]
  In jammy server image, when we use NetworkManager as netplan renderer, we may 
have DNS issue after executing command "udevadm trigger 
--subsystem-nomatch=input" as super user, the udevadm command may also be 
executed when we use "apt install XX" or "snap install XX".
  
  [Steps to reproduce]
  1. Login to a jammy server(jammy desktop environment works fine) image 
environment with Vagrant
  2. execute command "apt install network-manager"
  3. modify netplan config to use NetworkManager as renderer
  """
  # Let NetworkManager manage all devices on this system
  network:
-   version: 2
-   renderer: NetworkManager
+   version: 2
+   renderer: NetworkManager
  """
  4. reboot
  5. execute command "ping google.com" first to make sure DNS works fine
  6. execute command "udevadm trigger --subsystem-nomatch=input" as super user
  7. execute command "ping google.com" to check if DNS still works fine
  8. if DNS works fine, then repeat step 6-7, the fail rate is around 20-30%
  
  [Other info]
  I have tested the above mentioned steps for the following scenarios, which 
work fine without DNS issue
  1. Using focal server environment with Vagrant, there is no DNS issue
  2. Using jammy server environment with Vagrant which has DNS issue, then add 
the kinetic/kinetic-updates source list, install systemd(version: 
251.4-1ubuntu7.3) from kinetic, and there is no DNS issue
  
  If using focal server environment with Vagrant, then add the
  jammy/jammy-updates source list, install systemd(version:
  249.11-0ubuntu3.9) from jammy, then I will have DNS issue as well by
  following the steps mentioned in [Steps to reproduce]
  
+ [Other info - Vagrantfile]
+ The following content is for the Vagrantfile that I used to test
+ """
+ Vagrant.configure("2") do |config|
+   if Vagrant.has_plugin?("vagrant-timezone")
+ config.timezone.value = :host
+   end
+   config.vm.define "test" do |test|
+ test.vm.box = "ubuntu/jammy64"
+ test.vm.provider "virtualbox" do |vb|
+   vb.name = "test2"
+   vb.memory = "4096"
+   vb.cpus = 4
+   config.disksize.size = "50GB"
+ end
+   end
+ end
+ """
+ 
  [Fail rate]
  20-30%
- 
  
  [Test script]
  The following is the script that I used to test. Ideally it should run forever
  """
  #!/bin/bash
  
  set -ex
  
  counter=1
  
  while true; do
-   echo "$(date): test round ${counter}"
-   counter=$((counter + 1))
-   sudo udevadm trigger --subsystem-nomatch=input
-   ping google.com -c 2
-   sleep 0.5
+  echo "$(date): test round ${counter}"
+  counter=$((counter + 1))
+  sudo udevadm trigger --subsystem-nomatch=input
+  ping google.com -c 2
+  sleep 0.5
  done
  """

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

Title:
  [jammy] DNS issue triggered by command "udevadm trigger --subsystem-
  nomatch=input"

Status in OEM Priority Project:
  New
Status in systemd package in Ubuntu:
  New

Bug description:
  [Summary]
  In jammy server image, when we use NetworkManager as netplan renderer, we may 
have DNS issue after executing command "udevadm trigger 
--subsystem-nomatch=input" as super user, the udevadm command may also be 
executed when we use "apt install XX" or "snap install XX".

  [Steps to reproduce]
  1. Login to a jammy server(jammy desktop environment works fine) image 
environment with Vagrant
  2. execute command "apt install network-manager"
  3. modify netplan config to use NetworkManager as renderer
  """
  # Let NetworkManager manage all devices on this system
  network:
    version: 2
    renderer: NetworkManager
  """
  4. reboot
  5. execute command "ping google.com" first to make sure DNS works fine
  6. execute command "udevadm trigger --subsystem-nomatch=input" as super user
  7. execute command "ping google.com" to check if DNS still works fine
  8. if DNS works fine, then repeat step 6-7, the fail rate is around 20-30%

  [Other info]
  I have tested the above mentioned steps for the following scenarios, which 
work fine without DNS issue
  1. Using focal server environment with Vagrant, there is no DNS issue
  2. Using jammy server environment with Vagrant which has DNS issue, then add 
the kinetic/kinetic-updates source list, install systemd(version: 
251.4-1ubuntu7.3) from kinetic, and there is no DNS issue

  If using focal server environment with Vagrant, then add the
  jammy/jammy-updates source list, install systemd(version:
  249.11-0ubuntu3.9) from jammy, then I will have DNS issue as well by
  following the steps mentioned in [Steps to reproduce]

  [Other info - Vagrantfile]
  The following content is for the Vagrantfile that I used to test
  """
  Vagrant.configure("2") do |config|
if Vagrant.has_plugin?("vagrant-timezone")
  config.timezone.value = :host
end
config.vm.define "test" do |test|
  

[Touch-packages] [Bug 2028023] [NEW] [jammy] DNS issue triggered by command "udevadm trigger --subsystem-nomatch=input"

2023-07-17 Thread Aristo Chen
Public bug reported:

[Summary]
In jammy server image, when we use NetworkManager as netplan renderer, we may 
have DNS issue after executing command "udevadm trigger 
--subsystem-nomatch=input" as super user, the udevadm command may also be 
executed when we use "apt install XX" or "snap install XX".

[Steps to reproduce]
1. Login to a jammy server(jammy desktop environment works fine) image 
environment with Vagrant
2. execute command "apt install network-manager"
3. modify netplan config to use NetworkManager as renderer
"""
# Let NetworkManager manage all devices on this system
network:
  version: 2
  renderer: NetworkManager
"""
4. reboot
5. execute command "ping google.com" first to make sure DNS works fine
6. execute command "udevadm trigger --subsystem-nomatch=input" as super user
7. execute command "ping google.com" to check if DNS still works fine
8. if DNS works fine, then repeat step 6-7, the fail rate is around 20-30%

[Other info]
I have tested the above mentioned steps for the following scenarios, which work 
fine without DNS issue
1. Using focal server environment with Vagrant, there is no DNS issue
2. Using jammy server environment with Vagrant which has DNS issue, then add 
the kinetic/kinetic-updates source list, install systemd(version: 
251.4-1ubuntu7.3) from kinetic, and there is no DNS issue

If using focal server environment with Vagrant, then add the
jammy/jammy-updates source list, install systemd(version:
249.11-0ubuntu3.9) from jammy, then I will have DNS issue as well by
following the steps mentioned in [Steps to reproduce]

[Other info - Vagrantfile]
The following content is for the Vagrantfile that I used to test
"""
Vagrant.configure("2") do |config|
  if Vagrant.has_plugin?("vagrant-timezone")
config.timezone.value = :host
  end
  config.vm.define "test" do |test|
test.vm.box = "ubuntu/jammy64"
test.vm.provider "virtualbox" do |vb|
  vb.name = "test2"
  vb.memory = "4096"
  vb.cpus = 4
  config.disksize.size = "50GB"
end
  end
end
"""

[Fail rate]
20-30%

[Test script]
The following is the script that I used to test. Ideally it should run forever
"""
#!/bin/bash

set -ex

counter=1

while true; do
 echo "$(date): test round ${counter}"
 counter=$((counter + 1))
 sudo udevadm trigger --subsystem-nomatch=input
 ping google.com -c 2
 sleep 0.5
done
"""

** Affects: oem-priority
 Importance: Critical
 Assignee: Aristo Chen (aristochen)
 Status: New

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


** Tags: oem-priority

** Also affects: oem-priority
   Importance: Undecided
   Status: New

** Changed in: oem-priority
   Importance: Undecided => Critical

** Changed in: oem-priority
 Assignee: (unassigned) => Aristo Chen (aristochen)

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

Title:
  [jammy] DNS issue triggered by command "udevadm trigger --subsystem-
  nomatch=input"

Status in OEM Priority Project:
  New
Status in systemd package in Ubuntu:
  New

Bug description:
  [Summary]
  In jammy server image, when we use NetworkManager as netplan renderer, we may 
have DNS issue after executing command "udevadm trigger 
--subsystem-nomatch=input" as super user, the udevadm command may also be 
executed when we use "apt install XX" or "snap install XX".

  [Steps to reproduce]
  1. Login to a jammy server(jammy desktop environment works fine) image 
environment with Vagrant
  2. execute command "apt install network-manager"
  3. modify netplan config to use NetworkManager as renderer
  """
  # Let NetworkManager manage all devices on this system
  network:
    version: 2
    renderer: NetworkManager
  """
  4. reboot
  5. execute command "ping google.com" first to make sure DNS works fine
  6. execute command "udevadm trigger --subsystem-nomatch=input" as super user
  7. execute command "ping google.com" to check if DNS still works fine
  8. if DNS works fine, then repeat step 6-7, the fail rate is around 20-30%

  [Other info]
  I have tested the above mentioned steps for the following scenarios, which 
work fine without DNS issue
  1. Using focal server environment with Vagrant, there is no DNS issue
  2. Using jammy server environment with Vagrant which has DNS issue, then add 
the kinetic/kinetic-updates source list, install systemd(version: 
251.4-1ubuntu7.3) from kinetic, and there is no DNS issue

  If using focal server environment with Vagrant, then add the
  jammy/jammy-updates source list, install systemd(version:
  249.11-0ubuntu3.9) from jammy, then I will have DNS issue as well by
  following the steps mentioned in [Steps to reproduce]

  [Other info - Vagrantfile]
  The following content is for the Vagrantfile that I used to test
  """
  Vagrant.configure("2") do |config|
if Vagrant.has_plugin?("vagrant-timezone")
  

[Touch-packages] [Bug 2027641] Re: whole system has no sound

2023-07-17 Thread Guo Le
The system recovers from this problem after waiting for a while, about 1
hour or so.

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

Title:
  whole system has no sound

Status in pulseaudio package in Ubuntu:
  New

Bug description:
  Suddenly, the whole system has no sound.
  1\ Videos in web browser cannot start playing. the 'play' button does not 
work.
  2, Rhythmbox cannot play audio files. I click the 'play' button, but there is 
no sound and progress bar does not move forward.
  3, VLC cannot play audio file. The progress bar moves forward, but there is 
no sound.

  sound can recover with a system restart.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: pulseaudio 1:15.99.1+dfsg1-1ubuntu2.1
  ProcVersionSignature: Ubuntu 5.19.0-46.47~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-46-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gle2108 F pulseaudio
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Jul 13 10:25:42 2023
  InstallationDate: Installed on 2020-05-02 (1167 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  SourcePackage: pulseaudio
  Symptom: audio
  UpgradeStatus: Upgraded to jammy on 2022-08-12 (334 days ago)
  dmi.bios.date: 08/12/2019
  dmi.bios.release: 1.9
  dmi.bios.vendor: HUAWEI
  dmi.bios.version: 1.09
  dmi.board.asset.tag: NULL
  dmi.board.name: HBL-WX9-PCB
  dmi.board.vendor: HUAWEI
  dmi.board.version: M1130
  dmi.chassis.asset.tag: NULL
  dmi.chassis.type: 10
  dmi.chassis.vendor: HUAWEI
  dmi.chassis.version: M1130
  dmi.ec.firmware.release: 1.9
  dmi.modalias: 
dmi:bvnHUAWEI:bvr1.09:bd08/12/2019:br1.9:efr1.9:svnHUAWEI:pnHBL-WX9:pvrM1130:rvnHUAWEI:rnHBL-WX9-PCB:rvrM1130:cvnHUAWEI:ct10:cvrM1130:skuC233:
  dmi.product.family: MagicBook
  dmi.product.name: HBL-WX9
  dmi.product.sku: C233
  dmi.product.version: M1130
  dmi.sys.vendor: HUAWEI

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509587] Re: package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序 已安裝的 post-installation script 傳回了錯誤退出狀態 1

2023-07-17 Thread Joe
Hi, Benjamin,

This bug has been reported 8 years ago.
I even don't remember which Raspberry Pi device reported the bug.

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

Title:
  package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序
  已安裝的 post-installation script 傳回了錯誤退出狀態 1

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  Upgrading Ubuntu

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: initramfs-tools 0.120ubuntu6
  ProcVersionSignature: Ubuntu 3.18.0-25.26-rpi2 3.18.17
  Uname: Linux 3.18.0-25-rpi2 armv7l
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: armhf
  Date: Sat Oct 24 04:48:58 2015
  ErrorMessage: 子程序 已安裝的 post-installation script 傳回了錯誤退出狀態 1
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序 
已安裝的 post-installation script 傳回了錯誤退出狀態 1
  UpgradeStatus: Upgraded to wily on 2015-10-23 (0 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027641] Re: whole system has no sound

2023-07-17 Thread Guo Le
The problem occurs again at 1893 seconds after boot.  There are similar
log messages.

$ sudo dmesg | grep snd
[sudo] password for gle: 
[4.356180] snd_hda_intel :00:1f.3: DSP detected with PCI 
class/subclass/prog-if info 0x040380
[4.356283] snd_hda_intel :00:1f.3: enabling device ( -> 0002)
[5.724531] snd_hda_intel :00:1f.3: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915])
[5.871268] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC256: 
line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[5.871273] snd_hda_codec_realtek hdaudioC0D0:speaker_outs=0 
(0x0/0x0/0x0/0x0/0x0)
[5.871275] snd_hda_codec_realtek hdaudioC0D0:hp_outs=1 
(0x21/0x0/0x0/0x0/0x0)
[5.871276] snd_hda_codec_realtek hdaudioC0D0:mono: mono_out=0x0
[5.871277] snd_hda_codec_realtek hdaudioC0D0:inputs:
[5.871278] snd_hda_codec_realtek hdaudioC0D0:  Mic=0x12
[ 1893.910999] snd_hda_intel :00:1f.3: CORB reset timeout#2, CORBRP = 65535
[ 1894.194232] snd_hda_codec_hdmi hdaudioC0D2: Unable to sync register 
0x2f0d00. -5
[ 1894.458046] snd_hda_codec_realtek hdaudioC0D0: Unable to sync register 
0x2b8000. -5
[ 1894.458059] snd_hda_codec_realtek hdaudioC0D0: Unable to sync register 
0x2b8000. -5
[ 3046.628657] snd_hda_codec_realtek hdaudioC0D0: Unable to sync register 
0x2b8000. -5
[ 3046.628704] snd_hda_codec_realtek hdaudioC0D0: Unable to sync register 
0x2b8000. -5

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

Title:
  whole system has no sound

Status in pulseaudio package in Ubuntu:
  New

Bug description:
  Suddenly, the whole system has no sound.
  1\ Videos in web browser cannot start playing. the 'play' button does not 
work.
  2, Rhythmbox cannot play audio files. I click the 'play' button, but there is 
no sound and progress bar does not move forward.
  3, VLC cannot play audio file. The progress bar moves forward, but there is 
no sound.

  sound can recover with a system restart.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: pulseaudio 1:15.99.1+dfsg1-1ubuntu2.1
  ProcVersionSignature: Ubuntu 5.19.0-46.47~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-46-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gle2108 F pulseaudio
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Jul 13 10:25:42 2023
  InstallationDate: Installed on 2020-05-02 (1167 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  SourcePackage: pulseaudio
  Symptom: audio
  UpgradeStatus: Upgraded to jammy on 2022-08-12 (334 days ago)
  dmi.bios.date: 08/12/2019
  dmi.bios.release: 1.9
  dmi.bios.vendor: HUAWEI
  dmi.bios.version: 1.09
  dmi.board.asset.tag: NULL
  dmi.board.name: HBL-WX9-PCB
  dmi.board.vendor: HUAWEI
  dmi.board.version: M1130
  dmi.chassis.asset.tag: NULL
  dmi.chassis.type: 10
  dmi.chassis.vendor: HUAWEI
  dmi.chassis.version: M1130
  dmi.ec.firmware.release: 1.9
  dmi.modalias: 
dmi:bvnHUAWEI:bvr1.09:bd08/12/2019:br1.9:efr1.9:svnHUAWEI:pnHBL-WX9:pvrM1130:rvnHUAWEI:rnHBL-WX9-PCB:rvrM1130:cvnHUAWEI:ct10:cvrM1130:skuC233:
  dmi.product.family: MagicBook
  dmi.product.name: HBL-WX9
  dmi.product.sku: C233
  dmi.product.version: M1130
  dmi.sys.vendor: HUAWEI

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Theodore Ts'o
Flawed by what definition? Editors allow people to create files with
spaces, or with dollar signs, or with accepted characters. Some of these
characters may require quoting if you use spaces or doll=lars. Not
allowing accented characters will cause speakers of various European
languages to complain that you're not letting them use french words in
file names (or file system labels), and this is an unacceptable English
language hegemony over the great languange which is French. :-)

In fact, there's nothing wrong with using any of these characters in
file system labels. For example, look at /dev/disk/by-label for a
filesystem set with "e2label /tmp/foo.img foo\$bar":

# ls /dev/disk/by-label/
total 0
ext-disk 'foo\x24bar' lambda-backup old-files@
   
And with the filename label set via "e2label /tmp/foo.img Misère"

# /bin/ls /dev/disk/by-label
ext-disk lambda-backup Misère old-files
 ^^^

So how are these characters flawed? what makes them be forced to wear a
large scarlet letter "A" over their clothing? Why shouldn't the french
be allowed to use accepted characters in file names or in file system
labels?

Inquiring minds want to know but as the upstream maintainer of
e2fsprogs, I absolutely reject this as a bug.

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Theodore Ts'o
-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to e2fsprogs in Ubuntu.
https://bugs.launchpad.net/bugs/2027979

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Coeur Noir
« Hence, this feature request should not be considered a security
feature »

Nobody said it was a security feature.

But I surely think it's inappropriate that an utility allows to create «
flawed » labels.

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1522501] Re: package linux-image-3.13.0-71-generic 3.13.0-71.114 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-3.13.0-71-generic 3.13.0-71.114 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  /boot has insufficient free space errors out package.. get this error
  regularly with updates.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-71-generic 3.13.0-71.114
  ProcVersionSignature: Ubuntu 3.13.0-71.114-generic 3.13.11-ckt29
  Uname: Linux 3.13.0-71-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  btas   2520 F pulseaudio
   /dev/snd/controlC2:  btas   2520 F pulseaudio
   /dev/snd/controlC0:  btas   2520 F pulseaudio
   /dev/snd/controlC1:  btas   2520 F pulseaudio
  Date: Wed Dec  2 15:20:24 2015
  DuplicateSignature: 
package:linux-image-3.13.0-71-generic:3.13.0-71.114:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=58ac00c5-e186-4a69-bfa4-39033d10ef1f
  InstallationDate: Installed on 2015-03-04 (273 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. H55M-USB3
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-71-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1.4
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-3.13.0-71-generic 3.13.0-71.114 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/12/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F6
  dmi.board.name: H55M-USB3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF6:bd02/12/2010:svnGigabyteTechnologyCo.,Ltd.:pnH55M-USB3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnH55M-USB3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: H55M-USB3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1555550] Re: package linux-image-extra-3.19.0-51-generic 3.19.0-51.58~14.04.1 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-3.19.0-51-generic 3.19.0-51.58~14.04.1
  failed to install/upgrade: run-parts:
  /etc/kernel/postinst.d/initramfs-tools exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  The issue comes from insufficient boot disk space.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-extra-3.19.0-51-generic 3.19.0-51.58~14.04.1
  ProcVersionSignature: Ubuntu 3.19.0-51.58~14.04.1-generic 3.19.8-ckt13
  Uname: Linux 3.19.0-51-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  Date: Thu Mar 10 10:03:50 2016
  DuplicateSignature: 
package:linux-image-extra-3.19.0-51-generic:3.19.0-51.58~14.04.1:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  InstallationDate: Installed on 2015-10-17 (144 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.5
   apt  1.0.1ubuntu2.11
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-3.19.0-51-generic 3.19.0-51.58~14.04.1 
failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools 
exited with return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1588020] Re: package linux-image-4.4.0-22-generic 4.4.0-22.40 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-4.4.0-22-generic 4.4.0-22.40 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Unknown.  Was just running software-updater.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-22-generic 4.4.0-22.40
  ProcVersionSignature: Ubuntu 4.4.0-22.39-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  anthony2534 F pulseaudio
   /dev/snd/controlC0:  anthony2534 F pulseaudio
   /dev/snd/controlC1:  anthony2534 F pulseaudio
  Date: Wed Jun  1 12:07:48 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=97eaf500-7154-4bd0-8f73-35023eeddcdf
  InstallationDate: Installed on 2014-11-18 (561 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  MachineType: LENOVO 20CD002UUS
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-22-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-22-generic 4.4.0-22.40 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to xenial on 2016-04-22 (40 days ago)
  dmi.bios.date: 06/16/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GQET37WW (1.17 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20CD002UUS
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 Pro
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrGQET37WW(1.17):bd06/16/2014:svnLENOVO:pn20CD002UUS:pvrThinkPadS1Yoga:rvnLENOVO:rn20CD002UUS:rvrSDK0E50510Pro:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20CD002UUS
  dmi.product.version: ThinkPad S1 Yoga
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1592825] Re: package linux-image-extra-3.19.0-49-generic 3.19.0-49.55~14.04.1 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-3.19.0-49-generic 3.19.0-49.55~14.04.1
  failed to install/upgrade: run-parts:
  /etc/kernel/postinst.d/initramfs-tools exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  error occurred when I attempted to run a system software update

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-extra-3.19.0-49-generic 3.19.0-49.55~14.04.1
  ProcVersionSignature: Ubuntu 3.19.0-49.55~14.04.1-generic 3.19.8-ckt12
  Uname: Linux 3.19.0-49-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  Date: Wed Jun 15 00:29:47 2016
  DpkgHistoryLog:
   Start-Date: 2016-06-15  00:27:49
   Commandline: aptdaemon role='role-install-packages' sender=':1.95'
   Install: python-slip:amd64 (0.4.0-1, automatic), firewalld:amd64 (0.3.7-1, 
automatic), firewall-applet:amd64 (0.3.7-1), ebtables:amd64 (2.0.10.4-3ubuntu1, 
automatic), python-slip-dbus:amd64 (0.4.0-1, automatic), python-decorator:amd64 
(3.4.0-2build1, automatic)
  DuplicateSignature: 
package:linux-image-extra-3.19.0-49-generic:3.19.0-49.55~14.04.1:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  InstallationDate: Installed on 2015-08-13 (306 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.5
   apt  1.0.1ubuntu2.11
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-3.19.0-49-generic 3.19.0-49.55~14.04.1 
failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools 
exited with return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1612520] Re: package linux-image-3.13.0-93-generic 3.13.0-93.140 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-3.13.0-93-generic 3.13.0-93.140 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  The above reported failure occurred.  It appears to be a problem with
  lack of boot space,  How do I create more?

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-93-generic 3.13.0-93.140
  ProcVersionSignature: Ubuntu 3.13.0-92.139-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-92-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  Date: Thu Aug 11 08:21:26 2016
  DuplicateSignature: 
package:linux-image-3.13.0-93-generic:3.13.0-93.140:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=4a700920-481a-4665-956e-1093b2a22564
  InstallationDate: Installed on 2014-07-05 (768 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-92-generic 
root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1.12
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: initramfs-tools
  Title: package linux-image-3.13.0-93-generic 3.13.0-93.140 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/05/2009
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1503
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: M4A78T-E
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1503:bd06/05/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A78T-E:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1674103] Re: package linux-image-extra-4.4.0-67-generic 4.4.0-67.88 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-4.4.0-67-generic 4.4.0-67.88 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  I don't know how to specify. The notification I saw was that the
  update could not be fully installed.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-67-generic 4.4.0-67.88
  ProcVersionSignature: Ubuntu 4.4.0-67.88-generic 4.4.49
  Uname: Linux 4.4.0-67-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  arnold 2272 F pulseaudio
   /dev/snd/controlC0:  arnold 2272 F pulseaudio
  Date: Sun Mar 19 14:32:22 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=eb6a15f2-248c-421a-a242-0c7484fefd71
  MachineType: Acer Aspire 5542
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-67-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.8
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-67-generic 4.4.0-67.88 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (232 days ago)
  dmi.bios.date: 10/22/2009
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: V1.05
  dmi.board.name: JV50TR
  dmi.board.vendor: Acer
  dmi.board.version: Rev
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrV1.05:bd10/22/2009:svnAcer:pnAspire5542:pvr0100:rvnAcer:rnJV50TR:rvrRev:cvnAcer:ct10:cvrNone:
  dmi.product.name: Aspire 5542
  dmi.product.version: 0100
  dmi.sys.vendor: Acer

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1691657] Re: package linux-generic 4.4.0.78.84 failed to install/upgrade: problèmes de dépendances - laissé non configuré

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-generic 4.4.0.78.84 failed to install/upgrade: problèmes
  de dépendances - laissé non configuré

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  There is no space in the /boot volume

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-generic 4.4.0.78.84
  ProcVersionSignature: Ubuntu 4.4.0-75.96-generic 4.4.59
  Uname: Linux 4.4.0-75-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mneglia1903 F pulseaudio
  Date: Sun May 14 21:05:24 2017
  ErrorMessage: problèmes de dépendances - laissé non configuré
  HibernationDevice: RESUME=UUID=55cf948b-4a3b-420d-8837-375800aeda99
  InstallationDate: Installed on 2016-07-22 (299 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 0c45:670c Microdia 
   Bus 001 Device 003: ID 0a5c:6412 Broadcom Corp. 
   Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for 
Bluetooth
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Dell Inc. XPS 13 9350
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-75-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.7
  SourcePackage: initramfs-tools
  Title: package linux-generic 4.4.0.78.84 failed to install/upgrade: problèmes 
de dépendances - laissé non configuré
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/14/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.4.4
  dmi.board.name: 0TG3CN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A02
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.4.4:bd06/14/2016:svnDellInc.:pnXPS139350:pvr:rvnDellInc.:rn0TG3CN:rvrA02:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9350
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1679723] Re: package linux-image-generic 4.4.0.72.78 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-generic 4.4.0.72.78 failed to install/upgrade:
  run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return
  code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Automatic update fail

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-generic 4.4.0.72.78
  ProcVersionSignature: Ubuntu 4.4.0-71.92-generic 4.4.49
  Uname: Linux 4.4.0-71-generic i686
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  feichau2102 F pulseaudio
  Date: Tue Apr  4 11:46:00 2017
  DpkgHistoryLog:
   Start-Date: 2017-04-04  11:44:37
   Commandline: /usr/bin/unattended-upgrade
   Install: linux-headers-4.4.0-72-generic:i386 (4.4.0-72.93, automatic), 
linux-headers-4.4.0-72:i386 (4.4.0-72.93, automatic), 
linux-image-4.4.0-72-generic:i386 (4.4.0-72.93, automatic), 
linux-image-extra-4.4.0-72-generic:i386 (4.4.0-72.93, automatic)
   Upgrade: linux-headers-generic:i386 (4.4.0.71.77, 4.4.0.72.78), 
linux-libc-dev:i386 (4.4.0-71.92, 4.4.0-72.93), linux-image-generic:i386 
(4.4.0.71.77, 4.4.0.72.78), linux-generic:i386 (4.4.0.71.77, 4.4.0.72.78)
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=49aab6d3-db3c-497a-b453-45f38f47bab2
  InstallationDate: Installed on 2015-11-20 (501 days ago)
  InstallationMedia: Lubuntu 15.10 "Wily Werewolf" - Release i386 (20151021)
  IwConfig:
   enp0s3no wireless extensions.
   
   lono wireless extensions.
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 002: ID 80ee:0021 VirtualBox USB Tablet
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: innotek GmbH VirtualBox
  ProcFB: 0 vboxdrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-71-generic 
root=/dev/mapper/lubuntu--vg-root ro locale=pt_BR quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.6
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-generic 4.4.0.72.78 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1
  UpgradeStatus: Upgraded to xenial on 2016-05-24 (314 days ago)
  dmi.bios.date: 12/01/2006
  dmi.bios.vendor: innotek GmbH
  dmi.bios.version: VirtualBox
  dmi.board.name: VirtualBox
  dmi.board.vendor: Oracle Corporation
  dmi.board.version: 1.2
  dmi.chassis.type: 1
  dmi.chassis.vendor: Oracle Corporation
  dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
  dmi.product.name: VirtualBox
  dmi.product.version: 1.2
  dmi.sys.vendor: innotek GmbH

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1693119] Re: package linux-image-extra-4.4.0-66-generic (not installed) failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-4.4.0-66-generic (not installed) failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  I have no additional details.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-66-generic (not installed)
  ProcVersionSignature: Ubuntu 4.4.0-78.99-generic 4.4.62
  Uname: Linux 4.4.0-78-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  kajic  2117 F pulseaudio
  Date: Mon May 22 14:01:17 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=990d601a-911a-40a5-8b0b-401062d17914
  InstallationDate: Installed on 2016-10-06 (229 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 0c45:670c Microdia 
   Bus 001 Device 003: ID 04f3:20d0 Elan Microelectronics Corp. 
   Bus 001 Device 002: ID 8087:0a2b Intel Corp. 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Dell Inc. XPS 13 9350
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-78-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro noprompt persistent quiet splash 
acpi_sleep=nonvs vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.20
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-66-generic (not installed) failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/14/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.4.4
  dmi.board.name: 09JHRY
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.4.4:bd06/14/2016:svnDellInc.:pnXPS139350:pvr:rvnDellInc.:rn09JHRY:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9350
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1691798] Re: package linux-image-extra-4.4.0-75-generic 4.4.0-75.96 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-4.4.0-75-generic 4.4.0-75.96 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  I tried updating

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-75-generic 4.4.0-75.96
  ProcVersionSignature: Ubuntu 4.4.0-72.93-generic 4.4.49
  Uname: Linux 4.4.0-72-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  anon   2001 F pulseaudio
   /dev/snd/controlC0:  anon   2001 F pulseaudio
  Date: Thu May 18 12:19:22 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=7f0a4815-0f11-4b86-8a42-500b90fa26d1
  InstallationDate: Installed on 2016-09-28 (232 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: Apple Inc. MacBookAir7,2
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-72-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash pcie_aspm=force 
i915.i915_enable_rc6=1 i915.lvds_downclock=1 i915.i915_enable_fbc=1 
intel_idle.max_cstate=1 acpi_backlight=vendor vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-75-generic 4.4.0-75.96 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/22/2016
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBA71.88Z.0166.B12.1602221953
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-937CB26E2E02BB01
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookAir7,2
  dmi.chassis.asset.tag: Chassis Board Asset Tag#
  dmi.chassis.type: 9
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-937CB26E2E02BB01
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBA71.88Z.0166.B12.1602221953:bd02/22/2016:svnAppleInc.:pnMacBookAir7,2:pvr1.0:rvnAppleInc.:rnMac-937CB26E2E02BB01:rvrMacBookAir7,2:cvnAppleInc.:ct9:cvrMac-937CB26E2E02BB01:
  dmi.product.name: MacBookAir7,2
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1751541] Re: package linux-generic-hwe-16.04 4.13.0.36.55 failed to install/upgrade: 依赖关系问题 - 仍未被配置

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-generic-hwe-16.04 4.13.0.36.55 failed to
  install/upgrade: 依赖关系问题 - 仍未被配置

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  sorry,I don't know

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-generic-hwe-16.04 4.13.0.36.55
  ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.15
  Architecture: amd64
  Date: Sun Feb 25 06:33:11 2018
  ErrorMessage: 依赖关系问题 - 仍未被配置
  InstallationDate: Installed on 2017-11-23 (94 days ago)
  InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.25
  SourcePackage: initramfs-tools
  Title: package linux-generic-hwe-16.04 4.13.0.36.55 failed to 
install/upgrade: 依赖关系问题 - 仍未被配置
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1753352] Re: package linux-image-extra-4.4.0-116-generic 4.4.0-116.140 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-4.4.0-116-generic 4.4.0-116.140 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  dpkg -l | grep linux-image
  ii  linux-image-4.4.0-112-generic   4.4.0-112.135 
   amd64Linux kernel image for version 4.4.0 on 64 bit x86 
SMP
  ii  linux-image-4.4.0-116-generic   4.4.0-116.140 
   amd64Linux kernel image for version 4.4.0 on 64 bit x86 
SMP
  ii  linux-image-extra-4.4.0-112-generic 4.4.0-112.135 
   amd64Linux kernel extra modules for version 4.4.0 on 64 
bit x86 SMP
  iF  linux-image-extra-4.4.0-116-generic 4.4.0-116.140 
   amd64Linux kernel extra modules for version 4.4.0 on 64 
bit x86 SMP
  iU  linux-image-generic   

  uname -r
  4.4.0-116-generic

  The above after rebooting to *-116.
  System seems to be working; I will try to repair the failed installation soon.

  There has been a constant issue where the installer tries to recover
  long-uninstalled initram elements such as initrd.img-4.2.0-16-generic
  (and later) filling /boot, etc. I have manually removed these files
  from /boot to an "obsolete" folder to allow df -h to report enough
  space.

  The system seems to be reading outdated info from an 'initram.conf' or
  similar file and I believe this may be the fault, or part of it. I can
  manually edit out references to earlier kernels when I find the file.

  Do you have any suggestions?

  Advanced user

  CM BRADLEY
  05/03/2018
  AU CDST 13:25:00

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-116-generic 4.4.0-116.140
  ProcVersionSignature: Ubuntu 4.4.0-116.140-generic 4.4.98
  Uname: Linux 4.4.0-116-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.15
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  administrator   2025 F pulseaudio
   /dev/snd/controlC0:  administrator   2025 F pulseaudio
   /dev/snd/seq:timidity   1329 F timidity
  Date: Mon Mar  5 13:03:41 2018
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=abf7583a-8eda-4113-a8cd-1f301a7d7f06
  InstallationDate: Installed on 2016-04-26 (677 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   lono wireless extensions.
   
   enp4s0no wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. EP45-UD3
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-116-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.17
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-116-generic 4.4.0-116.140 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/27/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F9
  dmi.board.name: EP45-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF9:bd01/27/2010:svnGigabyteTechnologyCo.,Ltd.:pnEP45-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnEP45-UD3:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: EP45-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

To manage notifications about this bug go to:

[Touch-packages] [Bug 1774212] Re: package initramfs-tools 0.130ubuntu3 failed to install/upgrade: installed initramfs-tools package post-installation script subprocess returned error exit status 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package initramfs-tools 0.130ubuntu3 failed to install/upgrade:
  installed initramfs-tools package post-installation script subprocess
  returned error exit status 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  happened during upgrade form 16.04 to 18.04

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: initramfs-tools 0.130ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-127.153-generic 4.4.128
  Uname: Linux 4.4.0-127-generic x86_64
  NonfreeKernelModules: bbswitch nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  Date: Wed May 30 18:07:34 2018
  ErrorMessage: installed initramfs-tools package post-installation script 
subprocess returned error exit status 1
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.130ubuntu3 failed to install/upgrade: 
installed initramfs-tools package post-installation script subprocess returned 
error exit status 1
  UpgradeStatus: Upgraded to bionic on 2018-05-30 (0 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1776106] Re: package initramfs-tools 0.122ubuntu8.11 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package initramfs-tools 0.122ubuntu8.11 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  it my

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.11
  ProcVersionSignature: Ubuntu 4.4.0-127.153-generic 4.4.128
  Uname: Linux 4.4.0-127-generic i686
  ApportVersion: 2.20.1-0ubuntu2.18
  Architecture: i386
  Date: Sun Jun 10 22:09:32 2018
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.4
   apt  1.2.26
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.11 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to xenial on 2018-06-10 (0 days ago)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-12-09T18:41:30

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1797306] Re: package linux-image-extra-4.4.0-137-generic 4.4.0-137.163 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 798414, so it 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.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

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

Title:
  package linux-image-extra-4.4.0-137-generic 4.4.0-137.163 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Upgrading a computer (running Apache / Graphite) over ssh and this
  showed up

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-137-generic 4.4.0-137.163
  ProcVersionSignature: Ubuntu 3.13.0-157.207-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-157-generic x86_64
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 Oct 10 22:32 seq
   crw-rw 1 root audio 116, 33 Oct 10 22:32 timer
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
  ApportVersion: 2.20.1-0ubuntu2.18
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp3', '/dev/dsp2', 
'/dev/dsp1', '/dev/dsp', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer'] 
failed with exit code 1:
  Date: Wed Oct 10 22:40:04 2018
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=/dev/mapper/perf--vg-swap_1
  InstallationDate: Installed on 2015-05-25 (1235 days ago)
  InstallationMedia: Ubuntu-Server 14.04.1 LTS "Trusty Tahr" - Release 
amd64+mac (20140722.3)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: QEMU Standard PC (i440FX + PIIX, 1996)
  PciMultimedia:
   
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-157-generic 
root=/dev/mapper/hostname--vg-root ro
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.18
  RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-137-generic 4.4.0-137.163 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to xenial on 2018-10-11 (0 days ago)
  dmi.bios.date: 01/01/2011
  dmi.bios.vendor: Bochs
  dmi.bios.version: Bochs
  dmi.chassis.type: 1
  dmi.chassis.vendor: Bochs
  dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnQEMU:pnStandardPC(i440FX+PIIX,1996):pvrpc-i440fx-trusty:cvnBochs:ct1:cvr:
  dmi.product.name: Standard PC (i440FX + PIIX, 1996)
  dmi.product.version: pc-i440fx-trusty
  dmi.sys.vendor: QEMU

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1514140] Re: opensslconf.h not found Incorrect reference in openssl header files on the 32 bit version?

2023-07-17 Thread Adrien Nader
To the best of my knowledge, this is not currently an issue and both
libssl-dev:i386 and libssl-dev:amd64 ship their
/usr/include/${arch}/openssl/{opensslconf,configuration}.h. Moreover,
since a comment in the linked askubuntu.com thread did the archeology
and mentions the issue doesn't happen anymore, I'm going to mark this as
Fix Released.

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

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

Title:
  opensslconf.h not found  Incorrect reference in openssl header files
  on the 32 bit version?

Status in openssl package in Ubuntu:
  Fix Released

Bug description:
  http://askubuntu.com/questions/523831/opensslconf-h-not-found

  I had to add i386-linux-gnu/openssl to several header files in order
  to get this package to work in other software.

  I was on a 32bit system

  The files I modified were:
  eos2.h
  ecdsa.h
  ec.h

  Possibly all I had to do was copy this opensslconf.h file over, but
  this was unclear what I was supposed to do??

  If this is not a bug, could there be an obvious comment on this issue?
  I think that the installer could modify these header files for the
  system openssl is installed on?

  Description:  Ubuntu 15.04
  Release:  15.04

  Installed: 1.0.1f-1ubuntu11.4
Candidate: 1.0.1f-1ubuntu11.4
Version table:
   *** 1.0.1f-1ubuntu11.4 0
  500 http://us.archive.ubuntu.com/ubuntu/ vivid-updates/main i386 
Packages
  500 http://security.ubuntu.com/ubuntu/ vivid-security/main i386 
Packages
  100 /var/lib/dpkg/status
   1.0.1f-1ubuntu11 0
  500 http://us.archive.ubuntu.com/ubuntu/ vivid/main i386 Packages

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1994165] Re: CMS_final: do not ignore CMS_dataFinal result

2023-07-17 Thread Adrien Nader
I was closing this for the reasons I outlined above. However, since
then, I've decided to try to do an SRU of openssl for Jammy and I can
try to integrate these changes.

** Changed in: openssl (Ubuntu)
   Status: Incomplete => Won't Fix

** Changed in: openssl (Ubuntu Jammy)
   Status: Incomplete => Won't Fix

** Changed in: openssl (Ubuntu Kinetic)
   Status: Incomplete => Won't Fix

** Changed in: openssl (Ubuntu)
   Status: Won't Fix => Triaged

** Changed in: openssl (Ubuntu Jammy)
   Status: Won't Fix => Triaged

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

Title:
  CMS_final: do not ignore CMS_dataFinal result

Status in openssl package in Ubuntu:
  Triaged
Status in openssl source package in Jammy:
  Triaged
Status in openssl source package in Kinetic:
  Won't Fix

Bug description:
  https://github.com/openssl/openssl/pull/18876

  The CMS_dataFinal result is important as signature may fail, however, it
  is ignored while returning success from CMS_final.

  Please add this fix to The openssl 3.0.2 "Jammy Jellyfish (supported)"

  Thanks

  Upstream commit:

  ```
  commit 67c0460b89cc1b0644a1a59af78284dfd8d720af
  Author: Alon Bar-Lev 
  Date:   Tue Jul 26 15:17:06 2022 +0300

  Handle SMIME_crlf_copy return code
  
  Currently the SMIME_crlf_copy result is ignored in all usages. It does
  return failure when memory allocation fails.
  
  This patch handles the SMIME_crlf_copy return code in all occurrences.
  
  Signed-off-by: Alon Bar-Lev 
  
  Reviewed-by: Tomas Mraz 
  Reviewed-by: Paul Dale 
  Reviewed-by: Hugo Landau 
  (Merged from https://github.com/openssl/openssl/pull/18876)
  ```

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 335225] Re: "openssl verify -CAfile mutil_ca.pem site.cert" fails even if mutil_ca.pem contains the chain for site.cert

2023-07-17 Thread Adrien Nader
I'm going to mark this bug as Won't Fix because we don't have a
confirmation and I can't tell if this was actually merged and/or fixed
in a new openssl version even though both seem likely.

** Changed in: openssl (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  "openssl verify -CAfile mutil_ca.pem site.cert" fails even if
  mutil_ca.pem contains the chain for site.cert

Status in openssl package in Ubuntu:
  Won't Fix

Bug description:
  Binary package hint: openssl

  Verification fails even if the CAfile contains the CA root certificates chain
  for the site cert.

  Steps:

  I have a CAfile.pem (all these files attached in testfiles.tgz)
  contains lots of CA root certificates.
  I run the following command

  $ openssl verify -CAfile CAfile.pem aol.cert
  aol.cert: /C=US/ST=Virginia/L=Dulles/O=AOL LLC/OU=Portal 
Services/CN=www.aol.com
  error 20 at 0 depth lookup:unable to get local issuer certificate

  $ openssl verify -CAfile CAfile.pem akamai.cert
  akamai.cert: OK

  Then I append aolca.pem(AOL Member CA) in the end of CAfile.pem, rename it
  to CAfile2.pem
  $ cat CAfile.pem aolca.pem > CAfile2.pem

  and run the following commands

  $ openssl verify -CAfile CAfile2.pem aol.cert
  aol.cert: OK

  $ openssl verify -CAfile CAfile2.pem akamai.cert
  akamai.cert: /C=US/O=Akamai Technologies, Inc./CN=a248.e.akamai.net
  error 20 at 0 depth lookup:unable to get local issuer certificate

  The verification for aol.cert passes as expected, but failing to verify
  akamai.cert is unexpected.

  If I configure/compile openssl with "-d" option, openssl will fail to load the
  CAfile.pem

  $ openssl verify -CAfile CAfile.pem akamai.cert

   Electric Fence 2.1 Copyright (C) 1987-1998 Bruce Perens.

  ElectricFence Exiting: mprotect() failed: Cannot allocate memory

  This issue happens in both 0.9.8j and stock 0.9.8g in Ubuntu 8.10
  If you try to re-produce this on Ubuntu/Debian, be sure to rename 
/usr/lib/ssl/certs/
  since openssl will try to load these CA root certificates as last
  resort.(or try it with strace to make sure openssl is not accessing them)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1708511] Re: package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade: Paket ist in einem sehr schlechten inkonsistenten Zustand - Sie sollten es nochmal installieren

2023-07-17 Thread Adrien Nader
*** This bug is a duplicate of bug 1692981 ***
https://bugs.launchpad.net/bugs/1692981

It really looks like a duplicate of this issue and considering how long
this was, I think it the best resolution possible for this bug report.

** This bug has been marked a duplicate of bug 1692981
   package libssl-dev:amd64 1.0.2g-1ubuntu11.2 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration

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

Title:
  package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade:
  Paket ist in einem sehr schlechten inkonsistenten Zustand - Sie
  sollten es  nochmal installieren, bevor Sie die Konfiguration
  versuchen.

Status in openssl package in Ubuntu:
  New

Bug description:
  in screen there is the information for a conflict

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libssl1.0.0:i386 1.0.2g-1ubuntu4.8
  ProcVersionSignature: Ubuntu 4.4.0-70.91-generic 4.4.49
  Uname: Linux 4.4.0-70-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.10
  Architecture: amd64
  Date: Thu Aug  3 21:10:17 2017
  DpkgHistoryLog:
   Start-Date: 2017-08-03  21:10:10
   Commandline: apt-get install -f
   Requested-By: carsten (1000)
   Upgrade: grub-common:amd64 (2.02~beta2-36ubuntu3.11, 
2.02~beta2-36ubuntu3.12), grub2-common:amd64 (2.02~beta2-36ubuntu3.11, 
2.02~beta2-36ubuntu3.12), grub-pc:amd64 (2.02~beta2-36ubuntu3.11, 
2.02~beta2-36ubuntu3.12), grub-pc-bin:amd64 (2.02~beta2-36ubuntu3.11, 
2.02~beta2-36ubuntu3.12)
  ErrorMessage: Paket ist in einem sehr schlechten inkonsistenten Zustand - Sie 
sollten es  nochmal installieren, bevor Sie die Konfiguration versuchen.
  InstallationDate: Installed on 2017-02-11 (173 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  PackageArchitecture: i386
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.20
  SourcePackage: openssl
  Title: package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade: 
Paket ist in einem sehr schlechten inkonsistenten Zustand - Sie sollten es  
nochmal installieren, bevor Sie die Konfiguration versuchen.
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1715424] Re: package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade: El paquete está en un estado grave de inconsistencia - debe reinstalarlo antes de intentar su

2023-07-17 Thread Adrien Nader
*** This bug is a duplicate of bug 1692981 ***
https://bugs.launchpad.net/bugs/1692981

This looks like another duplicate of #1692981 and I'm going to mark it
as such considering how long ago this was and how unlikely it would be
to get more details that would lead a different way.

** This bug has been marked a duplicate of bug 1692981
   package libssl-dev:amd64 1.0.2g-1ubuntu11.2 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration

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

Title:
  package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade:
  El paquete está en un estado grave de inconsistencia - debe
  reinstalarlo  antes de intentar su configuración.

Status in openssl package in Ubuntu:
  Confirmed

Bug description:
  ubuntu 16.04 LTS

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libssl1.0.0:i386 1.0.2g-1ubuntu4.8
  ProcVersionSignature: Ubuntu 4.4.0-93.116-generic 4.4.79
  Uname: Linux 4.4.0-93-generic i686
  ApportVersion: 2.20.1-0ubuntu2.10
  Architecture: i386
  Date: Wed Sep  6 10:12:16 2017
  ErrorMessage: El paquete está en un estado grave de inconsistencia - debe 
reinstalarlo  antes de intentar su configuración.
  InstallationDate: Installed on 2016-03-12 (542 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta i386 (20150805)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.2
   apt  1.2.24
  SourcePackage: openssl
  Title: package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade: 
El paquete está en un estado grave de inconsistencia - debe reinstalarlo  antes 
de intentar su configuración.
  UpgradeStatus: Upgraded to xenial on 2016-07-30 (402 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1529461] Re: package libssl-dev 1.0.1f-1ubuntu2.16 failed to install/upgrade: intentando sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', que está también en el paquete ia32-li

2023-07-17 Thread Adrien Nader
I'm going to close this as Won't Fix because the issue comes from a
conflict between ia32-libs-dev and libssl-dev for i386 which is
unsurprising. I can't tell the exact cause but ia32-libs is no more and
it's been a long time (even for 14.04).

** Changed in: openssl (Ubuntu)
   Status: New => Won't Fix

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

Title:
  package libssl-dev 1.0.1f-1ubuntu2.16 failed to install/upgrade:
  intentando sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', que está
  también en el paquete ia32-libs-dev 3.0.0~ubuntu14.04.1

Status in openssl package in Ubuntu:
  Won't Fix

Bug description:
  I don't know the installation problem. Sorry

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: libssl-dev 1.0.1f-1ubuntu2.16
  ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
  Uname: Linux 3.13.0-74-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  AptOrdering:
   libssl-dev: Install
   libssl-dev: Configure
  Architecture: amd64
  Date: Sat Dec 26 13:08:56 2015
  DpkgTerminalLog:
   Preparing to unpack .../libssl-dev_1.0.1f-1ubuntu2.16_i386.deb ...
   Unpacking libssl-dev:i386 (1.0.1f-1ubuntu2.16) ...
   dpkg: error al procesar el archivo 
/var/cache/apt/archives/libssl-dev_1.0.1f-1ubuntu2.16_i386.deb (--unpack):
intentando sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', que está 
también en el paquete ia32-libs-dev 3.0.0~ubuntu14.04.1
  DuplicateSignature: package:libssl-dev:1.0.1f-1ubuntu2.16:intentando 
sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', que está también en el 
paquete ia32-libs-dev 3.0.0~ubuntu14.04.1
  ErrorMessage: intentando sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', 
que está también en el paquete ia32-libs-dev 3.0.0~ubuntu14.04.1
  InstallationDate: Installed on 2015-03-01 (300 days ago)
  InstallationMedia: Linux Lite 2.2 64-bit - Release amd64
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.5
   apt  1.0.1ubuntu2.10
  SourcePackage: openssl
  Title: package libssl-dev 1.0.1f-1ubuntu2.16 failed to install/upgrade: 
intentando sobreescribir `/usr/lib/i386-linux-gnu/libssl.so', que está también 
en el paquete ia32-libs-dev 3.0.0~ubuntu14.04.1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1165910] Re: openssl:i386 package conflicts with openssl, preventing 32bit packages that need it from working.

2023-07-17 Thread Adrien Nader
On lunar I have both libssl3:amd64 and libssl3:i386. I'm going to close
this as Fix Released considering the time since the bug report.

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

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

Title:
  openssl:i386 package conflicts with openssl, preventing 32bit packages
  that need it from working.

Status in openssl package in Ubuntu:
  Fix Released

Bug description:
  this is on 12.04 x64, probably affects other versions.

  maybe there's a good technical reason for it?

  maybe it's a packaging oversight?

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: openssl:i386 (not installed)
  ProcVersionSignature: Ubuntu 3.5.0-26.42-generic 3.5.7.6
  Uname: Linux 3.5.0-26-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: amd64
  Date: Sun Apr  7 17:18:32 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: openssl
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1018307] Re: SSL renegotiation fails

2023-07-17 Thread Adrien Nader
** Changed in: openssl (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  SSL renegotiation fails

Status in openssl package in Ubuntu:
  Won't Fix
Status in postgresql-9.4 package in Ubuntu:
  Confirmed
Status in postgresql package in Juju Charms Collection:
  Fix Released

Bug description:
  With PostgreSQL 9.1, SSL renegotiation is enabled by default. This
  fails under Ubuntu 12.04, most noticeably when using streaming
  replication as the renegotiation limit is hit quickly.

  On the master:

  2012-06-25 16:16:26 PDT LOG:  SSL renegotiation failure
  2012-06-25 16:16:26 PDT LOG:  SSL error: unexpected record
  2012-06-25 16:16:26 PDT LOG:  could not send data to client: Connection reset 
by peer

  On the hot standby:

  2012-06-25 11:12:11 PDT FATAL:  could not receive data from WAL stream: SSL 
error: sslv3 alert unexpected message
  2012-06-25 11:12:11 PDT LOG:  record with zero length at 1C5/95D2FE00

  If our SSL libraries do not support SSL renegotiation, the default
  setting is wrong and perhaps warnings emitted if attempts are made to
  enable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: postgresql-9.1 9.1.4-0ubuntu12.04
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic 3.2.18
  Uname: Linux 3.2.0-25-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Wed Jun 27 16:38:33 2012
  ProcEnviron:
   LANGUAGE=en_AU:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  SourcePackage: postgresql-9.1
  UpgradeStatus: Upgraded to precise on 2012-04-27 (60 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1620023] Re: libssl-dev cannot coexists with libssl-dev:i386

2023-07-17 Thread Adrien Nader
I tested this in a lunar container and the issue seems fixed. I'm going
to close this report.

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

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

Title:
  libssl-dev cannot coexists with libssl-dev:i386

Status in openssl package in Ubuntu:
  Fix Released

Bug description:
  when installing the package "libssl-dev:i386" it removed the package 
"libssl-dev".
  the outcome of this is that I cannot compile code for embedded amd64 along 
with code for i386 without installing the suit package alternately.

  I aware to this:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689093

  but also with latest version it is not working for me.

  Description:Ubuntu 12.04.5 LTS
  Release:12.04

  $ apt-cache policy libssl-dev
  libssl-dev:
Installed: 1.0.1-4ubuntu5.36
Candidate: 1.0.1-4ubuntu5.36
Version table:
   *** 1.0.1-4ubuntu5.36 0
  500 http://il.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 
Packages
  100 /var/lib/dpkg/status
   1.0.1-4ubuntu3 0
  500 http://il.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2028010] [NEW] QImage::scaled stack smashing fix not applied

2023-07-17 Thread Juraj
Public bug reported:

The following fix from 2021 for a stack smashing bug in `QImage::scaled`
has apparently not landed in 5.15.3 shipped on Ubuntu 22.04.

https://bugreports.qt.io/browse/QTBUG-92188

** Affects: qtbase-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  The following fix from 2021 for a stack smashing bug in `QImage::scaled`
- has apparently not landed in 5.15.3 shipped on Ubuntu.
+ has apparently not landed in 5.15.3 shipped on Ubuntu 22.04.
  
  https://bugreports.qt.io/browse/QTBUG-92188

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

Title:
  QImage::scaled stack smashing fix not applied

Status in qtbase-opensource-src package in Ubuntu:
  New

Bug description:
  The following fix from 2021 for a stack smashing bug in
  `QImage::scaled` has apparently not landed in 5.15.3 shipped on Ubuntu
  22.04.

  https://bugreports.qt.io/browse/QTBUG-92188

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Theodore Ts'o
In order for e2label to modify the file system label, you need to have
write access to the block device.   That means that a malicious user can
always directly modify the blockdevice (or just use a version of e2label
that doesn't have the proposed check).Hence, this feature request
should not be considered a security feature.   This seems to be more of
a "protect a naive / clueless user who tries to set a file system label:
'Make money fa$t".

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2002043] Re: Python extension modules get built using wrong compiler flags with python2

2023-07-17 Thread Steve Langasek
Reviewing this as part of the Sponsor process, but with my SRU Team hat
on.

The only releases python2.7 is present in which are still eligible for
SRUs are focal, jammy, and kinetic.

All of these releases post-date the demotion of python2.7 to universe.

No one should be deploying new code on python2.7 in Ubuntu 20.04 or
later.

For the cflags to have been this way for years without anyone noticing,
I do not think 'high' is a correct bug importance.

We would not rebuild the python extensions in the archive to correct the
CFLAGS they were already built with when released.

For the uncommon case of a user building their extensions, the obvious
workaround is to set any important flags directly instead of relying on
them being inherited from python2.7.

I would not accept this as an SRU in Ubuntu.  Therefore I do not think
anyone should proceed with sponsorship.  Unsubscribing the sponsors team
and marking wontfix.

** Changed in: python2.7 (Ubuntu Focal)
   Status: In Progress => Won't Fix

** Changed in: python2.7 (Ubuntu Jammy)
   Status: In Progress => Won't Fix

** Changed in: python2.7 (Ubuntu Kinetic)
   Status: In Progress => Won't Fix

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

Title:
  Python extension modules get built using wrong compiler flags with
  python2

Status in python2.7 package in Ubuntu:
  In Progress
Status in python2.7 source package in Bionic:
  Won't Fix
Status in python2.7 source package in Focal:
  Won't Fix
Status in python2.7 source package in Jammy:
  Won't Fix
Status in python2.7 source package in Kinetic:
  Won't Fix
Status in python2.7 source package in Lunar:
  Won't Fix
Status in python2.7 source package in Mantic:
  Won't Fix

Bug description:
  Compiling a Python extension using Python2 (Python 2.7.18) is making
  use of wrong compiler flags, hence dropping required optimizations
  when required. This is happening only when python2 is installed from
  Ubuntu's repositories. By default, Python's distutils module uses
  compiler and linker flags used to compile Python itself to be used to
  compile extensions.

  Steps to reproduce:
  1) On Ubuntu 20.04, install python2 using apt package manager.
  2) After successful installation, verify the CFLAGS variable from sysconfig 
module. On my machine, the output is 

  Python 2.7.18 (default, Jul  1 2022, 12:27:04)
  [GCC 9.4.0] on linux2
  Type "help", "copyright", "credits" or "license" for more information.
  >>> import sysconfig
  >>> sysconfig.get_config_var('CFLAGS')
  '-fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes 
-Wdate-time -D_FORTIFY_SOURCE=2 -g 
-fdebug-prefix-map=/build/python2.7-vvQ8AI/python2.7-2.7.18=. 
-fstack-protector-strong -Wformat -Werror=format-security  '

  3) Build a test extension module using python2 and verify the compilation 
flags. 
  python2 setup.py build_ext --inplace

  Output from below command is not matching with our expected above CFLAGS. 
  aarch64-linux-gnu-gcc -pthread -fno-strict-aliasing -Wdate-time 
-D_FORTIFY_SOURCE=2 -g 
-fdebug-prefix-map=/build/python2.7-vvQ8AI/python2.7-2.7.18=. 
-fstack-protector-strong -Wformat -Werror=format-security -fPIC 
-I/usr/include/python2.7 -c testmodule.c -o 
build/temp.linux-aarch64-2.7/testmodule.o

  
  On further investigation, it looks like Ubuntu's specific patch applied on 
libpython2.7-stdlib package is altering the original upstream implementation of 
distutils/sysconfig.py code.

  Package - https://packages.ubuntu.com/focal/libpython2.7-stdlib
  Patch - 
http://archive.ubuntu.com/ubuntu/pool/universe/p/python2.7/python2.7_2.7.18-1~20.04.3.diff.gz

  Below is the code block which is causing the issue, where the presence of 
configure_cflags is modifying cflags. This code is result of ubuntu's patch and 
doesn't come directly from upstream python implementation.
  File - /usr/lib/python2.7/distutils/sysconfig.py
  Part of code block:
  elif configure_cflags:
  cflags = ' '.join(str(x) for x in (basecflags, configure_cflags, 
extra_cflags) if x)
  ldshared = ldshared + ' ' + configure_cflags

  
  I don't see problem on Python3 though we have extra code added from patch 
there as well. Patch used on python3, is not modifying the cflags completely 
and instead appending new flags to cflags.
  On python3 (tested on Ubuntu 20.04)
  File - /usr/lib/python3.8/distutils/sysconfig.py
  Part of code block which doesn't alter cflags completely
  elif configure_cflags:
  cflags = cflags + ' ' + configure_cflags
  ldshared = ldshared + ' ' + configure_cflags

  
  Request to update the python2 patch to behave similar to what is been done on 
python3.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python2.7/+bug/2002043/+subscriptions


-- 
Mailing list: 

[Touch-packages] [Bug 2027930] Re: Open hotspot, open WIFI, exit the network Settings page and enter again, WIFI switch will be closed automatically.

2023-07-17 Thread Dominic Hargreaves
** Package changed: perl (Ubuntu) => ubuntu

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

Title:
  Open hotspot, open WIFI, exit the network Settings page and enter
  again, WIFI switch will be closed automatically.

Status in Ubuntu:
  New

Bug description:
  1.Environment

  Module manufacturer: Fibocom
  Model of module: L860 R+
  FW Packkage=18601.5001.00.01.16.54
  Enumeration Port:MBIM+2AT
  OS:22.04.2 LTS 
  Kernel: 6.1.27-060127
  Test SIM Card: Unicom
  PLMN:  46001
  Module IMEI: 359869740059493
  Sympthon: Open hotspot, open WIFI, exit the network Settings page and enter 
again, WIFI switch will be closed automatically.
  FR=100%
  How to recovery: NA

  2. Test Steps

  1). Use Unicom card to dial successfully.
  2). On the WIFI Settings page, open the hotspot and turn on the WIFI switch.
  3). Exit the Settings and go to the Settings page again.

  3. Expected Result

  The WIFI switch is on

  4. Actual Result

  The WIFI switch is off

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1888619] Re: [Satellite A200, Realtek ALC268, Speaker, Internal] No sound at all

2023-07-17 Thread angros47
I didn't manage to achieve sound even with boot CD, even with other
versions. I suspect a hardware issue. Anyway, that computer has been
dismissed for unrelated hardware issues, so the bug can be closed, now

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

Title:
  [Satellite A200, Realtek ALC268, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  In the past I had sound (crackling, but working). After some editing
  of the alsa configuration I managed to get the correct sound. Then,
  when updating to version 18 uf Ubuntu LTS, it disappeared, and all my
  attempts to mess with configuration files to restore it failed. Lately
  I have heard it might be related to a quirk in the kernel and it needs
  a specific patch, but I never tried (I am unable to recompile the
  kernel myself, so I couldn't experiment)

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.15.0-112.113-generic 4.15.18
  Uname: Linux 4.15.0-112-generic i686
  ApportVersion: 2.20.9-0ubuntu7.15
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   franco 2266 F...m pulseaudio
   /dev/snd/controlC0:  franco 2198 F lxpanel
franco 2266 F pulseaudio
  CurrentDesktop: LXDE
  Date: Thu Jul 23 08:29:05 2020
  InstallationDate: Installed on 2012-03-14 (3052 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Audio interno - HDA Intel
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   franco 2266 F...m pulseaudio
   /dev/snd/controlC0:  franco 2198 F lxpanel
franco 2266 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [Satellite A200, Realtek ALC268, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/25/2007
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: V1.20
  dmi.board.name: ISKAA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: *
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnTOSHIBA:bvrV1.20:bd04/25/2007:svnTOSHIBA:pnSatelliteA200:pvrPSAE3E-01H00JIT:rvnTOSHIBA:rnISKAA:rvr1.00:cvnTOSHIBA:ct10:cvrN/A:
  dmi.product.family: ABCDEFGHIJKLMNOPQRSTUVWXYZ
  dmi.product.name: Satellite A200
  dmi.product.version: PSAE3E-01H00JIT
  dmi.sys.vendor: TOSHIBA
  mtime.conffile..etc.modprobe.d.alsa-base.conf: 2020-07-21T12:35:10.870879

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1573704] Re: package initramfs-tools 0.122ubuntu8 failed to install/upgrade: podproces instalovaný post-installation skript vrátil chybový status 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

cp: nelze získat informace o '/etc/modprobe.d/nvidia-graphics-drivers.conf': 
Adresář nebo soubor neexistuje
E: /usr/share/initramfs-tools/hooks/copy-nvidia-options failed with return 1.

translated:

cp: unable to get information about 
'/etc/modprobe.d/nvidia-graphics-drivers.conf': directory or file does not exist
E: /usr/share/initramfs-tools/hooks/copy-nvidia-options failed with return 1.

apt-file failed to find the package that ships /usr/share/initramfs-
tools/hooks/copy-nvidia-options. Do you still experience this failure?


** Changed in: initramfs-tools (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  package initramfs-tools 0.122ubuntu8 failed to install/upgrade:
  podproces instalovaný post-installation skript vrátil chybový status 1

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  during install of the nvidia-364 video driver

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  Date: Fri Apr 22 18:52:09 2016
  ErrorMessage: podproces instalovaný post-installation skript vrátil chybový 
status 1
  InstallationDate: Installed on 2016-04-22 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1
   apt  1.2.10ubuntu1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8 failed to install/upgrade: 
podproces instalovaný post-installation skript vrátil chybový status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1556657] Re: package linux-image-generic 4.4.0.12.13 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: kann /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth nicht 
lesen: Datei oder Verzeichnis nicht gefunden
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

This bug is a duplicate of bug #1532355.

** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-generic 4.4.0.12.13 failed to install/upgrade:
  run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return
  code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Some packages failed to install in an upgrade from Ubuntu 15.10 to
  xenial.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-generic 4.4.0.12.13
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  skipper2807 F pulseaudio
   /dev/snd/controlC1:  skipper2807 F pulseaudio
  Date: Sat Mar 12 20:00:14 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  MachineType: System manufacturer System Product Name
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic 
root=UUID=6dafe73c-87c3-4d01-ab1b-6272a9188057 ro quiet splash 
crashkernel=384M-:128M crashkernel=384M-:128M vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-generic 4.4.0.12.13 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-12 (0 days ago)
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3904
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8H67-M PRO
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3904:bd04/27/2013:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8H67-MPRO:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1541792] Re: package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1541486
   package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  part of install of 16.04 on MacBookPro from 15.10

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-2-generic 4.4.0-2.16
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ernie  1844 F pulseaudio
  Date: Wed Feb  3 21:57:54 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=114a7a80-da77-4467-beb4-6eb526990eae
  InstallationDate: Installed on 2016-02-01 (2 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release i386 (20151021)
  MachineType: Apple Computer, Inc. MacBookPro1,2
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-2-generic 
root=UUID=3b5d0fcb-cb08-4b15-987c-da97232a222f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-35ubuntu1
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-03 (0 days ago)
  dmi.bios.date: 10/12/06
  dmi.bios.vendor: Apple Computer, Inc.
  dmi.bios.version: MBP12.88Z.0061.B03.0610121334
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F42DBEC8
  dmi.board.vendor: Apple Computer, Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag
  dmi.chassis.type: 8
  dmi.chassis.vendor: Apple Computer, Inc.
  dmi.chassis.version: Mac-F42DBEC8
  dmi.modalias: 
dmi:bvnAppleComputer,Inc.:bvrMBP12.88Z.0061.B03.0610121334:bd10/12/06:svnAppleComputer,Inc.:pnMacBookPro1,2:pvr1.0:rvnAppleComputer,Inc.:rnMac-F42DBEC8:rvrPVT:cvnAppleComputer,Inc.:ct8:cvrMac-F42DBEC8:
  dmi.product.name: MacBookPro1,2
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Computer, Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1542286] Re: package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1541486
   package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  I got this error while upgrading from Ubuntu 15.10 to 16.04 (Alpha 2 I
  think).

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-2-generic 4.4.0-2.16
  ProcVersionSignature: Ubuntu 4.2.0-27.32-generic 4.2.8-ckt1
  Uname: Linux 4.2.0-27-generic x86_64
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lonnie 1656 F pulseaudio
   /dev/snd/controlC0:  lonnie 1656 F pulseaudio
  Date: Fri Feb  5 05:38:49 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=154ec9be-4204-4fe0-9dcd-3e13f4b66375
  InstallationDate: Installed on 2015-10-28 (99 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Hewlett-Packard HP Pavilion dv8 Notebook PC
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-27-generic 
root=UUID=97d572db-5554-4fa8-915d-e8bf227ce4a5 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-35ubuntu1
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-2-generic 4.4.0-2.16 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-05 (0 days ago)
  dmi.bios.date: 05/31/2010
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.25
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 7001
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 35.35
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.25:bd05/31/2010:svnHewlett-Packard:pnHPPaviliondv8NotebookPC:pvr04992224121000104:rvnHewlett-Packard:rn7001:rvr35.35:cvnHewlett-Packard:ct10:cvrN/A:
  dmi.product.name: HP Pavilion dv8 Notebook PC
  dmi.product.version: 04992224121000104
  dmi.sys.vendor: Hewlett-Packard

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1552389] Re: package linux-image-generic 4.4.0.9.10 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: impossible de lire 
/usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth: Aucun fichier ou 
dossier de ce type
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

This is a duplicate of bug #1532355.

** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-generic 4.4.0.9.10 failed to install/upgrade: run-
  parts: /etc/kernel/postinst.d/initramfs-tools exited with return code
  2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Nothing

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-generic 4.4.0.9.10
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  guy1604 F pulseaudio
  Date: Wed Mar  2 20:29:19 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=a840153e-3517-4ae0-b9c2-ce526dfa09b4
  InstallationDate: Installed on 2015-11-28 (95 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release i386 (20151021)
  MachineType: LENOVO 6474EC3
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=6b5760a0-d7b8-4b4d-a797-298e409a8432 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-generic 4.4.0.9.10 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-02 (0 days ago)
  dmi.bios.date: 10/17/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 7UET94WW (3.24 )
  dmi.board.name: 6474EC3
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr7UET94WW(3.24):bd10/17/2012:svnLENOVO:pn6474EC3:pvrThinkPadT400:rvnLENOVO:rn6474EC3:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 6474EC3
  dmi.product.version: ThinkPad T400
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1547935] Re: package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  dont much on computers

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-6-generic 4.4.0-6.21
  ProcVersionSignature: Ubuntu 4.2.0-29.34-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-29-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jonathan   1535 F pulseaudio
  Date: Sat Feb 20 14:40:01 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=b7fc9b7c-870f-4398-a289-81fc518bcf42
  InstallationDate: Installed on 2013-04-19 (1036 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
  MachineType: Acer Aspire 5740
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-29-generic 
root=/dev/mapper/ubuntu-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-20 (0 days ago)
  dmi.bios.date: 03/18/2010
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: V1.22
  dmi.board.name: Aspire 5740
  dmi.board.vendor: Acer
  dmi.board.version: Rev
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: Rev
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrV1.22:bd03/18/2010:svnAcer:pnAspire5740:pvrRev:rvnAcer:rnAspire5740:rvrRev:cvnAcer:ct10:cvrRev:
  dmi.product.name: Aspire 5740
  dmi.product.version: Rev
  dmi.sys.vendor: Acer

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1549292] Re: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  i dont know what is going on

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-7-generic 4.4.0-7.22
  ProcVersionSignature: Ubuntu 4.2.0-30.35-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  ingjulianparra   1484 F pulseaudio
   /dev/snd/controlC0:  ingjulianparra   1484 F pulseaudio
  Date: Wed Feb 24 09:10:51 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=34e4498e-f910-4a8b-ba96-0a8af0f99a30
  InstallationDate: Installed on 2016-02-07 (16 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Dell Inc. Inspiron 3537
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic.efi.signed 
root=UUID=8caa2eae-c7d9-4df9-b152-eb273ab58259 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-24 (0 days ago)
  dmi.bios.date: 11/12/2013
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 0MJNYC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A07
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd11/12/2013:svnDellInc.:pnInspiron3537:pvrA07:rvnDellInc.:rn0MJNYC:rvrA00:cvnDellInc.:ct8:cvrA07:
  dmi.product.name: Inspiron 3537
  dmi.product.version: A07
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1549533] Re: package linux-image-generic 4.4.0.7.8 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1549531
   package linux-image-extra-4.4.0-7-generic 4.4.0-7.22 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-generic 4.4.0.7.8 failed to install/upgrade: run-
  parts: /etc/kernel/postinst.d/initramfs-tools exited with return code
  2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Upgrade failure. But system is still running ...

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-generic 4.4.0.7.8
  ProcVersionSignature: Ubuntu 4.4.0-7.22-generic 4.4.2
  Uname: Linux 4.4.0-7-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  heiko  2026 F pulseaudio
  Date: Thu Feb 25 00:27:59 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=b80b33ed-aad7-449d-a704-2b3c4433fc09
  InstallationDate: Installed on 2015-12-29 (57 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  MachineType: LENOVO 6468AF4
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-7-generic 
root=UUID=f4457ebc-0b50-4985-af9f-ef80749359d2 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-generic 4.4.0.7.8 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-24 (0 days ago)
  dmi.bios.date: 02/27/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 7LETD0WW (2.30 )
  dmi.board.name: 6468AF4
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: 6468AF4L3C2596
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr7LETD0WW(2.30):bd02/27/2012:svnLENOVO:pn6468AF4:pvrThinkPadT61:rvnLENOVO:rn6468AF4:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 6468AF4
  dmi.product.version: ThinkPad T61
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1550321] Re: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  This occurred when trying to upgrade from 15.10 to 16.04 beta 2.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-7-generic 4.4.0-7.22
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mike   1844 F pulseaudio
  Date: Fri Feb 26 12:06:52 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=fca52877-4cd9-49c5-bda2-347ce230d633
  InstallationDate: Installed on 2016-02-15 (10 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release i386 (20151021)
  IwConfig:
   lono wireless extensions.
   
   enp2s0no wireless extensions.
  MachineType: Dell Inc. OptiPlex GX520
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=df05bac8-06c3-4efa-b757-814324a48b72 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-26 (0 days ago)
  dmi.bios.date: 11/30/2006
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0XG309
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 15
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd11/30/2006:svnDellInc.:pnOptiPlexGX520:pvr:rvnDellInc.:rn0XG309:rvr:cvnDellInc.:ct15:cvr:
  dmi.product.name: OptiPlex GX520
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1550472] Re: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  This happened for me on a do-release-upgrade from Wily to Xenial. The
  Wily install was fresh today.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-7-generic 4.4.0-7.22
  ProcVersionSignature: Ubuntu 4.2.0-30.35-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1566 F pulseaudio
  Date: Fri Feb 26 13:38:45 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=27d2ce07-7815-4c49-808a-ee2fd8cef2a4
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=aff9298e-0673-497f-ac95-3c07c8979b29 ro quiet splash vt.handoff=7
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-7-generic 4.4.0-7.22 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-26 (0 days ago)
  dmi.bios.date: 12/21/2010
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.00
  dmi.board.name: M3A-GLAN
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.00:bd12/21/2010:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnM3A-GLAN:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1550794] Re: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1550599
   package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  upgrade from 15.10.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  pzhang 1668 F pulseaudio
  Date: Sat Feb 27 11:46:18 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=0f26e145-84e0-4e11-8e3b-eb10fb211c90
  InstallationDate: Installed on 2015-09-26 (154 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: LENOVO 2007EY5
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=de4f3adf-8c16-4ddd-b49f-ec7bd30672de ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-27 (0 days ago)
  dmi.bios.date: 03/21/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 79ETE7WW (2.27 )
  dmi.board.name: 2007EY5
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr79ETE7WW(2.27):bd03/21/2011:svnLENOVO:pn2007EY5:pvrThinkPadT60:rvnLENOVO:rn2007EY5:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2007EY5
  dmi.product.version: ThinkPad T60
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1551414] Re: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1550599
   package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ashutosh   1607 F pulseaudio
ishaansinha  20704 F pulseaudio
  Date: Mon Feb 29 15:24:51 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=0aa1e307-0752-422a-aa68-6c2ba85e24dc
  InstallationDate: Installed on 2016-02-22 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 5986:068f Acer, Inc 
   Bus 001 Device 002: ID 8087:0a2a Intel Corp. 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: System76, Inc. Lemur
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic.efi.signed 
root=UUID=3c2858cf-5f0f-4787-9248-edcd6418a8a3 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-29 (0 days ago)
  dmi.bios.date: 11/29/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.06RS76
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: Lemur
  dmi.board.vendor: System76, Inc.
  dmi.board.version: lemu6
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: System76, Inc.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.06RS76:bd11/29/2015:svnSystem76,Inc.:pnLemur:pvrlemu6:rvnSystem76,Inc.:rnLemur:rvrlemu6:cvnSystem76,Inc.:ct10:cvrN/A:
  dmi.product.name: Lemur
  dmi.product.version: lemu6
  dmi.sys.vendor: System76, Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1552381] Re: package linux-image-4.4.0-9-generic 4.4.0-9.24 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-9-generic 4.4.0-9.24 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Issue appeared during update from 15.10.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  kostas 2315 F pulseaudio
  Date: Wed Mar  2 14:44:20 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=ab442bbf-edfd-449d-9458-6cf581dba71c
  InstallationDate: Installed on 2015-09-22 (161 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Sony Corporation VPCEB47GM
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=9b4e2dea-1cf8-484d-acce-a942293c8ce3 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-9-generic 4.4.0-9.24 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-02 (0 days ago)
  dmi.bios.date: 01/28/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: R1170Y8
  dmi.board.asset.tag: N/A
  dmi.board.name: VAIO
  dmi.board.vendor: Sony Corporation
  dmi.board.version: N/A
  dmi.chassis.asset.tag: N/A
  dmi.chassis.type: 10
  dmi.chassis.vendor: Sony Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrR1170Y8:bd01/28/2011:svnSonyCorporation:pnVPCEB47GM:pvrC608NENQ:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
  dmi.product.name: VPCEB47GM
  dmi.product.version: C608NENQ
  dmi.sys.vendor: Sony Corporation

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1553744] Re: package linux-image-4.4.0-10-generic 4.4.0-10.25 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-10-generic 4.4.0-10.25 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  I've installed a fresh new Ubuntu 15.10 AMD64, because I couldn’t install 
directly the 16.04.
  after do a: sudo update-manager -d, the system started to upgrade. some 
packages shows up messages of installation errors. It says kernel isn’t 
functional. Ubuntu 15.10 to 16.04 (AMD A10 7850 APU with a R9 290 graphic card).
  the installation sttoped and system just got unusable.
  Looks like ubuntu 16.04 cant be installed as UEFI, as ubuntu 15.10 can.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  zhe1403 F pulseaudio
   /dev/snd/controlC0:  zhe1403 F pulseaudio
   /dev/snd/controlC2:  zhe1403 F pulseaudio
  Date: Sun Mar  6 12:36:46 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=614b6ea9-83ad-4c8a-a581-03bcf289e06e
  InstallationDate: Installed on 2016-03-06 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   enp3s0no wireless extensions.
   
   lono wireless extensions.
  MachineType: MSI MS-7900
  ProcFB:
   0 radeondrmfb
   1 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic.efi.signed 
root=UUID=d8cd991e-7ac6-4097-b3cc-775150407e05 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-10-generic 4.4.0-10.25 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-06 (0 days ago)
  dmi.bios.date: 01/12/2016
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V1.7
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: A88X-G45 GAMING (MS-7900)
  dmi.board.vendor: MSI
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV1.7:bd01/12/2016:svnMSI:pnMS-7900:pvr1.0:rvnMSI:rnA88X-G45GAMING(MS-7900):rvr1.0:cvnMSI:ct3:cvr1.0:
  dmi.product.name: MS-7900
  dmi.product.version: 1.0
  dmi.sys.vendor: MSI

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1553746] Re: package linux-image-extra-4.4.0-10-generic 4.4.0-10.25 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-extra-4.4.0-10-generic 4.4.0-10.25 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  system showed some 5 or 6 kernel errors upgrade messages. 
  All of the in sequence.
  I was upgrading from a 15.10 fresh installation to 16.04.
  the message after all upgrade process was: 
  the upgrade was cancelled. Your system can be unsusable. A recuperation 
process will be run now ( dpkg --configure -a)

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  zhe1403 F pulseaudio
   /dev/snd/controlC0:  zhe1403 F pulseaudio
   /dev/snd/controlC2:  zhe1403 F pulseaudio
  Date: Sun Mar  6 12:37:12 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=614b6ea9-83ad-4c8a-a581-03bcf289e06e
  InstallationDate: Installed on 2016-03-06 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   enp3s0no wireless extensions.
   
   lono wireless extensions.
  MachineType: MSI MS-7900
  ProcFB:
   0 radeondrmfb
   1 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic.efi.signed 
root=UUID=d8cd991e-7ac6-4097-b3cc-775150407e05 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-10-generic 4.4.0-10.25 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-06 (0 days ago)
  dmi.bios.date: 01/12/2016
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V1.7
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: A88X-G45 GAMING (MS-7900)
  dmi.board.vendor: MSI
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV1.7:bd01/12/2016:svnMSI:pnMS-7900:pvr1.0:rvnMSI:rnA88X-G45GAMING(MS-7900):rvr1.0:cvnMSI:ct3:cvr1.0:
  dmi.product.name: MS-7900
  dmi.product.version: 1.0
  dmi.sys.vendor: MSI

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1553749] Re: package linux-image-generic 4.4.0.10.11 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-generic 4.4.0.10.11 failed to install/upgrade:
  run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return
  code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  upgrading from 15.10 with latest update software ( after do a apt-get
  update && sudo apt-get upgrade).

  I got 5 or more errors in sequence.

  I'll try to install manually other kernel.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-generic 4.4.0.10.11
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  zhe1403 F pulseaudio
   /dev/snd/controlC0:  zhe1403 F pulseaudio
   /dev/snd/controlC2:  zhe1403 F pulseaudio
  Date: Sun Mar  6 12:37:12 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=614b6ea9-83ad-4c8a-a581-03bcf289e06e
  InstallationDate: Installed on 2016-03-06 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   enp3s0no wireless extensions.
   
   lono wireless extensions.
  MachineType: MSI MS-7900
  ProcFB:
   0 radeondrmfb
   1 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic.efi.signed 
root=UUID=d8cd991e-7ac6-4097-b3cc-775150407e05 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-generic 4.4.0.10.11 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-06 (0 days ago)
  dmi.bios.date: 01/12/2016
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V1.7
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: A88X-G45 GAMING (MS-7900)
  dmi.board.vendor: MSI
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV1.7:bd01/12/2016:svnMSI:pnMS-7900:pvr1.0:rvnMSI:rnA88X-G45GAMING(MS-7900):rvr1.0:cvnMSI:ct3:cvr1.0:
  dmi.product.name: MS-7900
  dmi.product.version: 1.0
  dmi.sys.vendor: MSI

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1556654] Re: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  after upgrade from 15.10 to 16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-12-generic 4.4.0-12.28
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  markmckinnon   2676 F pulseaudio
   /dev/snd/controlC2:  markmckinnon   2676 F pulseaudio
   /dev/snd/controlC0:  markmckinnon   2676 F pulseaudio
  Date: Sun Mar 13 11:25:51 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=fc7478c2-3968-4d60-a931-099d2584b22b
  InstallationDate: Installed on 2016-03-03 (10 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   enp2s0no wireless extensions.
   
   lono wireless extensions.
   
   tun0  no wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-12-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-13 (0 days ago)
  dmi.bios.date: 05/28/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F3
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: 990FXA-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF3:bd05/28/2015:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rn990FXA-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1554726] Re: package linux-image-4.4.0-11-generic 4.4.0-11.26 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-11-generic 4.4.0-11.26 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Error occured during system update from 15.10 to 16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  system 1745 F pulseaudio
  Date: Tue Mar  8 21:46:53 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=b7e7a28f-075a-42e3-ad1e-db34d85756e3
  InstallationDate: Installed on 2012-06-22 (1355 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. NC210/NC110
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=71292b41-3724-460b-a4fc-603f5ef4dc8f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-11-generic 4.4.0-11.26 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-08 (0 days ago)
  dmi.bios.date: 07/04/2011
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: 01VG.M013.20110704.RHU
  dmi.board.asset.tag: SAMSUNG
  dmi.board.name: NC210/NC110
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvr01VG.M013.20110704.RHU:bd07/04/2011:svnSAMSUNGELECTRONICSCO.,LTD.:pnNC210/NC110:pvrNotApplicable:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNC210/NC110:rvrNotApplicable:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:
  dmi.product.name: NC210/NC110
  dmi.product.version: Not Applicable
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1556524] Re: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Hi guys, this happens when I was trying to upgrade from 15.10

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-12-generic 4.4.0-12.28
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  xyh1581 F pulseaudio
  Date: Sat Mar 12 23:42:24 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=f9051acb-2e83-48a9-baaf-c901618724b4
  InstallationDate: Installed on 2016-03-12 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: LENOVO 4290AG3
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic 
root=UUID=492bb13e-1f78-46f4-bc1c-bec60bf5cd81 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-13 (0 days ago)
  dmi.bios.date: 05/31/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET47WW (1.17 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4290AG3
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET47WW(1.17):bd05/31/2011:svnLENOVO:pn4290AG3:pvrThinkPadX220:rvnLENOVO:rn4290AG3:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4290AG3
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1557686] Re: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  During apt-get dist-upgrade, having already been updated to 16.04.

  Current:  4.2.0-19-generic #23-Ubuntu SMP Wed Nov 11 11:39:30 UTC 2015
  x86_64 x86_64 x86_64 GNU/Linux

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-13-generic 4.4.0-13.29
  ProcVersionSignature: Ubuntu 4.2.0-19.23-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  alvinc 1927 F pulseaudio
   /dev/snd/controlC2:  alvinc 1927 F pulseaudio
   /dev/snd/controlC1:  alvinc 1927 F pulseaudio
   /dev/snd/controlC0:  alvinc 1927 F pulseaudio
  Date: Tue Mar 15 10:51:48 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=04466c16-d992-47bf-a017-5874ba5a849a
  InstallationDate: Installed on 2013-11-16 (850 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: System manufacturer System Product Name
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=af24dc68-49e1-4fc0-8a01-9f4bfe3421de ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2015-11-28 (107 days ago)
  dmi.bios.date: 10/08/2010
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2701
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: M3A78-EM
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2701:bd10/08/2010:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM3A78-EM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1557832] Re: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  Upgrade failed

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-13-generic 4.4.0-13.29
  ProcVersionSignature: Ubuntu 4.2.0-34.39-generic 4.2.8-ckt4
  Uname: Linux 4.2.0-34-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  manikandan   1720 F pulseaudio
  Date: Wed Mar 16 00:47:29 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=5aabdff4-e27c-492a-8284-6f4c80f62eb1
  InstallationDate: Installed on 2015-06-15 (274 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: LENOVO 4186
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-34-generic 
root=UUID=263a978e-0c3b-4cb9-9309-8fc7696baf7c ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-16 (0 days ago)
  dmi.bios.date: 03/15/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 15CN35WW(V2.08)
  dmi.board.name: KIWB1
  dmi.board.vendor: LENOVO
  dmi.board.version: REFERENCE
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnLENOVO:bvr15CN35WW(V2.08):bd03/15/2010:svnLENOVO:pn4186:pvrLenovoIdeaPadY550:rvnLENOVO:rnKIWB1:rvrREFERENCE:cvnNoEnclosure:ct10:cvrN/A:
  dmi.product.name: 4186
  dmi.product.version: Lenovo IdeaPad Y550
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1557928] Re: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
*** This bug is a duplicate of bug 1532355 ***
https://bugs.launchpad.net/bugs/1532355

** This bug is no longer a duplicate of bug 1547505
   package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> 
can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
** This bug has been marked a duplicate of bug 1532355
   package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: 
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

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

Title:
  package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-13-generic 4.4.0-13.29
  ProcVersionSignature: Ubuntu 4.4.0-13.29-generic 4.4.5
  Uname: Linux 4.4.0-13-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  Date: Wed Mar 16 00:26:05 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=5c77a969-7f91-4248-ba92-bde1e5aa245d
  InstallationDate: Installed on 2016-03-16 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
   Bus 001 Device 003: ID 2516:0009  
   Bus 001 Device 002: ID 046d:c069 Logitech, Inc. M-U0007 [Corded Mouse M500]
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Intel Corporation STK1AW32SC
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-13-generic.efi.signed 
root=UUID=543df7a3-758c-4ba1-a0a3-f3403c518e51 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-13-generic 4.4.0-13.29 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-03-16 (0 days ago)
  dmi.bios.date: 11/19/2015
  dmi.bios.vendor: Intel Corp.
  dmi.bios.version: SCCHTAX5.86A.0014.2015.1119.1410
  dmi.board.name: Cherry Trail CR
  dmi.board.vendor: Intel Corporation
  dmi.board.version: H91596-202
  dmi.chassis.type: 3
  dmi.chassis.vendor: Intel Corporation
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnIntelCorp.:bvrSCCHTAX5.86A.0014.2015.1119.1410:bd11/19/2015:svnIntelCorporation:pnSTK1AW32SC:pvrH93322-102:rvnIntelCorporation:rnCherryTrailCR:rvrH91596-202:cvnIntelCorporation:ct3:cvr1.0:
  dmi.product.name: STK1AW32SC
  dmi.product.version: H93322-102
  dmi.sys.vendor: Intel Corporation

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1550599] Re: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth: No 
such file or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

Re-assigning to plymouth which ships /usr/share/initramfs-
tools/hooks/plymouth.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  upgrade to lts 16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sbasam 2511 F pulseaudio
  Date: Fri Feb 26 20:30:47 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=acbadf95-6462-4c2a-8a9d-9fe407d5b1c3
  InstallationDate: Installed on 2013-07-07 (964 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  Lsusb:
   Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 001 Device 003: ID 04f2:b217 Chicony Electronics Co., Ltd Lenovo 
Integrated Camera (0.3MP)
   Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 4286CTO
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=c2ade0c5-a3f7-4969-84b8-f2cebe5df332 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-8-generic 4.4.0-8.23 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-27 (0 days ago)
  dmi.bios.date: 07/07/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET50WW (1.20 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4286CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET50WW(1.20):bd07/07/2011:svnLENOVO:pn4286CTO:pvrThinkPadX220:rvnLENOVO:rn4286CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4286CTO
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1923363] Re: Users are not added to various groups (dialout, video, etc.)

2023-07-17 Thread Dave Jones
Per vorlon's comments on the merge request, I've closed the merge and
will re-submit an alternative method using udev rules instead of group
membership. Adding ubuntu-settings for the udev rules, and cloud-init as
we presumably want to remove membership in those groups from server
instances too.

** Tags added: foundations-todo

** Summary changed:

- Users are not added to various groups (dialout, video, etc.)
+ Grant access to hardware (UARTs, I2C, etc.) via custom udev rules

** Also affects: ubuntu-settings (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu Impish)
   Status: New => Won't Fix

** Changed in: cloud-init (Ubuntu Jammy)
   Status: New => Confirmed

** Changed in: cloud-init (Ubuntu Kinetic)
   Status: New => Won't Fix

** Changed in: cloud-init (Ubuntu Lunar)
   Status: New => Won't Fix

** Changed in: cloud-init (Ubuntu Mantic)
   Status: New => Confirmed

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

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

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

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

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

** Changed in: ubuntu-settings (Ubuntu Impish)
   Status: New => Won't Fix

** Changed in: ubuntu-settings (Ubuntu Jammy)
   Status: New => Confirmed

** Changed in: ubuntu-settings (Ubuntu Kinetic)
   Status: New => Won't Fix

** Changed in: ubuntu-settings (Ubuntu Lunar)
   Status: New => Won't Fix

** Changed in: ubuntu-settings (Ubuntu Mantic)
   Status: New => Confirmed

** Changed in: user-setup (Ubuntu Impish)
   Status: Won't Fix => Invalid

** Changed in: user-setup (Ubuntu Jammy)
   Status: Confirmed => Invalid

** Changed in: user-setup (Ubuntu Kinetic)
   Status: Won't Fix => Invalid

** Changed in: user-setup (Ubuntu Lunar)
   Status: Won't Fix => Invalid

** Changed in: user-setup (Ubuntu Mantic)
   Status: Confirmed => Invalid

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

Title:
  Grant access to hardware (UARTs, I2C, etc.) via custom udev rules

Status in cloud-init package in Ubuntu:
  Confirmed
Status in ubiquity package in Ubuntu:
  Invalid
Status in ubuntu-settings package in Ubuntu:
  Confirmed
Status in user-setup package in Ubuntu:
  Invalid
Status in cloud-init source package in Impish:
  Won't Fix
Status in ubiquity source package in Impish:
  Invalid
Status in ubuntu-settings source package in Impish:
  Won't Fix
Status in user-setup source package in Impish:
  Invalid
Status in cloud-init source package in Jammy:
  Confirmed
Status in ubiquity source package in Jammy:
  Invalid
Status in ubuntu-settings source package in Jammy:
  Confirmed
Status in user-setup source package in Jammy:
  Invalid
Status in cloud-init source package in Kinetic:
  Won't Fix
Status in ubiquity source package in Kinetic:
  Invalid
Status in ubuntu-settings source package in Kinetic:
  Won't Fix
Status in user-setup source package in Kinetic:
  Invalid
Status in cloud-init source package in Lunar:
  Won't Fix
Status in ubiquity source package in Lunar:
  Invalid
Status in ubuntu-settings source package in Lunar:
  Won't Fix
Status in user-setup source package in Lunar:
  Invalid
Status in cloud-init source package in Mantic:
  Confirmed
Status in ubiquity source package in Mantic:
  Invalid
Status in ubuntu-settings source package in Mantic:
  Confirmed
Status in user-setup source package in Mantic:
  Invalid

Bug description:
  We're attempting to make the GPIO system on the Raspberry Pi images
  work "out of the box" on the new image. By default, GPIO kernel
  devices are made available to members of the "dialout" group which the
  initial user is added to by default on our server images. However,
  we've noticed that this isn't the case on the desktop images.

  The regression potential is minimal; the group already exists and
  we're simply adding the freshly created user to a new group and not
  removing any existing memberships. The group in question ("dialout")
  is also rarely used these days except for providing access to serial
  consoles, and as mentioned above is already a default membership on
  the server images. The change has been tested on the desktop image
  successfully.

  A test build of the updated image will be made under
  https://launchpad.net/~waveform/+archive/ubuntu/ubiquity and I'll
  attach a debdiff shortly.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1923363/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : 

[Touch-packages] [Bug 1549899] Re: package linux-image-4.2.0-30-generic 4.2.0-30.35 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

cp: omitting directory ‘/etc/udev/rules.d/70-persistent-net.rules’
E: /usr/share/initramfs-tools/hooks/udev failed with return 1.

Re-assigning to systemd source package for the udev package that ships
/usr/share/initramfs-tools/hooks/udev.

** Package changed: initramfs-tools (Ubuntu) => systemd (Ubuntu)

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

Title:
  package linux-image-4.2.0-30-generic 4.2.0-30.35 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  When upgrading from 14.04 to 15.10, I've consistently received this
  error across different machines.

  Was able to work around the issue by modifying /usr/share/initramfs-
  tools/hooks/udev, from:

  # now copy all custom udev rules which don't have an equivalent in /lib (e. g.
  # 70-persistent-net.rules or similar); They might contain network names or
  # other bits which are relevant for the initramfs.
  for rules in /etc/udev/rules.d/*.rules; do
if [ -e "$rules" ] && [ ! -e "/lib/${rules#/etc/}" ]; then
  cp -p $rules $DESTDIR/lib/udev/rules.d/
fi
  done

  
  To:

  # now copy all custom udev rules which don't have an equivalent in /lib (e. g.
  # 70-persistent-net.rules or similar); They might contain network names or
  # other bits which are relevant for the initramfs.
  for rules in /etc/udev/rules.d/*.rules; do
if [ -e "$rules" ] && [ ! -e "/lib/${rules#/etc/}" ]; then
  cp -a $rules $DESTDIR/lib/udev/rules.d/
fi
  done

  (Changed "cp -p" to "cp -a") -- and then ran sudo apt-get install -f.
  System seems to be upgraded/working afterwards.

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-30-generic 4.2.0-30.35
  ProcVersionSignature: Ubuntu 3.13.0-52.86-generic 3.13.11-ckt18
  Uname: Linux 3.13.0-52-generic x86_64
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 Feb 25 16:51 seq
   crw-rw 1 root audio 116, 33 Feb 25 16:51 timer
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Date: Thu Feb 25 16:54:00 2016
  DuplicateSignature: 
package:linux-image-4.2.0-30-generic:4.2.0-30.35:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig'
  Lsusb:
   Bus 001 Device 002: ID 0627:0001 Adomax Technology Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: OpenStack Foundation OpenStack Nova
  PciMultimedia:
   
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-52-generic 
root=UUID=e9ce1610-d74c-465a-8077-22cee3fa2e3d ro console=tty1 console=ttyS0
  RelatedPackageVersions: grub-pc 2.02~beta2-29ubuntu0.3
  RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
  SourcePackage: initramfs-tools
  Title: package linux-image-4.2.0-30-generic 4.2.0-30.35 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to wily on 2016-02-25 (0 days ago)
  dmi.bios.date: 01/01/2011
  dmi.bios.vendor: Bochs
  dmi.bios.version: Bochs
  dmi.chassis.type: 1
  dmi.chassis.vendor: Bochs
  dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnOpenStackFoundation:pnOpenStackNova:pvr2013.2.4:cvnBochs:ct1:cvr:
  dmi.product.name: OpenStack Nova
  dmi.product.version: 2013.2.4
  dmi.sys.vendor: OpenStack Foundation

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1549531] Re: package linux-image-extra-4.4.0-7-generic 4.4.0-7.22 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: kann 
/usr/share/plymouth/themes/ubuntu-gnome-text/ubuntu-gnome-text.plymouth nicht 
lesen: Datei oder Verzeichnis nicht gefunden
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

So reassigning to plymouth which ships /usr/share/initramfs-
tools/hooks/plymouth.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-extra-4.4.0-7-generic 4.4.0-7.22 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  Upgrade failure.
  But system is still running ...

  Edit (of 2016-02-25):
  Package in question is installed. So what's the issue? Is it just a wrong 
message I received from the system? (It was telling me that my system would be 
corrupted and probably unusable ... I'm happy it is not the case ...)

  Edit (of 2016-02-26):
  Because of some sound issues I applied following command to reinstall recent 
kernel: sudo apt-get install --reinstall linux-image-$(uname -r) 
  That fixed my sound problems so far.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-7-generic 4.4.0-7.22
  ProcVersionSignature: Ubuntu 4.4.0-7.22-generic 4.4.2
  Uname: Linux 4.4.0-7-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  heiko  2026 F pulseaudio
  Date: Thu Feb 25 00:27:59 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=b80b33ed-aad7-449d-a704-2b3c4433fc09
  InstallationDate: Installed on 2015-12-29 (57 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  MachineType: LENOVO 6468AF4
  PccardctlIdent:
   Socket 0:
     no product info available
  PccardctlStatus:
   Socket 0:
     no card
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-7-generic 
root=UUID=f4457ebc-0b50-4985-af9f-ef80749359d2 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-7-generic 4.4.0-7.22 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-24 (0 days ago)
  dmi.bios.date: 02/27/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 7LETD0WW (2.30 )
  dmi.board.name: 6468AF4
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: 6468AF4L3C2596
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr7LETD0WW(2.30):bd02/27/2012:svnLENOVO:pn6468AF4:pvrThinkPadT61:rvnLENOVO:rn6468AF4:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 6468AF4
  dmi.product.version: ThinkPad T61
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2009544] Re: OpenSSL 3 performance regression

2023-07-17 Thread Adrien Nader
I'm switching to bug to Confirmed but I still don't really know if we're
going to be able to address this while on 3.0.

I'll try to discuss with at least one person involved in September but I
also really wish there's a new LTS for 24.04.

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

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

Title:
  OpenSSL 3 performance regression

Status in openssl package in Ubuntu:
  Confirmed

Bug description:
  Hello, it sounds like there's some significant performance regressions
  in OpenSSL 3:

  https://github.com/openssl/openssl/issues/20286#issuecomment-1438826816

  Some we might be able to address with:
  https://github.com/openssl/openssl/pull/18151

  Some of the performance differences may be subject to ongoing work.

  Thanks

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1548337] Re: package linux-image-extra-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: kann /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth nicht 
lesen: Datei oder Verzeichnis nicht gefunden
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

So reassigning to plymouth which ships /usr/share/initramfs-
tools/hooks/plymouth.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-extra-4.4.0-6-generic 4.4.0-6.21 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  problem after update 15.10 -> 16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-extra-4.4.0-6-generic 4.4.0-6.21
  ProcVersionSignature: Ubuntu 4.4.0-6.21-generic 4.4.1
  Uname: Linux 4.4.0-6-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  werner 2145 F pulseaudio
  Date: Mon Feb 22 13:22:14 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=c897c4c6-8728-47a8-8fb1-d2239301a928
  InstallationDate: Installed on 2013-03-11 (1077 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130219)
  MachineType: Dell Inc. Latitude D830
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-6-generic 
root=UUID=7bd56494-0e01-446b-bb0c-cabcd9124ded ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-extra-4.4.0-6-generic 4.4.0-6.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-22 (0 days ago)
  dmi.bios.date: 01/04/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd01/04/2010:svnDellInc.:pnLatitudeD830:pvr:rvnDellInc.:rn:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Latitude D830
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1990216] Re: backport fix for "OpenSSL 3 cannot decrypt data encrypted with OpenSSL 1.1 with blowfish in OFB or CFB modes" to Jammy

2023-07-17 Thread Adrien Nader
I plan to prepare a batch with several fixes late August/September.

** Changed in: openssl (Ubuntu Jammy)
   Status: Confirmed => Triaged

** Changed in: openssl (Ubuntu Jammy)
 Assignee: (unassigned) => Adrien Nader (adrien-n)

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

Title:
  backport fix for "OpenSSL 3 cannot decrypt data encrypted with OpenSSL
  1.1 with blowfish in OFB or CFB modes" to Jammy

Status in openssl package in Ubuntu:
  Fix Released
Status in openssl source package in Jammy:
  Triaged

Bug description:
  OpenSSL upstream implemented a fix for their issue #18359  "OpenSSL 3 cannot 
decrypt data encrypted with OpenSSL 1.1 with blowfish in OFB or CFB modes" 
https://github.com/openssl/openssl/issues/18359
  as of libssl3 3.0.4 (and thus it is included in recent libssl3 versions in 
Kinetic).

  Could this fix be backported to libssl3 in Jammy?

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2015645] Re: ufw crashes in wsl2

2023-07-17 Thread Jamie Strandboge
Fyi, uploaded to 0.36.1-4ubuntu0.1 and 0.36-6ubuntu1.1 to jammy-proposed
and focal-proposed, respectively.

** Changed in: ufw (Ubuntu Focal)
   Status: Triaged => In Progress

** Changed in: ufw (Ubuntu Jammy)
   Status: Triaged => In Progress

** Changed in: ufw (Ubuntu Focal)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

** Changed in: ufw (Ubuntu Jammy)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

** Changed in: ufw (Ubuntu Mantic)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

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

Title:
  ufw crashes in wsl2

Status in ufw:
  Fix Released
Status in ufw package in Ubuntu:
  Fix Released
Status in ufw source package in Focal:
  In Progress
Status in ufw source package in Jammy:
  In Progress
Status in ufw source package in Mantic:
  Fix Released

Bug description:
  [ Impact ]

  Currently, ufw is unusable on WSL due to this bug because the
  get_ppid() function traces back on /proc when the command name has
  parentheses (like in WSL). get_ppid() is called with 'ufw enable' and
  so ufw is not able to be enabled on WSL. The upstream patch adjusts
  get_ppid() for this and adds unit tests for this function.

  [ Test Plan ]

  Call 'sudo ufw enable' (it should not trace back) and call 'sudo ufw
  status' to show that it was enabled. Importantly, this is called as
  part of autopkgtests already.

  Furthermore, look in the build logs for:

  test_util
  ...
  test_get_ppid (tests.unit.test_util.UtilTestCase)
  Test get_ppid() ... ok
  test_get_ppid_no_space (tests.unit.test_util.UtilTestCase)
  Test get_ppid() no space ... ok
  test_get_ppid_with_parens (tests.unit.test_util.UtilTestCase)
  Test get_ppid() with parens ... ok
  test_get_ppid_with_space (tests.unit.test_util.UtilTestCase)
  Test get_ppid() with space ... ok
  ...
  --
  Ran 49 tests in 0.355s

  OK

  [ Where problems could occur ]

  The risk of regression is considered low since comprehensive unit
  tests are added for the patched function. Not only is this change in
  upstream ufw 0.36.2, it is already in Debian Bookworm and Ubuntu
  Mantic as part of 0.36.2-1.

  
  # Original Description

  When I enable systemd in WSL2 (it became supported recently), install
  ufw, and run sudo ufw enable, I get the error detailed in
  https://superuser.com/questions/1775776/enabling-ufw-failed-with-
  ubuntu-from-wsl2. You may already be aware of this error, I'm not sure
  if "NotTheDr01ds" has talked to you about this yet. Note that the WSL2
  /proc/[pid]/stat format, although weird, does comply with the spec:
  https://man7.org/linux/man-pages/man5/proc.5.html

  I verified that you can fix this issue by replacing the first split in
  line 427 with rsplit(')', 1) so it splits based on the last
  parenthesis instead of the all parenthesis.

  Before:
  ppid = open(name).readlines()[0].split(')')[1].split()[1]
  After:
  ppid = open(name).readlines()[0].rsplit(')',1)[1].split()[1]

  C:\Users\caleb>wsl --version
  WSL version: 1.1.6.0
  Kernel version: 5.15.90.1
  WSLg version: 1.0.50
  MSRDC version: 1.2.3770
  Direct3D version: 1.608.2-61064218
  DXCore version: 10.0.25131.1002-220531-1700.rs-onecore-base2-hyp
  Windows version: 10.0.19045.2728

  ➜  ufw git:(master) ufw --version
  ufw 0.36
  Copyright 2008-2015 Canonical Ltd.

  ➜  ufw git:(master) cat /proc/229/stat | cut -c -23
  229 (Relay(230)) S 228

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1545310] Re: package linux-image-4.4.0-4-generic 4.4.0-4.19 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

sed: can't read 
/usr/share/plymouth/themes/ubuntu-gnome-text/ubuntu-gnome-text.plymouth: No 
such file or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

So reassigning to plymouth since /usr/share/initramfs-
tools/hooks/plymouth is shipped by it.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-4.4.0-4-generic 4.4.0-4.19 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  bear@cave:~$ lsb_release -rd
  Description:  Ubuntu Xenial Xerus (development branch)
  Release:  16.04

  bear@cave:~$ apt-cache policy initramfs-tools
  initramfs-tools:
Installed: 0.122ubuntu3
Candidate: 0.122ubuntu3
Version table:
   *** 0.122ubuntu3 500
  500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://us.archive.ubuntu.com/ubuntu xenial/main i386 Packages
  100 /var/lib/dpkg/status

  This happened while I was running Firefox and no interaction with or
  expected with this package was expected.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-4-generic 4.4.0-4.19
  ProcVersionSignature: Ubuntu 4.4.0-4.19-generic 4.4.1
  Uname: Linux 4.4.0-4-generic x86_64
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bear   2364 F pulseaudio
  Date: Fri Feb 12 18:25:58 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=78adbcf8-fd60-4ddb-a6a6-1f586a33ceb3
  InstallationDate: Installed on 2016-02-03 (9 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  MachineType: Dell Inc. Inspiron N5050
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-4-generic 
root=UUID=18446932-da4b-4626-b0f6-d2c722b4f5db ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-4-generic 4.4.0-4.19 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-12 (0 days ago)
  dmi.bios.date: 10/14/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 01HXXJ
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A03
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd10/14/2011:svnDellInc.:pnInspironN5050:pvrNotSpecified:rvnDellInc.:rn01HXXJ:rvrA03:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron N5050
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027987] Re: Ubuntu mate mantic 23.10 failed to completely reboot into installed OS

2023-07-17 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
https://iso.qa.ubuntu.com/qatracker/reports/bugs/2027987

** Tags added: iso-testing

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

Title:
  Ubuntu mate mantic 23.10 failed to completely reboot into installed OS

Status in systemd package in Ubuntu:
  New

Bug description:
  QA Testing Build 20230717

  Ubuntu mate mantic 23.10 failed to completely reboot into installed OS
  Systemd crashed OS failed to completely reboot into installed OS.
  Had to manually shutdown/restart virtual box to make bug report.
  Installer worked fine until the reboot.
  The remove media to reboot came on/ hit enter/Crashed..No reboot.
  Reproduced 2 times..same result.
  What should of happened- click remove media to reboot. Reboot into installed 
OS.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: systemd 252.5-2ubuntu3
  ProcVersionSignature: Ubuntu 6.3.0-7.7-generic 6.3.5
  Uname: Linux 6.3.0-7-generic x86_64
  ApportVersion: 2.26.1-0ubuntu3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: MATE
  Date: Mon Jul 17 08:45:10 2023
  InstallationDate: Installed on 2023-07-17 (0 days ago)
  InstallationMedia: Ubuntu-MATE 23.10 "Mantic Minotaur" - Daily amd64 
(20230717)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 001 Device 002: ID 80ee:0021 VirtualBox USB Tablet
   Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
   |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M
  MachineType: innotek GmbH VirtualBox
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.3.0-7-generic 
root=UUID=c396954f-1b91-404e-ad9d-599038ddfcf8 ro quiet splash
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/01/2006
  dmi.bios.vendor: innotek GmbH
  dmi.bios.version: VirtualBox
  dmi.board.name: VirtualBox
  dmi.board.vendor: Oracle Corporation
  dmi.board.version: 1.2
  dmi.chassis.type: 1
  dmi.chassis.vendor: Oracle Corporation
  dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:sku:
  dmi.product.family: Virtual Machine
  dmi.product.name: VirtualBox
  dmi.product.version: 1.2
  dmi.sys.vendor: innotek GmbH

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509587] Re: package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序 已安裝的 post-installation script 傳回了錯誤退出狀態 1

2023-07-17 Thread Benjamin Drung
The kernel version 3.18.0-25.26-rpi2 indicated that you have a Raspberry
Pi. What specific Raspberry Pi modul is it?

** Changed in: initramfs-tools (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序
  已安裝的 post-installation script 傳回了錯誤退出狀態 1

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  Upgrading Ubuntu

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: initramfs-tools 0.120ubuntu6
  ProcVersionSignature: Ubuntu 3.18.0-25.26-rpi2 3.18.17
  Uname: Linux 3.18.0-25-rpi2 armv7l
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: armhf
  Date: Sat Oct 24 04:48:58 2015
  ErrorMessage: 子程序 已安裝的 post-installation script 傳回了錯誤退出狀態 1
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.120ubuntu6 failed to install/upgrade: 子程序 
已安裝的 post-installation script 傳回了錯誤退出狀態 1
  UpgradeStatus: Upgraded to wily on 2015-10-23 (0 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2026637] Re: [mantic] many useful apps are marked for auto removal

2023-07-17 Thread corrado venturini
Installing from last ISO: Ubuntu 23.10 "Mantic Minotaur" - Daily amd64 
(20230717.2)
all the above applications are missing.

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

Title:
  [mantic] many useful apps are marked for auto removal

Status in ubuntu-meta package in Ubuntu:
  Triaged
Status in ubuntu-release-upgrader package in Ubuntu:
  Triaged

Bug description:
  Today update want remove a lot of apps.
  This happens on two systems installed from ISO dated 2023-06-07 and 2023-05-21
  corrado@corrado-n03-mm-0607:~$ sudo apt update && sudo apt upgrade
  [sudo] password for corrado: 
  Hit:1 http://archive.ubuntu.com/ubuntu mantic InRelease
  Hit:2 http://archive.ubuntu.com/ubuntu mantic-updates InRelease
  Hit:3 http://archive.ubuntu.com/ubuntu mantic-backports InRelease
  Hit:4 http://archive.ubuntu.com/ubuntu mantic-security InRelease
  Reading package lists... Done
  Building dependency tree... Done
  Reading state information... Done
  All packages are up to date.
  Reading package lists... Done
  Building dependency tree... Done
  Reading state information... Done
  Calculating upgrade... Done
  The following packages were automatically installed and are no longer 
required:
aisleriot baobab branding-ubuntu cheese cheese-common file-roller
gir1.2-rb-3.0 gnome-mahjongg gnome-mines gnome-sudoku gnome-video-effects
gstreamer1.0-clutter-3.0 guile-3.0-libs libavahi-ui-gtk3-0 libcairomm-1.16-1
libcdr-0.1-1 libchamplain-0.12-0 libchamplain-gtk-0.12-0 libcheese-gtk25
libcheese8 libclutter-gst-3.0-0 libdmapsharing-4.0-3 libevent-2.1-7
libfreehand-0.1-1 libfreerdp-client2-2 libglibmm-2.68-1
libgnome-games-support-1-3 libgnome-games-support-common libgpod-common
libgpod4 libgtkmm-4.0-0 libgupnp-igd-1.0-4 libixml10 liblc3-0 libminiupnpc17
libmspub-0.1-1 libmujs2 libnatpmp1 libpagemaker-0.0-0 libpangomm-2.48-1
libqqwing2v5 libreoffice-calc libreoffice-draw libreoffice-gnome
libreoffice-gtk3 libreoffice-impress librhythmbox-core10 libsdl-image1.2
libsdl1.2debian libsgutils2-1.46-2 libsigc++-3.0-0 libupnp13 libvisio-0.1-1
lp-solve media-player-info python3-mako python3-renderpm
python3-reportlab-accel remmina remmina-common remmina-plugin-rdp
remmina-plugin-secret remmina-plugin-vnc rhythmbox rhythmbox-data
rhythmbox-plugin-alternative-toolbar rhythmbox-plugins shotwell
shotwell-common simple-scan transmission-common transmission-gtk
  Use 'sudo apt autoremove' to remove them.
  0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  corrado@corrado-n03-mm-0607:

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: ubuntu-desktop 1.505
  ProcVersionSignature: Ubuntu 6.3.0-7.7-generic 6.3.5
  Uname: Linux 6.3.0-7-generic x86_64
  ApportVersion: 2.26.1-0ubuntu3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Jul  9 08:53:45 2023
  InstallationDate: Installed on 2023-06-07 (31 days ago)
  InstallationMedia: Ubuntu 23.10 "Mantic Minotaur" - Daily amd64 (20230607)
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  SourcePackage: ubuntu-meta
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2015645] Re: ufw crashes in wsl2

2023-07-17 Thread Jamie Strandboge
** Description changed:

+ [ Impact ]
+ 
+ Currently, ufw is unusable on WSL due to this bug because the get_ppid()
+ function traces back on /proc when the command name has parentheses
+ (like in WSL). get_ppid() is called with 'ufw enable' and so ufw is not
+ able to be enabled on WSL. The upstream patch adjusts get_ppid() for
+ this and adds unit tests for this function.
+ 
+ [ Test Plan ]
+ 
+ Call 'sudo ufw enable' (it should not trace back) and call 'sudo ufw
+ status' to show that it was enabled. Importantly, this is called as part
+ of autopkgtests already.
+ 
+ Furthermore, look in the build logs for:
+ 
+ test_util
+ ...
+ test_get_ppid (tests.unit.test_util.UtilTestCase)
+ Test get_ppid() ... ok
+ test_get_ppid_no_space (tests.unit.test_util.UtilTestCase)
+ Test get_ppid() no space ... ok
+ test_get_ppid_with_parens (tests.unit.test_util.UtilTestCase)
+ Test get_ppid() with parens ... ok
+ test_get_ppid_with_space (tests.unit.test_util.UtilTestCase)
+ Test get_ppid() with space ... ok
+ ...
+ --
+ Ran 49 tests in 0.355s
+ 
+ OK
+ 
+ [ Where problems could occur ]
+ 
+ The risk of regression is considered low since comprehensive unit tests
+ are added for the patched function. Not only is this change in upstream
+ ufw 0.36.2, it is already in Debian Bookworm and Ubuntu Mantic as part
+ of 0.36.2-1.
+ 
+ 
+ # Original Description
+ 
  When I enable systemd in WSL2 (it became supported recently), install
  ufw, and run sudo ufw enable, I get the error detailed in
  https://superuser.com/questions/1775776/enabling-ufw-failed-with-ubuntu-
  from-wsl2. You may already be aware of this error, I'm not sure if
  "NotTheDr01ds" has talked to you about this yet. Note that the WSL2
  /proc/[pid]/stat format, although weird, does comply with the spec:
  https://man7.org/linux/man-pages/man5/proc.5.html
  
  I verified that you can fix this issue by replacing the first split in
  line 427 with rsplit(')', 1) so it splits based on the last parenthesis
  instead of the all parenthesis.
  
  Before:
  ppid = open(name).readlines()[0].split(')')[1].split()[1]
  After:
  ppid = open(name).readlines()[0].rsplit(')',1)[1].split()[1]
  
- 
  C:\Users\caleb>wsl --version
  WSL version: 1.1.6.0
  Kernel version: 5.15.90.1
  WSLg version: 1.0.50
  MSRDC version: 1.2.3770
  Direct3D version: 1.608.2-61064218
  DXCore version: 10.0.25131.1002-220531-1700.rs-onecore-base2-hyp
  Windows version: 10.0.19045.2728
  
  ➜  ufw git:(master) ufw --version
  ufw 0.36
  Copyright 2008-2015 Canonical Ltd.
  
  ➜  ufw git:(master) cat /proc/229/stat | cut -c -23
  229 (Relay(230)) S 228

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

Title:
  ufw crashes in wsl2

Status in ufw:
  Fix Released
Status in ufw package in Ubuntu:
  Fix Released
Status in ufw source package in Focal:
  Triaged
Status in ufw source package in Jammy:
  Triaged
Status in ufw source package in Mantic:
  Fix Released

Bug description:
  [ Impact ]

  Currently, ufw is unusable on WSL due to this bug because the
  get_ppid() function traces back on /proc when the command name has
  parentheses (like in WSL). get_ppid() is called with 'ufw enable' and
  so ufw is not able to be enabled on WSL. The upstream patch adjusts
  get_ppid() for this and adds unit tests for this function.

  [ Test Plan ]

  Call 'sudo ufw enable' (it should not trace back) and call 'sudo ufw
  status' to show that it was enabled. Importantly, this is called as
  part of autopkgtests already.

  Furthermore, look in the build logs for:

  test_util
  ...
  test_get_ppid (tests.unit.test_util.UtilTestCase)
  Test get_ppid() ... ok
  test_get_ppid_no_space (tests.unit.test_util.UtilTestCase)
  Test get_ppid() no space ... ok
  test_get_ppid_with_parens (tests.unit.test_util.UtilTestCase)
  Test get_ppid() with parens ... ok
  test_get_ppid_with_space (tests.unit.test_util.UtilTestCase)
  Test get_ppid() with space ... ok
  ...
  --
  Ran 49 tests in 0.355s

  OK

  [ Where problems could occur ]

  The risk of regression is considered low since comprehensive unit
  tests are added for the patched function. Not only is this change in
  upstream ufw 0.36.2, it is already in Debian Bookworm and Ubuntu
  Mantic as part of 0.36.2-1.

  
  # Original Description

  When I enable systemd in WSL2 (it became supported recently), install
  ufw, and run sudo ufw enable, I get the error detailed in
  https://superuser.com/questions/1775776/enabling-ufw-failed-with-
  ubuntu-from-wsl2. You may already be aware of this error, I'm not sure
  if "NotTheDr01ds" has talked to you about this yet. Note that the WSL2
  /proc/[pid]/stat format, although weird, does comply with the spec:
  https://man7.org/linux/man-pages/man5/proc.5.html

  I verified 

[Touch-packages] [Bug 2027991] [NEW] Please merge dbus 1.14.8-2 (main) from debian unstable (main)

2023-07-17 Thread Olivier Gayot
Public bug reported:

Debian has dbus 1.14.8-2 in unstable
Ubuntu has dbus 1.14.6-1ubuntu1 in mantic

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

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

Title:
   Please merge dbus 1.14.8-2 (main) from debian unstable (main)

Status in dbus package in Ubuntu:
  New

Bug description:
  Debian has dbus 1.14.8-2 in unstable
  Ubuntu has dbus 1.14.6-1ubuntu1 in mantic

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027987] [NEW] Ubuntu mate mantic 23.10 failed to completely reboot into installed OS

2023-07-17 Thread Bernard Stafford
Public bug reported:

QA Testing Build 20230717

Ubuntu mate mantic 23.10 failed to completely reboot into installed OS
Systemd crashed OS failed to completely reboot into installed OS.
Had to manually shutdown/restart virtual box to make bug report.
Installer worked fine until the reboot.
The remove media to reboot came on/ hit enter/Crashed..No reboot.
Reproduced 2 times..same result.
What should of happened- click remove media to reboot. Reboot into installed OS.

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: systemd 252.5-2ubuntu3
ProcVersionSignature: Ubuntu 6.3.0-7.7-generic 6.3.5
Uname: Linux 6.3.0-7-generic x86_64
ApportVersion: 2.26.1-0ubuntu3
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: MATE
Date: Mon Jul 17 08:45:10 2023
InstallationDate: Installed on 2023-07-17 (0 days ago)
InstallationMedia: Ubuntu-MATE 23.10 "Mantic Minotaur" - Daily amd64 (20230717)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 002: ID 80ee:0021 VirtualBox USB Tablet
 Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Lsusb-t:
 /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
 /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
 |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M
MachineType: innotek GmbH VirtualBox
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.3.0-7-generic 
root=UUID=c396954f-1b91-404e-ad9d-599038ddfcf8 ro quiet splash
SourcePackage: systemd
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/01/2006
dmi.bios.vendor: innotek GmbH
dmi.bios.version: VirtualBox
dmi.board.name: VirtualBox
dmi.board.vendor: Oracle Corporation
dmi.board.version: 1.2
dmi.chassis.type: 1
dmi.chassis.vendor: Oracle Corporation
dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:sku:
dmi.product.family: Virtual Machine
dmi.product.name: VirtualBox
dmi.product.version: 1.2
dmi.sys.vendor: innotek GmbH

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


** Tags: amd64 apport-bug mantic

** Description changed:

+ QA Testing Build 20230717
  Systemd crashed OS failed to completely reboot into installed OS.
  Had to manually shutdown/restart virtual box to make bug report.
- Installer worked fine until the reboot. 
+ Installer worked fine until the reboot.
  The remove media to reboot came on/ hit enter/Crashed..No reboot.
  Reproduced 2 times..same result.
  What should of happened- click remove media to reboot. Reboot into installed 
OS.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: systemd 252.5-2ubuntu3
  ProcVersionSignature: Ubuntu 6.3.0-7.7-generic 6.3.5
  Uname: Linux 6.3.0-7-generic x86_64
  ApportVersion: 2.26.1-0ubuntu3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: MATE
  Date: Mon Jul 17 08:45:10 2023
  InstallationDate: Installed on 2023-07-17 (0 days ago)
  InstallationMedia: Ubuntu-MATE 23.10 "Mantic Minotaur" - Daily amd64 
(20230717)
  Lsusb:
-  Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
-  Bus 001 Device 002: ID 80ee:0021 VirtualBox USB Tablet
-  Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
+  Bus 001 Device 002: ID 80ee:0021 VirtualBox USB Tablet
+  Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  Lsusb-t:
-  /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
-  /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
-  |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M
+  /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
+  /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
+  |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M
  MachineType: innotek GmbH VirtualBox
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.3.0-7-generic 
root=UUID=c396954f-1b91-404e-ad9d-599038ddfcf8 ro quiet splash
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/01/2006
  dmi.bios.vendor: innotek GmbH
  dmi.bios.version: VirtualBox
  dmi.board.name: VirtualBox
  dmi.board.vendor: Oracle Corporation
  dmi.board.version: 1.2
  dmi.chassis.type: 1
  dmi.chassis.vendor: Oracle Corporation
  dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:sku:
  dmi.product.family: Virtual Machine
  dmi.product.name: VirtualBox
  dmi.product.version: 1.2
  dmi.sys.vendor: innotek GmbH

** Description changed:

  QA Testing Build 20230717
+ 
+ Ubuntu mate mantic 23.10 failed to completely reboot into installed OS
  Systemd crashed OS failed to completely reboot into installed OS.
  Had to manua

[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread den
hi , same things is possible [b]without[/b] escaping any special characters in 
the gparted application .
For example , i can give a new label to an ext partition entering : /DATA/é*/$  
.

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] Re: won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Coeur Noir
** Description changed:

  Hi,
  
  if naming or renaming an EXT volume,
  
  e2label lets you use any character, including / or * or $ ( and probably
- others )
+ others, like accented letters é è à )
  
  I'd expect at least a warning if such are to be found in a label name.
  
  Or better, it should not be possible to use those in label names.
  
- 
  Example :
  
  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
- a@p:~$ 
+ a@p:~$
  
  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
- a@p:~$ 
+ a@p:~$
  
  a@p:~$ lsblk -fe7 | grep sdb12
- └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
- a@p:~$ 
+ └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
+ a@p:~$
  
  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  New

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others, like accented letters é è à )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1547505] Re: package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2 -> can't read /

2023-07-17 Thread Benjamin Drung
Re-assigning to plymouth since the failing /usr/share/initramfs-
tools/hooks/plymouth is shipped by it.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2 -> can't read
  /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  error occurred while updating from 15.10 to 16.04

  dpkg terminal log:

  update-initramfs: Generating /boot/initrd.img-4.4.0-6-generic
  sed: can't read /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth: 
No such file or directory
  E: /usr/share/initramfs-tools/hooks/plymouth failed with return 2.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-6-generic 4.4.0-6.21
  ProcVersionSignature: Ubuntu 4.2.0-27.32-generic 4.2.8-ckt1
  Uname: Linux 4.2.0-27-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  naveen 1479 F pulseaudio
   /dev/snd/controlC1:  naveen 1479 F pulseaudio
  CRDA:
   country IN: DFS-JP
    (2402 - 2482 @ 40), (N/A, 20), (N/A)
    (5170 - 5250 @ 80), (N/A, 20), (N/A)
    (5250 - 5330 @ 80), (N/A, 20), (0 ms), DFS
    (5735 - 5835 @ 80), (N/A, 20), (N/A)
  Date: Fri Feb 19 18:20:10 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=d9abc4f7-9e91-4ecd-842c-097a41546ed3
  InstallationDate: Installed on 2015-12-13 (68 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 021: ID 04f3:0447 Elan Microelectronics Corp.
   Bus 001 Device 002: ID 0bda:579c Realtek Semiconductor Corp.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 20404
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-27-generic.efi.signed 
root=UUID=38b413f2-788a-4715-895f-8dae3d2bb707 ro noprompt persistent quiet 
splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-6-generic 4.4.0-6.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UpgradeStatus: Upgraded to xenial on 2016-02-19 (0 days ago)
  dmi.bios.date: 10/08/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: A0CN31WW
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Lenovo Flex 2-14
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900059 WIN
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo Flex 2-14
  dmi.modalias: 
dmi:bvnLENOVO:bvrA0CN31WW:bd10/08/2014:svnLENOVO:pn20404:pvrLenovoFlex2-14:rvnLENOVO:rnLenovoFlex2-14:rvr31900059WIN:cvnLENOVO:ct10:cvrLenovoFlex2-14:
  dmi.product.name: 20404
  dmi.product.version: Lenovo Flex 2-14
  dmi.sys.vendor: LENOVO

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1926802] Re: qt5-default package is missed in 21.04

2023-07-17 Thread Dmitry Shachnev
What is the point of installing runtime libraries by hand?

The idea is that you install some application that you want to use, and
it pulls the library packages as dependencies.

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

Title:
  qt5-default package is missed in 21.04

Status in qtbase-opensource-src package in Ubuntu:
  Invalid
Status in Unity Linux:
  New

Bug description:
  Previous 20.10 version has the qt5-default package in place (see
  https://packages.ubuntu.com/groovy/qt5-default ).

  Please upload the  qt5-default package for 21.04 Ubuntu version.

  What is interesting - all its dependencies can be simply installed
  with `sudo apt-get install qtbase5-dev qtchooser qt5-qmake
  qtbase5-dev-tools` .

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1468184] Re: package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Re-assiging to casper because /usr/share/initramfs-tools/hooks/casper-
memdisk is failing.

** Package changed: initramfs-tools (Ubuntu) => casper (Ubuntu)

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

Title:
  package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in casper package in Ubuntu:
  Triaged

Bug description:
  Impossible to install/update

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-21-generic 3.19.0-21.21
  ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-55-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  matthieu   2131 F pulseaudio
   /dev/snd/controlC0:  matthieu   2131 F pulseaudio
  Date: Wed Jun 24 07:18:35 2015
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DuplicateSignature: 
package:linux-image-3.19.0-21-generic:3.19.0-21.21:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=b2512ccb-b2a9-4fdb-91cc-724153a452d8
  InstallationDate: Installed on 2015-06-01 (22 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. XPS 13 9343
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=4e184db3-5efa-419d-82a5-4b8983839a78 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 "acpi_osi=Windows 2013" init=/sbin/upstart
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to vivid on 2015-06-23 (0 days ago)
  dmi.bios.date: 03/25/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 0310JH
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd03/25/2015:svnDellInc.:pnXPS139343:pvr01:rvnDellInc.:rn0310JH:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027979] [NEW] won't warn neither prevent usage of « risky » characters in labels

2023-07-17 Thread Coeur Noir
Public bug reported:

Hi,

if naming or renaming an EXT volume,

e2label lets you use any character, including / or * or $ ( and probably
others )

I'd expect at least a warning if such are to be found in a label name.

Or better, it should not be possible to use those in label names.


Example :

a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
a@p:~$ 

a@p:~$ sudo e2label /dev/sdb12
/Ti$*
a@p:~$ 

a@p:~$ lsblk -fe7 | grep sdb12
└─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
a@p:~$ 

coming from https://forum.ubuntu-
fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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

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

Title:
  won't warn neither prevent usage of « risky » characters in labels

Status in e2fsprogs package in Ubuntu:
  New

Bug description:
  Hi,

  if naming or renaming an EXT volume,

  e2label lets you use any character, including / or * or $ ( and
  probably others )

  I'd expect at least a warning if such are to be found in a label name.

  Or better, it should not be possible to use those in label names.

  
  Example :

  a@p:~$ sudo e2label /dev/sdb12 /Ti\$*
  a@p:~$ 

  a@p:~$ sudo e2label /dev/sdb12
  /Ti$*
  a@p:~$ 

  a@p:~$ lsblk -fe7 | grep sdb12
  └─sdb12   ext4  1.0   /Ti$* 
f583e9b0-f1de-438f-8da8-c1e070407628
  a@p:~$ 

  coming from https://forum.ubuntu-
  fr.org/viewtopic.php?pid=22692892#p22692892 ( french )

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1448552] Re: package initramfs-tools 0.103ubuntu15 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuratio

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Can you re-install initramfs-tools and report back if
that worked?

sudo apt-get install --reinstall initramfs-tools

** Changed in: initramfs-tools (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  package initramfs-tools 0.103ubuntu15 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  I was selecting an additional graphics driver.

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: initramfs-tools 0.103ubuntu15
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  Date: Sat Apr 25 16:43:06 2015
  DuplicateSignature: package:initramfs-tools:0.103ubuntu15:package is in a 
very bad inconsistent state; you should  reinstall it before attempting 
configuration
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2015-04-25 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.7ubuntu4
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.103ubuntu15 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
  UpgradeStatus: Upgraded to vivid on 2015-04-25 (0 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1647032] Re: package linux-image-4.4.0-51-generic 4.4.0-51.72 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

update-initramfs: Generating /boot/initrd.img-4.4.0-51-generic
E: No boot partition found !
run-parts: /etc/initramfs/post-update.d//zz-flash-touch-initrd exited with 
return code 1

The failing zz-flash-touch-initrd comes from initramfs-tools-ubuntu-
touch. So re-assigning to initramfs-tools-ubuntu-touch.

** Package changed: initramfs-tools (Ubuntu) => initramfs-tools-ubuntu-
touch (Ubuntu)

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

Title:
  package linux-image-4.4.0-51-generic 4.4.0-51.72 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools-ubuntu-touch package in Ubuntu:
  Confirmed

Bug description:
  installing the up to date version

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-51-generic 4.4.0-51.72
  ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
  Uname: Linux 4.2.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tony   1972 F pulseaudio
   /dev/snd/controlC1:  tony   1972 F pulseaudio
  Date: Fri Dec  2 20:34:34 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=2aa5e652-49d5-40aa-8a12-9ee160df4704
  InstallationDate: Installed on 2016-12-02 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  IwConfig:
   lono wireless extensions.
   
   lxcbr0no wireless extensions.
   
   enp3s0no wireless extensions.
  MachineType: Hewlett-Packard p7-1423w
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-42-generic 
root=UUID=fef57295-4fdf-4e6d-abff-cf4618b15315 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.2
  RfKill:
   
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-51-generic 4.4.0-51.72 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to xenial on 2016-12-03 (0 days ago)
  dmi.bios.date: 07/16/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ADA
  dmi.board.vendor: Foxconn
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: MXX2390TDW
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd07/16/2013:svnHewlett-Packard:pnp7-1423w:pvr:rvnFoxconn:rn2ADA:rvr1.00:cvnHewlett-Packard:ct3:cvr:
  dmi.product.name: p7-1423w
  dmi.sys.vendor: Hewlett-Packard

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1400717] Re: trigger cycle: package initramfs-tools 0.103ubuntu8 failed to install/upgrade: зацикливание триггеров, отмена работы

2023-07-17 Thread Benjamin Drung
Translated:

dpkg: Loop detected while processing triggers:
  a chain of packets with such triggers may not respond:
   ureadahead -> ureadahead
  batch pending triggers may not be defined:
   libc-bin: ldconfig
   initramfs-tools: update-initramfs
   ureadahead: /etc/init: /etc/init.d
dpkg: error while processing package libc-bin (--configure):
  looping triggers, canceling work
dpkg: Loop detected while processing triggers:
  a chain of packets with such triggers may not respond:
   ureadahead -> ureadahead -> ureadahead
  batch pending triggers may not be defined:
   initramfs-tools: update-initramfs
   ureadahead: /etc/init: /etc/init.d
dpkg: error while processing package initramfs-tools (--configure):
  looping triggers, canceling work

** Package changed: initramfs-tools (Ubuntu) => ureadahead (Ubuntu)

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

Title:
  trigger cycle: package initramfs-tools 0.103ubuntu8 failed to
  install/upgrade: зацикливание триггеров, отмена работы

Status in ureadahead package in Ubuntu:
  Triaged

Bug description:
   lsb_release -rd   
  Description:Ubuntu Vivid Vervet (development branch)
  Release:15.04

  I have not noticed any problems; this is an automatic bug report after
  upgrading to the latest brunch.

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: initramfs-tools 0.103ubuntu8
  ProcVersionSignature: Ubuntu 3.16.0-26.34-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-26-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  Date: Tue Dec  9 20:36:29 2014
  ErrorMessage: зацикливание триггеров, отмена работы
  InstallationDate: Installed on 2014-05-29 (193 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.103ubuntu8 failed to install/upgrade: 
зацикливание триггеров, отмена работы
  UpgradeStatus: Upgraded to vivid on 2014-12-01 (7 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1651883] Re: package linux-firmware 1.157.6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

cp: omitting directory '/etc/udev/rules.d/70-persistent-net.rules'
E: /usr/share/initramfs-tools/hooks/udev failed with return 1.

The udev hook comes from the udev package. So re-assigning to the
systemd source package.

** Package changed: initramfs-tools (Ubuntu) => systemd (Ubuntu)

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

Title:
  package linux-firmware 1.157.6 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  during a do-release-upgrade from 14.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.6
  ProcVersionSignature: Ubuntu 4.2.0-30.36~14.04.1-generic 4.2.8-ckt3
  Uname: Linux 4.2.0-30-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  Date: Wed Dec 21 13:31:06 2016
  Dependencies:
   
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.15ubuntu0.2
  SourcePackage: initramfs-tools
  Title: package linux-firmware 1.157.6 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to xenial on 2016-12-21 (0 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1658519] Re: package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The failing /usr/share/initramfs-tools/hooks/plymouth
comes from plymouth. So re-assigning to plymouth.

** Package changed: initramfs-tools (Ubuntu) => plymouth (Ubuntu)

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

Title:
  package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in plymouth package in Ubuntu:
  Confirmed

Bug description:
  dpkg terminal log:

  update-initramfs: Generating /boot/initrd.img-4.4.0-59-generic
  cp: impossible d'évaluer 
'/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf': Aucun fichier ou 
dossier de ce type
  E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

  translated:

  update-initramfs: Generating /boot/initrd.img-4.4.0-59-generic
  cp: unable to evaluate 
'/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf': No such file or folder
  E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-59-generic 4.4.0-59.80
  ProcVersionSignature: Ubuntu 4.4.0-57.78-generic 4.4.35
  Uname: Linux 4.4.0-57-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alain  1597 F pulseaudio
  Date: Sun Jan 22 21:38:50 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=0f6e45e9-1db8-424f-b077-e221aa9ab057
  InstallationDate: Installed on 2017-01-03 (19 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  IwConfig:
   lono wireless extensions.

   eth0  no wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-57-generic 
root=UUID=c7441fe3-cc4b-485e-9f5a-5934116777fb ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.6
  RfKill:

  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to xenial on 2017-01-06 (16 days ago)
  dmi.bios.date: 12/24/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F2
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: F2A88X-D3HP
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF2:bd12/24/2015:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnF2A88X-D3HP:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1641230] Re: package linux-image-4.4.0-43-generic 4.4.0-43.63 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

E: /usr/share/initramfs-tools/hooks/fsck failed with return 1.

Sadly there is no error message for the command that failed in this fsck
shell script. Can you reproduce this error message? If yes, please add
"set -x" to the second line in /usr/share/initramfs-tools/hooks/fsck to
collect debugging information.

** Changed in: initramfs-tools (Ubuntu)
   Status: Fix Committed => Incomplete

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

Title:
  package linux-image-4.4.0-43-generic 4.4.0-43.63 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  Do you want to continue? [Y/n] y
  (Reading database ... 254369 files and directories currently installed.)
  Removing linux-image-extra-4.4.0-43-generic (4.4.0-43.63) ...
  run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-43-generic 
/boot/vmlinuz-4.4.0-43-generic
  run-parts: executing /etc/kernel/postinst.d/dkms 4.4.0-43-generic 
/boot/vmlinuz-4.4.0-43-generic
  Error! Your kernel headers for kernel 4.4.0-43-generic cannot be found.
  Please install the linux-headers-4.4.0-43-generic package,
  or use the --kernelsourcedir option to tell DKMS where it's located
  run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-43-generic 
/boot/vmlinuz-4.4.0-43-generic
  update-initramfs: Generating /boot/initrd.img-4.4.0-43-generic
  E: /usr/share/initramfs-tools/hooks/fsck failed with return 1.
  update-initramfs: failed for /boot/initrd.img-4.4.0-43-generic with 1.
  run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1
  dpkg: error processing package linux-image-extra-4.4.0-43-generic (--remove):
   subprocess installed post-removal script returned error exit status 1
  Removing linux-image-extra-4.4.0-47-generic (4.4.0-47.68) ...
  run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-47-generic 
/boot/vmlinuz-4.4.0-47-generic
  run-parts: executing /etc/kernel/postinst.d/dkms 4.4.0-47-generic 
/boot/vmlinuz-4.4.0-47-generic
  run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-47-generic 
/boot/vmlinuz-4.4.0-47-generic
  update-initramfs: Generating /boot/initrd.img-4.4.0-47-generic
  E: /usr/share/initramfs-tools/hooks/fsck failed with return 1.
  update-initramfs: failed for /boot/initrd.img-4.4.0-47-generic with 1.
  run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1
  dpkg: error processing package linux-image-extra-4.4.0-47-generic (--remove):
   subprocess installed post-removal script returned error exit status 1
  Errors were encountered while processing:
   linux-image-extra-4.4.0-43-generic
   linux-image-extra-4.4.0-47-generic
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-43-generic 4.4.0-43.63
  ProcVersionSignature: Ubuntu 4.4.0-45.66-generic 4.4.21
  Uname: Linux 4.4.0-45-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  pezhman1535 F pulseaudio
  Date: Fri Nov 11 21:03:09 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=e8c76af0-04d5-4831-a401-a0911630111c
  InstallationDate: Installed on 2016-08-27 (76 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: ASUSTeK COMPUTER INC. S300CA
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-45-generic.efi.signed 
root=UUID=72d332d4-9180-442f-a032-8c1b612566ec ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-43-generic 4.4.0-43.63 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/22/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: S300CA.302
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: S300CA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 

[Touch-packages] [Bug 2025176] Re: External hard disk fails to automount in /etc/fstab with message FEATURE_C12

2023-07-17 Thread Craig Carnell
I've solved this issue by upgrading e2fsprogs:

wget 
http://ftp.de.debian.org/debian/pool/main/e/e2fsprogs/e2fsprogs_1.47.0-2_arm64.deb
wget 
http://ftp.de.debian.org/debian/pool/main/e/e2fsprogs/libext2fs2_1.47.0-2_arm64.deb

** Package changed: util-linux (Ubuntu) => e2fsprogs (Ubuntu)

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

Title:
  External hard disk fails to automount in /etc/fstab with message
  FEATURE_C12

Status in e2fsprogs package in Ubuntu:
  New

Bug description:
  I am having a problem with auto mounting an external 14TB 3.5" hard
  disk on Ubuntu 22.04 (arm64) (arm board). The drive is formatted using
  ext4 however this was done on a amd64 based Ubuntu 23.04 install
  (laptop).

  I tried to automount on the 22.04 install by using /etc/fstab, however
  the system would then fail to boot, entering emergency mode.

  Terminal output:
  [FAILED]: Failed to start File System Check on 
/dev/disk/by-uuuid/xx-xx-xx-xx-xx
  See 'systemctl status "systemd-fsck@dev-disk-by\\xx\\xx\\xx\\xx\\xx'
  [DEPEND] Dependency failed for /mnt/share/external_14tb_drive

  The particular error is:
  /dev/xxx has unsupported feature(s): FEATURE_C12

  /etc/fstab
  UUID=xx-xx-xx-xx-xx /mnt/share/external_14tb_drive ext4 
defaults,noatime,nofail  0   2

  arm board description:Ubuntu 22.04.2 LTS
  Release:  22.04

  apt-cache policy e2fsprogs
  e2fsprogs:
Installed: 1.46.5-2ubuntu1.1
Candidate: 1.46.5-2ubuntu1.1
Version table:
   *** 1.46.5-2ubuntu1.1 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
  500 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 
Packages
  100 /var/lib/dpkg/status
   1.46.5-2ubuntu1 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages

  apt-cache policy util-linux
  util-linux:
    Installed: 2.37.2-4ubuntu3
    Candidate: 2.37.2-4ubuntu3
    Version table:
   *** 2.37.2-4ubuntu3 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages
  100 /var/lib/dpkg/status

  Laptop description:   Ubuntu 23.04
  Release:  23.04

  apt-cache policy e2fsprogs
  e2fsprogs:
Installed: 1.47.0-1ubuntu1
Candidate: 1.47.0-1ubuntu1
Version table:
   *** 1.47.0-1ubuntu1 500
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
  100 /var/lib/dpkg/status

  util-linux:
    Installed: 2.38.1-4ubuntu1
    Candidate: 2.38.1-4ubuntu1
    Version table:
   *** 2.38.1-4ubuntu1 500
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
  100 /var/lib/dpkg/status

  The only option I have is to manually mount it after boot which is not
  convenient as it a server board.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: util-linux 2.37.2-4ubuntu3
  Uname: Linux 5.10.110-rockchip-rk3588 aarch64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: arm64
  CasperMD5CheckResult: unknown
  Date: Tue Jun 27 19:38:40 2023
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: util-linux
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2025176] Re: External hard disk fails to automount in /etc/fstab with message FEATURE_C12

2023-07-17 Thread Craig Carnell
** Description changed:

  I am having a problem with auto mounting an external 14TB 3.5" hard disk
  on Ubuntu 22.04 (arm64) (arm board). The drive is formatted using ext4
  however this was done on a amd64 based Ubuntu 23.04 install (laptop).
  
  I tried to automount on the 22.04 install by using /etc/fstab, however
  the system would then fail to boot, entering emergency mode.
  
  Terminal output:
  [FAILED]: Failed to start File System Check on 
/dev/disk/by-uuuid/xx-xx-xx-xx-xx
  See 'systemctl status "systemd-fsck@dev-disk-by\\xx\\xx\\xx\\xx\\xx'
  [DEPEND] Dependency failed for /mnt/share/external_14tb_drive
  
  The particular error is:
  /dev/xxx has unsupported feature(s): FEATURE_C12
  
  /etc/fstab
  UUID=xx-xx-xx-xx-xx /mnt/share/external_14tb_drive ext4 
defaults,noatime,nofail  0   2
  
  arm board description:Ubuntu 22.04.2 LTS
  Release:  22.04
  
+ apt-cache policy e2fsprogs
+ e2fsprogs:
+   Installed: 1.46.5-2ubuntu1.1
+   Candidate: 1.46.5-2ubuntu1.1
+   Version table:
+  *** 1.46.5-2ubuntu1.1 500
+ 500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
+ 500 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 
Packages
+ 100 /var/lib/dpkg/status
+  1.46.5-2ubuntu1 500
+ 500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages
+ 
  apt-cache policy util-linux
  util-linux:
    Installed: 2.37.2-4ubuntu3
    Candidate: 2.37.2-4ubuntu3
    Version table:
   *** 2.37.2-4ubuntu3 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages
  100 /var/lib/dpkg/status
  
  Laptop description:   Ubuntu 23.04
  Release:  23.04
+ 
+ apt-cache policy e2fsprogs
+ e2fsprogs:
+   Installed: 1.47.0-1ubuntu1
+   Candidate: 1.47.0-1ubuntu1
+   Version table:
+  *** 1.47.0-1ubuntu1 500
+ 500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
  util-linux:
    Installed: 2.38.1-4ubuntu1
    Candidate: 2.38.1-4ubuntu1
    Version table:
   *** 2.38.1-4ubuntu1 500
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
  100 /var/lib/dpkg/status
  
  The only option I have is to manually mount it after boot which is not
  convenient as it a server board.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: util-linux 2.37.2-4ubuntu3
  Uname: Linux 5.10.110-rockchip-rk3588 aarch64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: arm64
  CasperMD5CheckResult: unknown
  Date: Tue Jun 27 19:38:40 2023
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: util-linux
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  External hard disk fails to automount in /etc/fstab with message
  FEATURE_C12

Status in util-linux package in Ubuntu:
  New

Bug description:
  I am having a problem with auto mounting an external 14TB 3.5" hard
  disk on Ubuntu 22.04 (arm64) (arm board). The drive is formatted using
  ext4 however this was done on a amd64 based Ubuntu 23.04 install
  (laptop).

  I tried to automount on the 22.04 install by using /etc/fstab, however
  the system would then fail to boot, entering emergency mode.

  Terminal output:
  [FAILED]: Failed to start File System Check on 
/dev/disk/by-uuuid/xx-xx-xx-xx-xx
  See 'systemctl status "systemd-fsck@dev-disk-by\\xx\\xx\\xx\\xx\\xx'
  [DEPEND] Dependency failed for /mnt/share/external_14tb_drive

  The particular error is:
  /dev/xxx has unsupported feature(s): FEATURE_C12

  /etc/fstab
  UUID=xx-xx-xx-xx-xx /mnt/share/external_14tb_drive ext4 
defaults,noatime,nofail  0   2

  arm board description:Ubuntu 22.04.2 LTS
  Release:  22.04

  apt-cache policy e2fsprogs
  e2fsprogs:
Installed: 1.46.5-2ubuntu1.1
Candidate: 1.46.5-2ubuntu1.1
Version table:
   *** 1.46.5-2ubuntu1.1 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
  500 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 
Packages
  100 /var/lib/dpkg/status
   1.46.5-2ubuntu1 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages

  apt-cache policy util-linux
  util-linux:
    Installed: 2.37.2-4ubuntu3
    Candidate: 2.37.2-4ubuntu3
    Version table:
   *** 2.37.2-4ubuntu3 500
  500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages
  100 /var/lib/dpkg/status

  Laptop description:   Ubuntu 23.04
  Release:  23.04

  apt-cache policy e2fsprogs
  e2fsprogs:
Installed: 1.47.0-1ubuntu1
Candidate: 1.47.0-1ubuntu1
Version table:
   *** 1.47.0-1ubuntu1 500
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
 

[Touch-packages] [Bug 2027712] Re: Switch from usrmerge to usr-is-merged

2023-07-17 Thread Luca Boccassi
Thanks - up to you how to solve it of course, but please bear in mind
that you'll also need to patch debootstrap - and debootstrap from other
distro (say, from Debian build an Ubuntu image) might break as a result

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

Title:
  Switch from usrmerge to usr-is-merged

Status in cloud-images:
  Confirmed
Status in init-system-helpers package in Ubuntu:
  New

Bug description:
  Last year in Debian we added the 'usr-is-merged' binary package to the
  'usrmerge' source package. Its purpose is to be an empty metapackage
  that simply asserts that the system is usr-merged. This is done via
  the postinst. Contrary to usrmerge, it doesn't ship any additional
  code, perform any additional action or have any additional
  dependencies.

  In Debian, we have an essential package (init-system-helpers) that
  depends on usrmerge | usr-is-merged, so that on upgrade for already
  installed images usrmerge is pulled in and all systems are forcibly
  merged.

  But for new images being built, the boostrap (eg: debootstrap) process
  will instead pull in usr-is-merged, which will save space and reduce
  the overall code footprint.

  The problem in Ubuntu is that while usrmerge is in main, usr-is-merged
  is in universe, so unless the bootstrap tool enables universe for the
  initial bootstrap phase, usrmerge is always pulled in.

  Refs:

  https://packages.ubuntu.com/mantic/usr-is-merged
  https://packages.ubuntu.com/mantic/usrmerge
  https://packages.ubuntu.com/mantic/init-system-helpers

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1658548] Re: package linux-image-4.4.0-62-generic 4.4.0-62.83 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

update-initramfs: Generating /boot/initrd.img-4.4.0-47-generic
E: /usr/share/initramfs-tools/hooks/casper failed with return 1.

This hook comes from the casper package. So re-assigning this bug to
casper.

** Package changed: initramfs-tools (Ubuntu) => casper (Ubuntu)

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

Title:
  package linux-image-4.4.0-62-generic 4.4.0-62.83 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in casper package in Ubuntu:
  Confirmed

Bug description:
  unable to make any kind of installation (update / upgrade /apt-get
  install)

  Errormessagge: 
  "Fehler traten auf beim Bearbeiten von:
   linux-image-extra-4.4.0-31-generic
   linux-image-extra-4.4.0-45-generic"

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-62-generic 4.4.0-62.83
  ProcVersionSignature: Ubuntu 4.4.0-47.68-generic 4.4.24
  Uname: Linux 4.4.0-47-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  neurodani   3485 F pulseaudio
   /dev/snd/controlC0:  neurodani   3485 F pulseaudio
  Date: Mon Jan 23 01:19:53 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=45e826b0-f0c3-4038-8e9c-6b36424bcb34
  InstallationDate: Installed on 2016-11-06 (77 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  IwConfig:
   lono wireless extensions.
   
   eno1  no wireless extensions.
   
   enp8s0no wireless extensions.
  MachineType: ASUS All Series
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-47-generic 
root=/dev/mapper/ubuntu--vg-root ro persistent quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.7
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: initramfs-tools
  Title: package linux-image-4.4.0-62-generic 4.4.0-62.83 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/15/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1801
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: X99-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1801:bd05/15/2015:svnASUS:pnAllSeries:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnX99-DELUXE:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: All Series
  dmi.product.version: System Version
  dmi.sys.vendor: ASUS

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2023361] Re: package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

Error 24 : Write error : cannot write compressed block 
E: mkinitramfs failure cpio 141 lz4 -9 -l 24

df log says:

Filesystem  1K-blocks  Used Available Use% Mounted on
/dev/sda2  719936665004  2468 100% /boot

So generating the initramfs fails because your boot partition is full.
Please cleanup your boot partition. Feel free to continue to report any
other bugs you may find.


** Changed in: initramfs-tools (Ubuntu)
   Status: New => Invalid

** Summary changed:

- package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
+ package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1 -> boot partition full

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

Title:
  package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1 -> boot partition full

Status in initramfs-tools package in Ubuntu:
  Invalid

Bug description:
  package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-150-generic 5.4.0-150.167
  ProcVersionSignature: Ubuntu 5.15.0-73.80~20.04.1-generic 5.15.98
  Uname: Linux 5.15.0-73-generic x86_64
  NonfreeKernelModules: falcon_lsm_serviceable falcon_nf_netcontain falcon_kal 
falcon_lsm_pinned_15110
  ApportVersion: 2.20.11-0ubuntu27.27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  danishr2486 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Fri Jun  2 06:21:20 2023
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  InstallationDate: Installed on 2021-04-26 (773 days ago)
  InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
  MachineType: Dell Inc. Latitude 3410
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-73-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash snd_hda_intel.dmic_detect=0 
vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  RelatedPackageVersions: grub-pc 2.04-1ubuntu26.17
  SourcePackage: initramfs-tools
  Title: package linux-image-5.4.0-150-generic 5.4.0-150.167 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to focal on 2023-02-10 (118 days ago)
  dmi.bios.date: 03/09/2023
  dmi.bios.release: 1.23
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.23.0
  dmi.board.name: 0J6VTW
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.23.0:bd03/09/2023:br1.23:svnDellInc.:pnLatitude3410:pvr:rvnDellInc.:rn0J6VTW:rvrA03:cvnDellInc.:ct10:cvr:sku09EC:
  dmi.product.family: Latitude
  dmi.product.name: Latitude 3410
  dmi.product.sku: 09EC
  dmi.sys.vendor: Dell Inc.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027857] Re: package initramfs-tools 0.142ubuntu2 failed to install/upgrade due to boot zpool space consumption (snapshots)

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Your df log says:

Filesystem 1K-blocks Used  Available Use% Mounted on
rpool/ROOT/ubuntu_jrhcdu52991360 13630720   39360640  26% /
bpool/BOOT/ubuntu_jrhcdu  594304   594048256 100% /boot

That are only 580 MiB for the /boot partition.

I did a test installation of ubuntu-22.04.2-desktop-amd64.iso in a VM
with a 20 GiB disk. I left everything as default except selecting to use
ZFS. That resulted in:

Filesystem   1K-blocksUsed Available Use% Mounted on
rpool/ROOT/ubuntu_0uy6cf  15004928 4374912  10630016  30% /
bpool/BOOT/ubuntu_0uy6cf851200  285184566016  34% /boot

So 831 MiB is still less than 1 GiB. Re-assigning to the installer.

** Package changed: initramfs-tools (Ubuntu) => ubiquity (Ubuntu)

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

Title:
  package initramfs-tools 0.142ubuntu2 failed to install/upgrade due to
  boot zpool space consumption (snapshots)

Status in ubiquity package in Ubuntu:
  New

Bug description:
  Using ZFS on Ubuntu, configured with the default options for bpool in
  the installer for (I think 22.04) the kernel upgrade process often
  seems to fail building initrd due to running out of space. This is due
  to zfs snapshots.

  I'm not sure this is a bug in itself, however I think it is a problem
  that the process fails quite regularly with this configuration which
  does seem like something that could be handled better to avoid this
  situation.

  I do think the installer should create a larger bpool and I would do
  that manually if I re-installed. Only allocating ~2G given the size of
  modern drives seems much too small to me.

  No LSB modules are available.
  Description:  Ubuntu 23.04
  Release:  23.04

  initramfs-tools:
Installed: 0.142ubuntu2
Candidate: 0.142ubuntu2
Version table:
   *** 0.142ubuntu2 500
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu lunar/main i386 Packages
  100 /var/lib/dpkg/status

  ProblemType: Package
  DistroRelease: Ubuntu 23.04
  Package: initramfs-tools 0.142ubuntu2
  ProcVersionSignature: Ubuntu 6.2.0-24.24-generic 6.2.12
  Uname: Linux 6.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia zfs zunicode zavl icp zcommon 
znvpair
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: pass
  Date: Sat Jul 15 15:20:21 2023
  ErrorMessage: installed initramfs-tools package post-installation script 
subprocess returned error exit status 1
  InstallationDate: Installed on 2022-12-23 (204 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.11, Python 3.11.2, python3-minimal, 3.11.2-1
  PythonDetails: N/A
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   dpkg 1.21.21ubuntu1
   apt  2.6.0
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.142ubuntu2 failed to install/upgrade: 
installed initramfs-tools package post-installation script subprocess returned 
error exit status 1
  UpgradeStatus: Upgraded to lunar on 2023-06-24 (21 days ago)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027910] Re: package initramfs-tools 0.136ubuntu6.7 failed to install/upgrade: installed initramfs-tools package post-installation script subprocess returned error exit status 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

Error 24 : Write error : cannot write compressed block 
E: mkinitramfs failure cpio 141 lz4 -9 -l 24

df log says:

Filesystem 1K-blocksUsed Available Use% Mounted on
/dev/sda2 267004  244908  1600 100% /boot

So generating the initramfs fails because your boot partition is full.
Please cleanup your boot partition or increase it (260 MiB is quite
small). Feel free to continue to report any other bugs you may find.

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Invalid

** Summary changed:

- package initramfs-tools 0.136ubuntu6.7 failed to install/upgrade: installed 
initramfs-tools package post-installation script subprocess returned error exit 
status 1
+ package initramfs-tools 0.136ubuntu6.7 failed to install/upgrade: installed 
initramfs-tools package post-installation script subprocess returned error exit 
status 1 -> boot partition full

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

Title:
  package initramfs-tools 0.136ubuntu6.7 failed to install/upgrade:
  installed initramfs-tools package post-installation script subprocess
  returned error exit status 1 -> boot partition full

Status in initramfs-tools package in Ubuntu:
  Invalid

Bug description:
  blocked by snap store

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: initramfs-tools 0.136ubuntu6.7
  ProcVersionSignature: Ubuntu 5.15.0-56.62~20.04.1-generic 5.15.64
  Uname: Linux 5.15.0-56-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.24
  AptOrdering:
   nautilus:amd64: Install
   nautilus-data:amd64: Install
   libnautilus-extension1a:amd64: Install
   NULL: ConfigurePending
  Architecture: amd64
  CasperMD5CheckResult: skip
  Date: Sun Jul 16 12:28:29 2023
  DpkgHistoryLog:
   Start-Date: 2023-07-16  12:28:01
   Commandline: /usr/bin/unattended-upgrade
   Upgrade: nautilus:amd64 (1:3.36.3-0ubuntu1.20.04.1, 
1:3.36.3-0ubuntu1.20.04.2), libnautilus-extension1a:amd64 
(1:3.36.3-0ubuntu1.20.04.1, 1:3.36.3-0ubuntu1.20.04.2), nautilus-data:amd64 
(1:3.36.3-0ubuntu1.20.04.1, 1:3.36.3-0ubuntu1.20.04.2)
  ErrorMessage: installed initramfs-tools package post-installation script 
subprocess returned error exit status 1
  InstallationDate: Installed on 2022-03-26 (477 days ago)
  InstallationMedia: Ubuntu 20.04.4 LTS "Focal Fossa" - Release amd64 (20220223)
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions:
   dpkg 1.19.7ubuntu3.2
   apt  2.0.6
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.136ubuntu6.7 failed to install/upgrade: 
installed initramfs-tools package post-installation script subprocess returned 
error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027849] Re: package initramfs-tools 0.140ubuntu13.1 failed to install/upgrade: installed initramfs-tools package post-installation script subprocess returned error exit status 1

2023-07-17 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

zstd: error 25 : Write error : No space left on device (cannot write compressed 
block) 
E: mkinitramfs failure zstd -q -1 -T0 25

df log says:

Filesystem 1K-blocksUsed Available Use% Mounted on
/dev/nvme0n1p7166760  146868  6208  96% /target/boot

So generating the initramfs fails because your boot partition is full. A
162 MiB small /boot partition is too small.

Which install media did you use? Did you setup your partitions manually?

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Incomplete

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

Title:
  package initramfs-tools 0.140ubuntu13.1 failed to install/upgrade:
  installed initramfs-tools package post-installation script subprocess
  returned error exit status 1

Status in initramfs-tools package in Ubuntu:
  Incomplete

Bug description:
  It happened when the install process ended.

  ProblemType: Package
  DistroRelease: Ubuntu 22.04
  Package: initramfs-tools 0.140ubuntu13.1
  ProcVersionSignature: Ubuntu 5.19.0-32.33~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-32-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Sat Jul 15 22:13:24 2023
  ErrorMessage: installed initramfs-tools package post-installation script 
subprocess returned error exit status 1
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.10, Python 3.10.6, python3-minimal, 
3.10.6-1~22.04
  PythonDetails: N/A
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   dpkg 1.21.1ubuntu2.1
   apt  2.4.8
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.140ubuntu13.1 failed to install/upgrade: 
installed initramfs-tools package post-installation script subprocess returned 
error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Touch-packages] [Bug 1996652] Re: Nautilus search is slow and jumbles keyboard input on 22.10

2023-07-17 Thread Federico Poloni
On 09/07/23 15:30, Gunnar Hjalmarsson wrote:
> @Federico: The x11 issue you spotted has now been fixed through updated
> patches, and the PPA has been updated with the latest patch versions.

Hello! I am sorry for not answering earlier, but life got in the way. I
confirm that your assumptions about the setup that causes the problem
(Xorg + GTK apps) are correct; I have tested your ppa3 version, and the
bug I had is gone.

Many thanks for your help with this issue @gunnarhj !


Federico

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

Title:
  Nautilus search is slow and jumbles keyboard input on 22.10

Status in ibus:
  New
Status in ibus package in Ubuntu:
  Confirmed

Bug description:
  Since my upgrade to 22.10, I've found the search box in Nautilus
  (files) essentially unusable.  It is notably sluggish to launch and
  browse in general.  But most detrimental to the usability is this:

  The characters do not appear in real time as I type. When they do
  appear, they are sometimes jumbled or in reverse (consistently
  reproducible).  As I type in the file search box, the circular cursor
  spins intermittently, then the UI catches up and it's not what I
  typed.

  For example, I just typed "umbrella" into the search box, and Nautilus 
searched for:
  "umballer"

  Off-the-cuff test #2, searched for "Ubuntu" and I ended up with
  "Ubunut" ... you can't make this up. :-)

  Test #3, typed Launchpad, ended up with a search for "Laudaphcn".

  Keyboard input everywhere else on the system is otherwise normal and
  snappy.  No pun intended, really.

  FWIW Nautilus files preferences are as default (Search in subfolders,
  Show thumbnails, File count == This computer only).

  

  $ apt-cache policy nautilus
  nautilus:
Installed: 1:43.0-1ubuntu1
Candidate: 1:43.0-1ubuntu1
Version table:
   *** 1:43.0-1ubuntu1 500
  500 http://us.archive.ubuntu.com/ubuntu kinetic/main amd64 Packages
  100 /var/lib/dpkg/status

  $ uname -r
  5.19.0-23-generic

  $ lsb_release -rd
  Description:Ubuntu 22.10
  Release:22.10

  $ snap list
  Name   Version   RevTracking 
Publisher  Notes
  bare   1.0   5  latest/stable
canonical✓ base
  core   16-2.57.2 13886  latest/stable
canonical✓ core
  core18 20221027  2620   latest/stable
canonical✓ base
  core20 20221027  1695   latest/stable
canonical✓ base
  gnome-3-34-18040+git.3556cb3 77 latest/stable/…  
canonical✓ -
  gnome-3-38-20040+git.6f39565 119latest/stable
canonical✓ -
  google-cloud-sdk   409.0.0   298latest/stable
google-cloud-sdk✓  classic
  gtk-common-themes  0.1-81-g442e511   1535   latest/stable/…  
canonical✓ -
  snap-store 41.3-64-g512c0ff  599latest/stable/…  
canonical✓ -
  snapd  2.57.417336  latest/stable
canonical✓ snapd
  snapd-desktop-integration  0.1   14 latest/stable/…  
canonical✓ -

  
  Side question:  Since this system has transitioned across several upgrades 
from 20.04 to 22.10, do I really need all of these core* and gnome* snaps?

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027712] Re: Switch from usrmerge to usr-is-merged

2023-07-17 Thread Christian Ehrhardt 
FYI Change of the way this shall be tackled.

Per Steves very helpful comment in the MR to the seeds:
"I don't think we want either of these packages in main. They are transitional 
packages; while the transition is still ongoing in Debian, in Ubuntu the 
transition completed two LTS cycles ago.

We should just patch init-system-helpers in Ubuntu to drop the
dependency which is no longer needed."


@Foundations
I'm adding a task for init-system-helpers to represent the work for that change.

@CPC
The cloud-image tasks can stay to eventually verify that the image builds 
(after that change to init-system-helpers) really have neither installed.

** Also affects: init-system-helpers (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Switch from usrmerge to usr-is-merged

Status in cloud-images:
  Confirmed
Status in init-system-helpers package in Ubuntu:
  New

Bug description:
  Last year in Debian we added the 'usr-is-merged' binary package to the
  'usrmerge' source package. Its purpose is to be an empty metapackage
  that simply asserts that the system is usr-merged. This is done via
  the postinst. Contrary to usrmerge, it doesn't ship any additional
  code, perform any additional action or have any additional
  dependencies.

  In Debian, we have an essential package (init-system-helpers) that
  depends on usrmerge | usr-is-merged, so that on upgrade for already
  installed images usrmerge is pulled in and all systems are forcibly
  merged.

  But for new images being built, the boostrap (eg: debootstrap) process
  will instead pull in usr-is-merged, which will save space and reduce
  the overall code footprint.

  The problem in Ubuntu is that while usrmerge is in main, usr-is-merged
  is in universe, so unless the bootstrap tool enables universe for the
  initial bootstrap phase, usrmerge is always pulled in.

  Refs:

  https://packages.ubuntu.com/mantic/usr-is-merged
  https://packages.ubuntu.com/mantic/usrmerge
  https://packages.ubuntu.com/mantic/init-system-helpers

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2027858] Re: Issues with graphic driver using Blender

2023-07-17 Thread Daniel van Vugt
** Package changed: xorg (Ubuntu) => mesa (Ubuntu)

** Summary changed:

- Issues with graphic driver using Blender
+ [nouveau] Corrupt text rendering in Blender

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

Title:
  [nouveau] Corrupt text rendering in Blender

Status in mesa package in Ubuntu:
  New

Bug description:
  I use the nouveau graphic driver: in general, it works well, but when
  using Blender, recently, it shows garbled text.

  I have already reported the bug on Blender, they state it's an issue
  of the graphic driver

  I don't use Blender often, but about a month ago I remember it worked
  correctly.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 5.19.0-46.47~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-46-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  BootLog: Error: [Errno 13] Permesso negato: '/var/log/boot.log'
  CasperMD5CheckResult: unknown
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Sat Jul 15 17:27:41 2023
  DistUpgraded: 2022-08-11 20:30:54,046 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
  DistroCodename: jammy
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation GT216 [GeForce GT 220] [10de:0a20] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. GT216 [GeForce GT 220] [1043:830f]
  InstallationDate: Installed on 2020-10-02 (1015 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  MachineType: System manufacturer System Product Name
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.19.0-46-generic 
root=UUID=ec6d1b78-08d0-4212-889f-df1909dbc8fa ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to jammy on 2022-08-11 (337 days ago)
  dmi.bios.date: 07/20/2009
  dmi.bios.release: 4.8
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0408
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: P5QL/EPU
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0408:bd07/20/2009:br4.8:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5QL/EPU:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:skuToBeFilledByO.E.M.:
  dmi.product.family: To Be Filled By O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: To Be Filled By O.E.M.
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.113-2~ubuntu0.22.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 22.2.5-0ubuntu0.1~22.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.4-2ubuntu1.7~22.04.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp