Background:
A full root partition during the package updating process had forced me to free some disk space and then to reinstall some broken packages (by pacman -S <packagename>
).
(The package download before was no problem because at /var/cache/pacman/pkg an extra partition is mounted.)
After the package reinstallation everything seemed to be normal, but rebooting the system failed with message: 'Error device UUID=... not found. Skipping fsck
.' for my boot partition.
Questions:
Because there were many new updates including a new kernel anyway, for me it seemed to be a good idea to
- boot my notebook from a stick with a manjaro-kde-x86_64-image
- execute
manjaro-chroot -a
- install all updates by invoking
pacman -Syyu
.
Obviously it was not a good idea, but I'd like to know what causes theese errors in the post-transaction hooks?
And how can I fix that?
[==> Image generation successful]
( 2/16) Updating Grub-Bootmenu
Generating grub configuration file ...
Found background: /usr/share/grub/background.png
Found Intel Microcode image
Found linux image: /boot/vmlinuz-4.1-x86_64
Found initrd image: /boot/initramfs-4.1-x86_64.img
Found initrd fallback image: /boot/initramfs-4.1-x86_64-fallback.img
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
Found Windows 7 on /dev/sda1
Found Manjaro Linux (16.06-rc1) on /dev/sda10
Found memtest86+ image: /boot/memtest86+/memtest.bin
done
and
( 7/16) Reloading GVFS config...
killall: /proc lacks process entries (not mounted ?)
Calling mount inside chroot:
...
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sys on /sys type sysfs (ro,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=1645740k,nr_inodes=411435,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
shm on /dev/shm type tmpfs (rw,nosuid,nodev,relatime)
run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
tmp on /tmp type tmpfs (rw,nosuid,nodev)
overlay on /etc/resolv.conf type overlay (rw,relatime,lowerdir=/run/miso/sfs/livefs:/run/miso/sfs/mhwdfs:/run/miso/sfs/desktopfs:/run/miso/sfs/rootfs,upperdir=/run/miso/overlay_root/upper,workdir=/run/miso/overlay_root/work)
Thanks in advance!