Ubuntu 22.04 LTS 启动问题

Ubuntu 22.04 LTS 启动问题

今天,我的装有 Ubuntu 22.04 LTS 的电脑停止工作并直接进入 BIOS。启动驱动器不再显示在 BIOS 中,而且 GPT 分区表信息似乎消失了。我将 SSD 放入机箱并从 Ventoy USB 加载实时 Ubuntu CD(https://www.ventoy.net)然后我运行 Boot Repair 工具,工具报告可从以下链接获取:https://pastebin.ubuntu.com/p/dhGrzkgqMk/

我没有使用 Boot Repair Tool 进行任何修复,当我尝试从实时 CD 访问 SSD 上的 Ubuntu 分区时出现错误:can't read superblock on /dev/sdxx

SSD 尺寸为三星 SSD 970 EVO Plus 1Tb。

ubuntu@ubuntu:~$ sudo e2fsck -C0 -p -f -v /dev/nvme0n1p4  
/dev/nvme0n1p4: recovering journal  
/dev/nvme0n1p4: Superblock needs_recovery flag is clear, but journal has data.  
/dev/nvme0n1p4: Run journal anyway  
/dev/nvme0n1p4: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.  
(i.e., without -a or -p options)  
ubuntu@ubuntu:~$ sudo e2fsck -C0 -f -v /dev/nvme0n1p4  
/dev/nvme0n1p4: recovering journal  
Superblock needs_recovery flag is clear, but journal has data.  
Run journal anyway<y>? yes  
e2fsck: Input/output error while recovering journal of /dev/nvme0n1p4  
e2fsck: unable to set superblock flags on /dev/nvme0n1p4  
/dev/nvme0n1p4: ********** WARNING: Filesystem still has errors **********  


ubuntu@ubuntu:~$ sudo e2fsck -C0 -p -f -v /dev/nvme0n1p5  
/dev/nvme0n1p5: Error writing file system info: Input/output error               


/dev/nvme0n1p5: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.  
    (i.e., without -a or -p options)  
ubuntu@ubuntu:~$ sudo e2fsck -C0 -f -v /dev/nvme0n1p5  
e2fsck 1.45.5 (07-Jan-2020)  
Pass 1: Checking inodes, blocks, and sizes  
Pass 2: Checking directory structure                                             
Pass 3: Checking directory connectivity                                          
Pass 4: Checking reference counts  
Pass 5: Checking group summary information                                       
Error writing file system info: Input/output error                               

/dev/nvme0n1p5: ***** FILE SYSTEM WAS MODIFIED *****  

buntu@ubuntu:~$ sudo e2fsck -f -y -v /dev/nvme0n1p4  
e2fsck 1.45.5 (07-Jan-2020)  
/dev/nvme0n1p4: recovering journal  
Superblock needs_recovery flag is clear, but journal has data.  
Run journal anyway? yes  

e2fsck: Input/output error while recovering journal of /dev/nvme0n1p4  
e2fsck: unable to set superblock flags on /dev/nvme0n1p4  


/dev/nvme0n1p4: ********** WARNING: Filesystem still has errors **********  

ubuntu@ubuntu:~$ sudo e2fsck -f -y -v /dev/nvme0n1p5  
e2fsck 1.45.5 (07-Jan-2020)  
Pass 1: Checking inodes, blocks, and sizes  
Pass 2: Checking directory structure  
Pass 3: Checking directory connectivity  
Pass 4: Checking reference counts  
Pass 5: Checking group summary information  
Error writing file system info: Input/output error  

/dev/nvme0n1p5: ***** FILE SYSTEM WAS MODIFIED *****  

在升级到 22.04 LTS 之前,我大约 2 个月前有完整的 Veeam 备份。有什么方法可以从这两个损坏的分区恢复我当前的数据吗?

相关内容