“Cannot access Input/output error”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“=trouble= <pre> 内网机器 PHP的人 随便重启,然后机器再起来出事了 ls /home cannot access Input/output error 和乱码 d?????????? ? ? ?…”)
 
 
(未显示同一用户的3个中间版本)
第1行: 第1行:
 +
  [[category:ops]]
 
=trouble=
 
=trouble=
 
<pre>
 
<pre>
第14行: 第15行:
 
有关home分区的程序先kill掉  
 
有关home分区的程序先kill掉  
  
 +
 +
然后关掉机器 ,再硬重启 
 +
如果不行就得 
 +
fsck
 +
 +
例如如果上面的 /home  at  /dev/sda1
 +
1.应该是采用  修复命令  fsck 
 +
fsck -s /dev/sda1
 +
意外断电导致/dev/sda1分区的文件系统崩溃,所以针对这个分区进行修复,如果其他分区也出现类似情况,可以进行全盘修复
 +
 +
 +
2.机器重启
  
  
 
</pre>
 
</pre>
 +
=see also=
 +
[https://unix.stackexchange.com/questions/39905/input-output-error-when-accessing-a-directory “Input/output error” when accessing a directory]
 +
 +
[https://www.cnblogs.com/Alanf/p/7509268.html cannot access Input/output error]
 +
 +
[https://linoxide.com/how-tos/inputoutput-error-bad-blocks-how-to-restart-linux/ Input/Output Error : Bad Blocks - How to Restart Linux ]

2020年2月18日 (二) 08:32的最新版本

trouble

 内网机器 PHP的人 随便重启,然后机器再起来出事了 
ls /home 
cannot access Input/output error

和乱码
d??????????   ? ?    ?        ?            ? home

shooting

lsof  | grep home 
有关home分区的程序先kill掉 


然后关掉机器 ,再硬重启  
如果不行就得  
fsck

例如如果上面的 /home  at  /dev/sda1
1.应该是采用  修复命令  fsck  
fsck -s /dev/sda1
意外断电导致/dev/sda1分区的文件系统崩溃,所以针对这个分区进行修复,如果其他分区也出现类似情况,可以进行全盘修复
 

2.机器重启 


see also

“Input/output error” when accessing a directory

cannot access Input/output error

Input/Output Error : Bad Blocks - How to Restart Linux