- Edited
I got this message in tty1 after I installed obarun and rebooted into it:
The complete messages in tty1 are:
So this error report is a false one and can be ignored, isn't it?
update:
--disk /dev/sda --part 5
--disk /dev/sda --part 3
fsck reports errors -- at least system should be rebooted
After fsck them using liveiso and reboot again this message is still here.The complete messages in tty1 are:
:: running early hook [udev]
:: running hook [udev]
:: Triggring uevents...
:: performing fsck on '/dev/sda5'
:: ROOT: clean, ???/??? files, ???/??? blocks
:: mounting '/dev/sda5' on real root
:: running cleanup hook [udev]
[Starts stage1 process...]
66-boot: info: Create live scandir at: /run/66
66-boot: info: Initiate earlier service of tree: boot
66-boot: info: Starts boot logger at: /run/66/log/0
fsck reports errors -- at least system should be rebooted
Welcome to Obarun Linux
And the log are:
$ cut -c 27- /run/66/log/0/current | grep -A6 system-fsck
[system-fsck] starts...
/dev/sda5 is mounted.
e2fsck: Cannot continue, aborting.
fsck reports errors -- at least system should be rebooted
[mount-fstab] starts...
I followed this guide https://wiki.obarun.org/doku.php?id=uefi to install it and used the following command to create a boot entry:
$ sudo efibootmgr \
--create --verbose --label Obarun \
--disk /dev/sda --part 3 \
--loader /vmlinuz-linux \
--unicode \
'root=LABEL=ROOT rw initrd=/intel-ucode.img initrd=/initramfs-linux.img'
I also checked the initrd:
$ zcat /boot/initramfs-linux.img | cpio -id
$ cat -n hooks/udev
1 # !/usr/bin/ash
2
3 run_earlyhook() {
4 udevd --daemon --resolve-names=never
5 udevd_running=1
6 }
7
8 run_hook() {
9 msg ":: Triggering uevents..."
10 udevadm trigger --action=add --type=subsystems
11 udevadm trigger --action=add --type=devices
12 udevadm settle
13 }
14
15 run_cleanuphook() {
16 udevadm control --exit
17 udevadm info --cleanup-db
18 }
19
20 # vim: set ft=sh ts=4 sw=4 et:
It seems like fsck in boot-66serv/service/boot/system/system-fsck will fail unconditionally because ROOT partition have already be fscked and then mounted by udev.So this error report is a false one and can be ignored, isn't it?
update:
--disk /dev/sda --part 3