BusyBox 是一个集成了三百多个最常用Linux命令和工具的软件。BusyBox 包含了一些简单的工具,例如ls、cat和echo等等,还包含了一些更大、更复杂的工具,例grep、find、mount以及telnet。简单的说BusyBox就好像是个大工具箱,它集成压缩了 Linux 的许多工具和命令。
ubuntu开机时,有时会出现BusyBox v1.22.0 built-in shell(ash)的提示信息,无法
BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu) built-in shell(ash)
Enter 'help' for a list of built-in commands
(initramfs)_
输入exit会显示以下信息:
/dev/sda2 contains a file system with errors, check forced.
Inodes that were part of a corruptde orphan linked list found.
/dev/sda2:UNEXPECTED INCONSISTENCY;RUN fsck MANUALLY.
(i.e.,without -a or -p options)
fsck exited with status code 4
The root filesystem on /dev/sda2 requiers a manual fsck
在sda2上出现了文件系统的错误,用fsck进行手动修复。
输入以下代码进行修复:
fsck -y /dev/sda2
- sda2为报错的位置,要前后一致。
修复完成后会出现filesystem has been Modified类似的字样,此时输入exit重启即可。
正常开机。
参考:Ubuntu开机时出现BusyBox v1.22.1 built-in shell(ash) 解决方法_Theyearling的博客-CSDN博客_busybox ubuntu