当前位置:网站首页>由于不正常断电导致的unexpected inconsistency;RUN fsck MANUALLY问题已解决
由于不正常断电导致的unexpected inconsistency;RUN fsck MANUALLY问题已解决
2022-07-02 06:22:00 【呆呆象呆呆】
问题状况
服务器reboot之后很久都没有反应,链连接显示屏,发现显示屏是全黑的,就直接长按电源断电,进行手动重启。
开机界面出现
、dev/sda*:unexpected inconsistency;RUN fsck MANUALLY
sck exited with status code 4
the root filesustem on /dev/sda4 requires a manual fsck

原因
这种问题一般是非正常断电导致硬盘类似于自己锁住了的情况,或者有可能出现系统文件损坏
解决
手动在命令行中修复,然后在命令行中重启reboot
fsck -y /dev/sda4 #图片少打了一个空格,以左边为准 /dev/sda4指你损坏的设备
注:检测并修复磁盘/dev/*,-y 选项指定检测每个文件是自动输入yes
如果仍然报错可以参考一下参考文献,我修复完成就可以正常启动了
参考文献
Linux启动报错UNEXPECTED INCONSISTENCY解决方法_kerwin612的博客-CSDN博客
From 师弟SK一起解决
边栏推荐
- 10 erreurs classiques de MySQL
- Flask-Migrate 检测不到db.string() 等长度变化
- Network related knowledge (Hardware Engineer)
- Storage space modifier in CUDA
- 【张三学C语言之】—深入理解数据存储
- CUDA中的线程层次
- 日期时间API详解
- Functions of tensorrt
- Cglib agent - Code enhancement test
- Support new and old imperial CMS collection and warehousing tutorials
猜你喜欢
随机推荐
压力测试修改解决方案
Alibaba cloud MFA binding Chrome browser
FE - 微信小程序 - 蓝牙 BLE 开发调研与使用
pytest(3)parametrize参数化
Network related knowledge (Hardware Engineer)
日志(常用的日志框架)
Data science [viii]: SVD (I)
重载全局和成员new/delete
FE - weex 开发 之 使用 weex-ui 组件与配置使用
RestTemplate请求时设置请求头,请求参数,请求体。
The difference between session and cookies
Sparse array (nonlinear structure)
日志 - 7 - 记录一次丢失文件(A4纸)的重大失误
Sentinel Alibaba open source traffic protection component
Warp shuffle in CUDA
Redis - grande question clé
PgSQL学习笔记
Render minecraft scenes into real scenes using NVIDIA GPU
Golang -- map capacity expansion mechanism (including source code)
一起学习SQL中各种join以及它们的区别









