Newly bought Redrice laptop ubuntu24.04 boot often automatically enter initramfs

Laptop: Redmi Redmi 16 2024, model: XIAOMI-RedmiBookPro162024 - TM2309

Just after the purchase and installation of ubuntu24.04 budgie desktop , the startup automatically enters initramfs within a few days. It will happen from time to time, sometimes the startup is normal, and sometimes the startup will enter initramfs.

Code:

Linux servers 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec  5 13:09:44 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

Distributor ID: Ubuntu
Description:    Ubuntu 24.04.1 LTS
Release:        24.04
Codename:       noble

Search the command on the Internet, can not view the partition, can not reboot -f, all invalid, only press the power to shut down, restart and normal,

Bash:

# The following command is not running
fsck /dev/sda1

lsblk

kern.log and syslog under var/log/ are attached.

On 2025-01-03, the system automatically enters initramfs at 9:50 am




kern.log.txt (118.5 KB)
syslog.txt (294.7 KB)

Hi @Tianyazi!

Have you tried running “fsck” from a live session?

From the live session, first copy and paste this line into the terminal to check the names of the partitions of your media: according to the syslog, your media is not hard disk (“sda”) but NVMe (“nvme0n1”).

lsblk -o NAME,FSTYPE,SIZE,UUID,MOUNTPOINT | grep -v loop | grep -v zram

Then launch “fsck”.

Still from the live session, you can also enter this line to repair GRUB after entering the right name of your drive:

sudo os-prober && sudo update-grub && sudo grub-install /dev/name-of-the drive

Last, try reinstalling UB…