I have my linux manjaro deepin installed in a usb drive and is encrypted - when i start, between the grub and the login screen I get a message in a black screen with blinking cursor the message looks like this - copying letter by letter -
/dev/mapper/luks-0982f1cc-ab1a-4ae7-a84a-375f462edaab: clean,386376/3736432 files, 3615756/14942951 blocks
Since eventually I get the login screen I have two questions and would be great if someone can help me out
Is this an error, warning or an information message - how do I read this ?
How to stop seeing this ?
This is not an error, but an informative message.
fsck
(file system check) was executed and found no issues.
If you want to disable fsck
, see:
Is an informative message about the fsck performed at boot.
If the system hangs there, then you might have a GPU driver issue, but if continues to boot into the Desktop, then all is fine.
Want to disable fsck ?
Either edit your /etc/fstab file and change, at the end of the root aka / line, the 1 or 2 you have there to 0
then save the file and reboot
Or remove fsck from /etc/mkinitcpio.conf on the HOOKS line and then run from terminal:
sudo mkinitcpio -P
sudo update-grub
Remember, i…