|
|
开机启动的过程就报错了,叫我Ctrl+D继续,因为那是个不关系统的分区,所以我可以进入系统。
进入系统后检查分区(hdd7):
- # reiserfsck /dev/hdd7
- reiserfsck 3.6.19 (2003 www.namesys.com)
- *************************************************************
- ** If you are using the latest reiserfsprogs and it fails **
- ** please email bug reports to reiserfs-list@namesys.com, **
- ** providing as much information as possible -- your **
- ** hardware, kernel, patches, settings, all reiserfsck **
- ** messages (including version), the reiserfsck logfile, **
- ** check the syslog file for any related information. **
- ** If you would like advice on using this program, support **
- ** is available for $25 at www.namesys.com/support.html. **
- *************************************************************
- Will read-only check consistency of the filesystem on /dev/hdd7
- Will put log info to 'stdout'
- Do you want to run this program?[N/Yes] (note need to type Yes if you do):Yes
- ###########
- reiserfsck --check started at Thu Jun 29 19:03:55 2006
- ###########
- Replaying journal..
- Reiserfs journal '/dev/hdd7' in blocks [18..8211]: 0 transactions replayed
- The problem has occurred looks like a hardware problem. If you have
- bad blocks, we advise you to get a new hard drive, because once you
- get one bad block that the disk drive internals cannot hide from
- your sight,the chances of getting more are generally said to become
- much higher (precise statistics are unknown to us), and this disk
- drive is probably not expensive enough for you to you to risk your
- time and data on it. If you don't want to follow that follow that
- advice then if you have just a few bad blocks, try writing to the
- bad blocks and see if the drive remaps the bad blocks (that means
- it takes a block it has in reserve and allocates it for use for
- of that block number). If it cannot remap the block, use badblock
- option (-B) with reiserfs utils to handle this block correctly.
- bread: Cannot read the block (196608): (Input/output error).
- Aborted
复制代码
报错的信息跟开机时的差不多。
然后我查google用了以下2个命令:
- # badblocks /dev/hdd7 -o badblocks.log
- #
- # reiserfsck --fix-fixable -B badblocks.log /dev/hdd7
- reiserfsck 3.6.19 (2003 www.namesys.com)
- *************************************************************
- ** If you are using the latest reiserfsprogs and it fails **
- ** please email bug reports to reiserfs-list@namesys.com, **
- ** providing as much information as possible -- your **
- ** hardware, kernel, patches, settings, all reiserfsck **
- ** messages (including version), the reiserfsck logfile, **
- ** check the syslog file for any related information. **
- ** If you would like advice on using this program, support **
- ** is available for $25 at www.namesys.com/support.html. **
- *************************************************************
- Will check consistency of the filesystem on /dev/hdd7
- and will fix what can be fixed without --rebuild-tree
- Bad block list will contain only blocks specified in 'badblocks.log' file
- Will put log info to 'stdout'
- Do you want to run this program?[N/Yes] (note need to type Yes if you do):Yes
- create_badblock_bitmap: block number (786432) belongs to system reiserfs area. It cannot be relocated.
复制代码
还是没能修复。。
就是这句话:
create_badblock_bitmap: block number (786432) belongs to system reiserfs area. It cannot be relocated.
这是什么意思?我该怎么办?help.. |
|