报错
win11、ubuntu双系统,在ubuntu启动时报以下错误,一直无法启动:
bluetooth: hci0: command 0xfc09 tx timeout
bluetooth: hci0: failed to send firmware data (-110)
bluetooth: hci0: sending frame failed (-19)
我的环境
- windows 11、ubuntu 20.04双系统
- windows下用
Paragon ExtFS for Windows挂载了ubuntu的分区 - 某一天不知道在windows下进行了什么操作,导致出现以上错误而无法进入Ubuntu
尝试过无效的方案
有效方案
尝试查看boot.log发现有如下错误记录:
[FAILED] Failed to start File System Check on ...
See 'systemctl status "systemd-fsck@dev-disk-by....service"' for details.
[DEPEND] Dependency failed for /home.
[DEPEND] Dependency failed for Local File Systems.
查找资料发现是home分区的挂载及分区损坏导致。解决步骤:
- 查看启动日志,确定有以上错误
tail -n 100 /var/log/boot.log
- 查看
fstab,确认哪些分区应该被挂载
vim /etc/fstab
- 查看实际挂载了哪些分区
df -h
- 发现
/home分区没挂载/损坏,需要修复,执行以下命令(遇见问号,选择yes):
fsck -t ext4 -r /home
- 问题解决!
参考链接:
本文介绍了一种在win11与ubuntu20.04双系统环境下遇到的启动错误问题,详细展示了错误日志信息及排查过程。最终通过检查启动日志、fstab配置和执行文件系统检查命令解决了/home分区未挂载的问题。

2437

被折叠的 条评论
为什么被折叠?



