解決方法1、重啟看是否可以修復(很多機器可以)2、使用用 fsck – y /dev/hdc6 (/dev/hdc6指你需要修復的分割槽) 來修復檔案系統3、若,在進行修復的時候有的分割槽會報錯,重新啟動系統問題依舊檢視下分割槽結構[root@localhost ~]# mount/dev/sda3 on / type ext3 (rw)proc on /proc type proc (rw)sysfs on /sys type sysfs (rw)devpts on /dev/pts type devpts (rw,gid=5,mode=620)/dev/sda1 on /boot type ext3 (ro)tmpfs on /dev/shm type tmpfs (rw)none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)檢視ro掛載的分割槽,如果發現有ro,就重新mountumount /dev/sda1mount /dev/sda1 /boot如果發現有提示“device is busy”,找到是什麼程序使得他busyfuser -m /boot 將會顯示使用這個模組的pidfuser -mk /boot 將會直接kill那個pid然後重新mount即可。4、直接remount,命令為[root@localhost ~]# mount -o rw,remount /boot
解決方法1、重啟看是否可以修復(很多機器可以)2、使用用 fsck – y /dev/hdc6 (/dev/hdc6指你需要修復的分割槽) 來修復檔案系統3、若,在進行修復的時候有的分割槽會報錯,重新啟動系統問題依舊檢視下分割槽結構[root@localhost ~]# mount/dev/sda3 on / type ext3 (rw)proc on /proc type proc (rw)sysfs on /sys type sysfs (rw)devpts on /dev/pts type devpts (rw,gid=5,mode=620)/dev/sda1 on /boot type ext3 (ro)tmpfs on /dev/shm type tmpfs (rw)none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)檢視ro掛載的分割槽,如果發現有ro,就重新mountumount /dev/sda1mount /dev/sda1 /boot如果發現有提示“device is busy”,找到是什麼程序使得他busyfuser -m /boot 將會顯示使用這個模組的pidfuser -mk /boot 將會直接kill那個pid然後重新mount即可。4、直接remount,命令為[root@localhost ~]# mount -o rw,remount /boot