解决 Ubuntu 文件系统(磁盘)强制检查的问题


Ubuntu 引导时出现:
"/dev/sda9 has been mounted 30 times without being checked, check forced"

其实,无关紧要。想要解决的话,推荐 AutoFsck,这个是在关机时检查。Ubuntu 7.04以上版本测试通过。
https://wiki.ubuntu.com/AutoFsck

另一个相关软件
Bonager
http://ubuntuforums.org/showthread.php?t=295262

或者干脆关闭磁盘检查(不推荐),亦即关闭ext3文件系统检查,使用命令:
$ sudo tune2fs -i 0 /dev/sda9

附:立刻检查磁盘
 
$ sudo touch /forcefsck
$ sudo reboot

你可能感兴趣的:(Ubuntu,Linux)