6 | | * [參考] [http://www.cyberciti.biz/tips/repairing-reiserfs-file-system-with-reiserfsck.html Repairing ReiserFS file system with reiserfsck] |
7 | | * [參考] [http://www.krazyworks.com/dealing-with-reiserfs-bad-blocks/ Dealing with ReiserFS bad blocks] |
8 | | * STEP 1 : 低階備份的指令 |
| 6 | * [參考][1] [http://www.cyberciti.biz/tips/repairing-reiserfs-file-system-with-reiserfsck.html Repairing ReiserFS file system with reiserfsck] |
| 7 | * [參考][2] [http://www.krazyworks.com/dealing-with-reiserfs-bad-blocks/ Dealing with ReiserFS bad blocks] |
| 8 | * [參考][3] [http://www.krazyworks.com/reiserfs-filesystem-recovery/ ReiserFS Filesystem Recovery] |
| 9 | * [參考][4] [ |
| 10 | * STEP 0 : 檢查檔案系統正確性 |
| 11 | {{{ |
| 12 | # reiserfsck -n /dev/sda1 |
| 13 | # reiserfsck --check /dev/sda1 |
| 14 | |
| 15 | 如果出現錯誤 "Bad root block 0" : |
| 16 | |
| 17 | # reiserfsck --scan-whole-partition --rebuild-tree /dev/sda1 |
| 18 | |
| 19 | 如果出現錯誤 "superblock was missing" 或掛載時出現 "read_super_block: can't find a reiserfs file system": |
| 20 | |
| 21 | # reiserfsck --rebuild-sb /dev/sda1 |
| 22 | }}} |
| 23 | * STEP 1 : 低階備份的指令 [1] |