报错
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
vim /etc/fstab
df -h
- 发现
/home 分区没挂载/损坏,需要修复,执行以下命令(遇见问号,选择yes):
fsck -t ext4 -r /home
参考链接:
|