Posted On April 1, 2019

Error: Kernel panic – not syncing : VFS: Unable to mount root fs on unknown-block(0,0)

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Error: Kernel panic – not syncing : VFS: Unable to mount root fs on unknown-block(0,0)
If this has been caused by an interrupted system update:
– Boot the system via grub-rescue or other GRUB options
– Run these commands
su
yum-complete-transaction
yum remove kernel
yum update

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Useful Linux Commands

# Check SSH connection activities by reading its log (Redhat / Centos) tail -f -n…

Linux: How to Add a Line into Crontab from Command Line

The easy method: newline=@reboot /usr/bin/numlockx(crontab -l && echo "$newLine") | crontab - Alternative (longer version)…

Fedora: Setting Programs to Automatically Start

on a fedora core box, use chkconfig like this:Code:chkconfig --level 345 httpd onchkconfig --level 2345…