From 7e967dbca1608832d4de82550b1782ae4d6f5609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=B3=BB=E7=B5=B1=E7=AE=A1=E7=90=86=E5=93=A1?= Date: Fri, 6 Mar 2026 06:14:56 +0000 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20Kernel=20Panic=20-=20not?= =?UTF-8?q?=20syncing:=20VFS:=20Unable=20to=20mount=20root=20fs=20on=20unk?= =?UTF-8?q?nown-block?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ble to mount root fs on unknown-block.-.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Kernel Panic - not syncing%3A VFS%3A Unable to mount root fs on unknown-block.-.md diff --git a/Kernel Panic - not syncing%3A VFS%3A Unable to mount root fs on unknown-block.-.md b/Kernel Panic - not syncing%3A VFS%3A Unable to mount root fs on unknown-block.-.md new file mode 100644 index 0000000..beaa970 --- /dev/null +++ b/Kernel Panic - not syncing%3A VFS%3A Unable to mount root fs on unknown-block.-.md @@ -0,0 +1,35 @@ +# 1. 修復損壞的 Kernal + +```bash +sudo apt -f install +``` + +# 2. 列出所有 Kernal + +```bash +dpkg --list | grep linux-image +``` + +# 3. 移除低版本到無法移除 + +```bash +sudo apt purge -y linux-image-x.xx.x-xxx-generic +``` + +# 4. 更新 GRUB 2 + +```bash +sudo update-grub2 +``` + +# 5. 更新 Kernal 到現在的版本 + +```bash +sudo apt update && sudo apt upgrade -y +``` + +# 6. 試著重啟看看是否正常 + +```bash +sudo reboot +``` \ No newline at end of file