$(mount -o remount,rw /sysroot)
Showed me this.
View attachment 25543
This boot output is presumably from a live disk as mentioned in posts #11 and #12. Normally a live disk will boot to a desktop environment, or to a text login prompt, depending on how a user has managed it by letting it do its own thing or adding a kernel boot option to boot to text.
This boot shown in post #13 has provided a root shell, which is what a rescue disk might do rather than a default live disk. If you can clarify what's actually been booted, that would help.
One needs to find out what the problem is. The first place to look is usually the logs. Commands such as the following can be useful:
Options meanings: -b (this boot), -x (explanation of errors), -p (priority of message 3=error). One can add the option: --no-pager, to avoid truncation on screen.
Another command that may show problems is:
Code:
dmesg | grep -i -E 'error|fail'
If there are files such as: /var/log/syslog, /var/log/messages, then they can be inspected in a terminal for errors with commands such as:
Code:
cat /var/log/syslog | grep -i -E 'error|fail'
cat /var/log/messages | grep -i -E 'error|fail'
Multiple log files may show the same output, but it's worth checking as much as possible.
It's also worth checking the file: /etc/fstab, to see if it's configured to mount the intended partitions and to determine that they are all mountable.
To get an idea of the disk and partition arrangement, it would be useful to run:
If the file mentioned in post #1 exists: /run/initramfs/rdsosreport.txt, its contents may reveal something of interest, but it may only be generated from a system boot rather than a live disk boot.
The above are the first steps worth taking. Some things to look for include missing drivers, failed systemd services, bad configurations in the fstab file, missing firmware, missing microcode, filesystem errors, among others.
If the issue is actually the grub bootloader, as the thread title suggests, then it may be worth considering re-installing grub as outlined here:
https://docs.fedoraproject.org/en-US/quick-docs/grub2-bootloader/.
Usually a grub problem will be signaled by the system throwing the user into a grub prompt, but it's not clear this has occurred here.