[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-09-17 Thread Tiago Stürmer Daitx
** Description changed:

- At least four users, including myself, are having an issue with update-
- initramfs hanging while updating ubuntu 16.04. The bug has been
- documented while attempting an update to multiple kernel versions (
- 4.4.0-24, 4.4.0-62,  4.4.0-63). The bug causes any apt-get update or
- install to fail, and may also lead to an unbootable system.
+ [Impact]
+ If there is lots of activity on a different filesystem, high io/cache 
pressure, or a stale mount updating initramfs might hang because the 
update-initramfs script calls sync. This leaves the system unresponsive and 
will require the user to forcefully kill dpkg.
+ 
+ [Test Case]
+ One easy way to simulate this is by copying a huge file over nfs. Note: do 
not use localhost, it is too fast for this purpose, a network bridge over qemu 
is good enough.
+ 
+ 1. Setup a nfs server and export a directory with write permissions for
+ the client
+ 
+ 2. Copy a big file over NFS (assumes it is mounted at /mnt in the client)
+ $ dd if=/dev/zero of=/mnt/big_zeros bs=512 count=1M status=progress
+ Note: adjust the "count" accordingly to how fast/slow your system is.
+ 
+ 3. Call sync and verify that it only finished after "dd" is done.
+ 
+ 4. Repeat step #2 and now call "sync -f /boot/".
+ Verify that it finished immediatly.
+ 
+ [Regression Potential]
+ Although syncfs(2) man page [2] states that it works just the same as sync - 
except being limited to a filesystem -, any actual differences in the 
implementation can affect how the initrd image file is synced to the disk, 
leading to unexpected behavior.
+ 
+ [Other]
+ If syncfs is unsupported then the 'sync' binary will ensure that a normal 
system-wide sync is called [1]. The proposed patch won't help in scenarios 
where the initrd file is located in a busy filesystem (eg. no separated /boot 
partition).
+ 
+ The 'sync' and 'syncfs' specifications are pretty much similar and
+ syncfs is expected to work the same as a normal sync regarding data
+ integrity. Also altought the patch introduces the initrd file as an
+ extra argument which would cause 'sync -f' to fail if the file does not
+ exist, the update-initramfs script would fail earlier than that because
+ that file is created by the 'mv' call a few lines above. Thus no
+ regressions are expected.
+ 
+ [References]
+ [1] 
http://git.savannah.gnu.org/cgit/coreutils.git/commit/src/sync.c?id=8b2bf5295f353016d4f5e6a2317d55b6a8e7fd00
+ [2] http://manpages.ubuntu.com/manpages/xenial/man2/syncfs.2.html
+ 
+ [Original bug report]
+ At least four users, including myself, are having an issue with 
update-initramfs hanging while updating ubuntu 16.04. The bug has been 
documented while attempting an update to multiple kernel versions ( 4.4.0-24, 
4.4.0-62,  4.4.0-63). The bug causes any apt-get update or install to fail, and 
may also lead to an unbootable system.
  
  User #1 (me):
  $ uname -a
  Linux  4.4.0-62-generic #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 
2017 x86_64 x86_64 x86_64 GNU/Linux
  
  $ sudo apt-get upgrade
- Fetched 1,571 MB in 2min 9s (12.2 MB/s)   
  
+ Fetched 1,571 MB in 2min 9s (12.2 MB/s)
  Extracting templates from packages: 100%
  Preconfiguring packages ...
  (Reading database ... 344634 files and directories currently installed.)
  Preparing to unpack .../base-files_9.4ubuntu4.4_amd64.deb ...
  Unpacking base-files (9.4ubuntu4.4) over (9.4ubuntu4.3) ...
  Processing triggers for plymouth-theme-ubuntu-text (0.9.2-3ubuntu13.1) ...
  update-initramfs: deferring update (trigger activated)
  Processing triggers for man-db (2.7.5-1) ...
  Processing triggers for cracklib-runtime (2.9.2-1build2) ...
  Processing triggers for install-info (6.1.0.dfsg.1-5) ...
  Processing triggers for initramfs-tools (0.122ubuntu8.8) ...
  update-initramfs: Generating /boot/initrd.img-4.4.0-63-generic
  
   Uh oh! Let's try to troubleshoot.
  
  $ sudo killall dpkg
  $ sudo dpkg --configure -a
  Setting up initramfs-tools (0.122ubuntu8.8) ...
  update-initramfs: deferring update (trigger activated)
  Setting up base-files (9.4ubuntu4.4) ...
  Installing new version of config file /etc/issue ...
  Installing new version of config file /etc/issue.net ...
  Installing new version of config file /etc/lsb-release ...
  Setting up linux-image-4.4.0-63-generic (4.4.0-63.84) ...
  Running depmod.
  update-initramfs: deferring update (hook will be called later)
  initrd.img(/boot/initrd.img-4.4.0-63-generic
  ) points to /boot/initrd.img-4.4.0-63-generic
-  (/boot/initrd.img-4.4.0-63-generic) -- doing nothing at 
/var/lib/dpkg/info/linux-image-4.4.0-63-generic.postinst line 491.
+  (/boot/initrd.img-4.4.0-63-generic) -- doing nothing at 
/var/lib/dpkg/info/linux-image-4.4.0-63-generic.postinst line 491.
  vmlinuz(/boot/vmlinuz-4.4.0-63-generic
  ) points to /boot/vmlinuz-4.4.0-63-generic
-  (/boot/vmlinuz-4.4.0-63-generic) -- doing nothing at 
/var/lib/dpkg/info/linux-image-4.4.0-63-generic.postinst line 

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-09-04 Thread Zakrapovic
** Also affects: initramfs-tools
   Importance: Undecided
   Status: New

** No longer affects: initramfs-tools

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-08-14 Thread Tiago Stürmer Daitx
** Tags added: bionic xenial

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-07-21 Thread Launchpad Bug Tracker
This bug was fixed in the package initramfs-tools - 0.131ubuntu2

---
initramfs-tools (0.131ubuntu2) cosmic; urgency=medium

  * Fix permissions on /usr/share/initramfs-tools/init, which were mangled
by merge-o-matic.  LP: #1782854.

 -- Steve Langasek   Fri, 20 Jul 2018
22:54:00 -0400

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

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-07-18 Thread Bug Watch Updater
** Changed in: initramfs-tools (Debian)
   Status: New => Fix Released

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-21 Thread Bug Watch Updater
** Changed in: initramfs-tools (Debian)
   Status: Unknown => New

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-21 Thread Colin Watson
I've posted a merge request upstream:

  https://salsa.debian.org/kernel-team/initramfs-tools/merge_requests/6

** Bug watch added: Debian Bug tracker #882380
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882380

** Also affects: initramfs-tools (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882380
   Importance: Unknown
   Status: Unknown

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-21 Thread Francis Ginther
** Tags added: id-5b2a8145636ebaee3f5ca982

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-20 Thread Steve Langasek
** Changed in: initramfs-tools (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-20 Thread Colin Watson
(A versioned Depends or versioned Breaks as appropriate on coreutils
would probably be a good idea, at least in xenial to avoid upgrade
problems from trusty.)

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-06-20 Thread Colin Watson
Re comment #7, coreutils 8.24 added the ability to do "sync -f FILENAME"
to sync only the file system containing FILENAME.  I think update-
initramfs should probably be changed to use that in xenial and newer.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-04-08 Thread azizLIGHT
atom's suggestion to stop all disk operations was the key to fixing
this. I had a ddrescue operation going on in the background that I
stopped after reading this thread, and BAM it started moving up from 37%
and eventually finished.

Basically, this issue affected me as well on Ubuntu 14.04 x64, when
trying to update my nvidia drivers from graphics-drivers ppa. I did
'sudo apt install nvidia-384' and it was stuck at 37% saying 'update-
initramfs: Generating /boot/initrd.img-3.13.0-144-generic' for 20+
minutes. At that point I went to /boot/ and saw that a
'initrd.img-3.13.0-144-generic.new' was sitting around with a 0 file
size since 20 minutes ago. Something was stuck but I didn't know until
reading this issue.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-03-22 Thread Michael Neuffer
This problem also still exists with much newer kernels, for me with
4.15.0-12 on Ubuntu 18.04 (alpha)


 diff -uN /var/lib/dpkg/info/initramfs-tools.postinst~ 
/var/lib/dpkg/info/initramfs-tools.postinst
--- /var/lib/dpkg/info/initramfs-tools.postinst~2018-02-20 
22:34:46.0 +0100
+++ /var/lib/dpkg/info/initramfs-tools.postinst 2018-03-22 13:08:09.989213260 
+0100
@@ -38,10 +38,10 @@
 # Regenerate initramfs whenever we go to dpkg state `installed'
 if [ "x$1" != xtriggered ]; then
# this activates the trigger, if triggers are working
-   update-initramfs -u
+   update-initramfs -u -v
 else
# force it to actually happen
-   DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u
+   DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u -v
 fi
 
 # Automatically added by dh_installdeb/11.1.4ubuntu1
-
diff -uN /usr/sbin/update-initramfs~ /usr/sbin/update-initramfs
--- /usr/sbin/update-initramfs~ 2018-01-05 13:15:45.0 +0100
+++ /usr/sbin/update-initramfs  2018-03-22 13:11:34.440124524 +0100
@@ -158,7 +158,9 @@
mv -f "${initramfs}.new" "${initramfs}"
set_sha1
# Guard against an unclean shutdown
-   sync
+   # The sync never returns and seems to deadlock for some reason
+   # so comment it out for the time beeing
+   #sync
else
mkinitramfs_return="$?"
remove_initramfs_bak
---
Also take sync out of commission in order to allow for a clean shutdown 
(important: re-enable after the reboot!). Also give the system enough time to 
sync all its buffers on its own before restarting.

cd /bin
mv sync sync.real
cp ls sync


This helped me before and now I have the deadlocked sync issue again.
root@charion:~# ps auxwww | grep sync
systemd+  1949  0.0  0.0 146076  3364 ?Ssl  11:56   0:00 
/lib/systemd/systemd-timesyncd
root 19420  0.0  0.0   7796   780 pts/7D+   12:03   0:00 sync
root 22919  0.0  0.0  14756  1120 pts/2S+   13:20   0:00 grep 
--color=auto sync


So I'll try to restart and try to run the 
update-initramfs -u -v manually with these changes and then try to finish the 
apt-get upgrade

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2018-01-29 Thread Nikhil Verma
Commenting out the sync command worked for me as well! Thanks!

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-12-19 Thread B. Milde
Thanks atom!

Indeed, we also had a stale nfs share and an automatic apt-get security
update that left our ubuntu 16.04. server in an unclean state since it
would silently hang on update-initramfs. Because the mounted nfs share
remained unresponsive, update-initramfs was hanging for several days.
Killing it and rerunning sudo dpkg --configure -a would result in a
deadlock and no other apt-get was possible since dpkg couldn't finish
its last operation. Calling update-initramfs manually would also hang
and could only be stopped with kill -9 (ctrl+c did not work).

Commenting out the sync command in the generate_initramfs function of
/usr/sbin/update-initramfs worked to restore the system to a rebootable
state! However a soft shut down didn't work either (shutdown -r now)
presumably because it tried to sync the stale nfs mount again.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-11-25 Thread Jamie
Commenting out the sync command in the generate_initramfs function of
/usr/sbin/update-initramfs worked for me.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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

[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-06-08 Thread amichair
Thanks for the analysis @atom, I think that explains my issue as well -
I had a long-running rsync in parallel. Once killed, the update worked.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-05-27 Thread atom
Me too.

Turns out the problem for me is updating *while* copying a hard-drive
(in another terminal).

The "update-initramfs" script calls "sync" in the "generate_initramfs"
function. For me, copying hard-drives at the same time caused "sync" to
hang: Then the whole thing hangs.

I CTRL-Z'd (TSTP) my rsync process (doing the copying), and a few
seconds later update-initramfs un-hung. Finished without a problem.

Proposed workarounds:
1- stop/pause large disk i/o operations while updating, or
2- edit "/usr/sbin/update-initramfs": comment out the "sync" command in the 
"generate_initramfs" function

This is why Ubuntu (and other Linux distros) needs a user-space "fsync"
command; so instead of trying to sync busy drives that could be busy for
days, it can just "fsync ${file}" and get on with the day.

Not sure if this will fix anyone else's problems, but it's all unicorns
and rainbows over here, now.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-05-11 Thread Robert Wilson
I'll +1 this thread.  Strangest thing though. Earlier this week I spun
up four different VMs from the image 'ubuntu-16.04.1-server-amd64.iso'.
All configured and updated exactly the same.  They continue to work
great.  Today, on the same VM server, I created another VM EXACTLY the
same way I created and updated the others.  The update hangs in the
exact same place as everyone else is describing.  Completely repeatable.

So what broke the update in the last two days?

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-05-07 Thread diskmaster23
Confirmed. Having same issue.

dpkg --configure -a
Setting up linux-image-4.4.0-57-generic (4.4.0-57.78) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
The link /initrd.img is a dangling linkto /boot/initrd.img-4.4.0-77-generic
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-57-generic 
/boot/vmlinuz-4.4.0-57-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-57-generic 
/boot/vmlinuz-4.4.0-57-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-57-generic
/usr/sbin/mkinitramfs: 66: .: Can't open /etc/initramfs-tools/initramfs.conf
update-initramfs: failed for /boot/initrd.img-4.4.0-57-generic with 2.
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
Failed to process /etc/kernel/postinst.d at 
/var/lib/dpkg/info/linux-image-4.4.0-57-generic.postinst line 1052.
dpkg: error processing package linux-image-4.4.0-57-generic (--configure):
 subprocess installed post-installation script returned error exit status 2
Setting up linux-image-4.4.0-77-generic (4.4.0-77.98) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
The link /initrd.img is a dangling linkto /boot/initrd.img-4.4.0-57-generic
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-77-generic 
/boot/vmlinuz-4.4.0-77-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-77-generic 
/boot/vmlinuz-4.4.0-77-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-77-generic
/usr/sbin/mkinitramfs: 66: .: Can't open /etc/initramfs-tools/initramfs.conf
update-initramfs: failed for /boot/initrd.img-4.4.0-77-generic with 2.
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2
Failed to process /etc/kernel/postinst.d at 
/var/lib/dpkg/info/linux-image-4.4.0-77-generic.postinst line 1052.
dpkg: error processing package linux-image-4.4.0-77-generic (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 linux-image-4.4.0-57-generic
 linux-image-4.4.0-77-generic

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-03-15 Thread mesiu84
Any updates? As far as I can see the problem still exist.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-03-09 Thread mesiu84
Have the same problem since yesterday. I'm having 4.4.0-47 4.4.0-59
4.4.0-62 4.4.0-64 installed. I was trying to upgrade my system yesterday
and 4.4.0-66 was about to be installed, but it hangs on update-initramfs
or to be more precise it's hanging on "Building cpio" when running
update-initramfs -u -v

Problem is related probably to last 2 upgrades which I did.
Here is the list of packages installed yesterday (aptitude):

[REMOVE, NOT USED] ubuntu-core-launcher:amd64 2.22.6
[UPGRADE] snapd:amd64 2.22.3 -> 2.22.6
[UNCONFIGURED] linux-generic:amd64 4.4.0.66.70
[UNCONFIGURED] linux-headers-4.4.0-66:amd64 4.4.0-66.87
[UNCONFIGURED] linux-headers-4.4.0-66-generic:amd64 4.4.0-66.87
[UNCONFIGURED] linux-headers-generic:amd64 4.4.0.66.70
[UNCONFIGURED] linux-image-4.4.0-66-generic:amd64 4.4.0-66.87
[UNCONFIGURED] linux-image-extra-4.4.0-66-generic:amd64 4.4.0-66.87
[UNCONFIGURED] linux-image-generic:amd64 4.4.0.66.70
[UNCONFIGURED] linux-libc-dev:amd64 4.4.0-66.87
[UNCONFIGURED] lxd:amd64 2.0.9-0ubuntu1~16.04.2
[UNCONFIGURED] lxd-client:amd64 2.0.9-0ubuntu1~16.04.2
[UNCONFIGURED] mdadm:amd64 3.3-2ubuntu7.2
[UNCONFIGURED] snap-confine:amd64 2.22.6
[UNCONFIGURED] ubuntu-snappy-cli:amd64 2.22.6

here is the list of previous upgrade (apt):

Start-Date: 2017-02-21  23:48:52
Commandline: apt upgrade
Install: linux-headers-4.4.0-64:amd64 (4.4.0-64.85, automatic), 
linux-image-4.4.0-64-generic:amd64 (4.4.0-64.85, automatic), 
linux-image-extra-4.4.0-64-generic:amd64 (4.4.0-64.85, automatic), 
linux-headers-4.4.0-64-generic:amd64 (4.4.0-64.85, automatic)
Upgrade: lxc-common:amd64 (2.0.6-0ubuntu1~ubuntu16.04.2, 
2.0.7-0ubuntu1~16.04.1), libssh2-1:amd64 (1.5.0-2, 1.5.0-2ubuntu0.1), 
libdns-export162:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 
1:9.10.3.dfsg.P4-8ubuntu1.5), libisccfg140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 
1:9.10.3.dfsg.P4-8ubuntu1.5), linux-headers-generic:amd64 (4.4.0.62.65, 
4.4.0.64.68), linux-libc-dev:amd64 (4.4.0-62.83, 4.4.0-64.85), 
linux-image-generic:amd64 (4.4.0.62.65, 4.4.0.64.68), snapd:amd64 (2.21, 
2.22.3), bind9-host:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 
1:9.10.3.dfsg.P4-8ubuntu1.5), snap-confine:amd64 (2.21, 2.22.3), 
libisc160:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 1:9.10.3.dfsg.P4-8ubuntu1.5), 
lxd:amd64 (2.0.8-0ubuntu1~ubuntu16.04.2, 2.0.9-0ubuntu1~16.04.1), liblxc1:amd64 
(2.0.6-0ubuntu1~ubuntu16.04.2, 2.0.7-0ubuntu1~16.04.1), libisc-export160:amd64 
(1:9.10.3.dfsg.P4-8ubuntu1.4, 1:9.10.3.dfsg.P4-8ubuntu1.5), liblwres141:amd64 
(1:9.10.3.dfsg.P4-8ubuntu1.4, 1:9.10.3.dfsg.P4-8ubuntu1.5), 
ubuntu-core-launcher:amd64 (2.21, 2.2
 2.3), libdns162:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 
1:9.10.3.dfsg.P4-8ubuntu1.5), ubuntu-snappy-cli:amd64 (2.21, 2.22.3), 
libisccc140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 1:9.10.3.dfsg.P4-8ubuntu1.5), 
libbind9-140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.4, 1:9.10.3.dfsg.P4-8ubuntu1.5), 
linux-generic:amd64 (4.4.0.62.65, 4.4.0.64.68), lxd-client:amd64 
(2.0.8-0ubuntu1~ubuntu16.04.2, 2.0.9-0ubuntu1~16.04.1), lxcfs:amd64 
(2.0.5-0ubuntu1~ubuntu16.04.1, 2.0.6-0ubuntu1~16.04.1)
End-Date: 2017-02-21  23:49:31


I'm able to update initrd.img file using following command, it doesnt hang on 
that "Building cpio":
mkinitramfs -v -c -k 4.4.0-66-generic -o /tmp/initrd.img.tmp

I'm not planning to restart server during next few weeks, so I'm unable
to check if it's running. Right now I'm working on 4.4.0-62.

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-03-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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


[Bug 1667512] Re: update-initramfs hangs on upgrade, dpkg unusable, unbootable system

2017-03-07 Thread tbenst
Just bumping and noting that this problem may date back to 2010:
https://ubuntuforums.org/showthread.php?t=1611122

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

Title:
  update-initramfs hangs on upgrade, dpkg unusable, unbootable system

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

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