一些背景
- 磁盘本身是由一位朋友“处理过”的,据说仍然完好无损,并且仍可安装/恢复。
- 该磁盘是Ubuntu 12.04上的软件团队1的一部分
- 原始RAID 1中的另一个磁盘已格式化并用于其他目的,从技术上讲,使当前磁盘(有问题的磁盘)在RAID中仍然不存在
我已经尝试过的
基本安装
- 我在fstab中添加了一个条目,将磁盘标记为ext3 / ext4并尝试挂载。
安装后出现以下错误
wrong fs type, bad option, bad superblock on
并在dmesg中
EXT4-fs (sdc1): VFS: Can't find ext4 filesystem
我试图找到磁盘的文件系统类型,并提出了
$sudo file -s /dev/sdc
/dev/sdc: x86 boot sector; partition 1: ID=0x83, starthead 254, startsector 63, 1953520002 sectors, code offset 0xb8
我需要帮助的地方/我的问题
- 有没有办法在不损坏数据的情况下将磁盘转换为ext4?
- 有没有简单的方法可以挂载Linux 83文件类型磁盘并恢复数据?
- 我有另一个当前可用的磁盘,以防以某种方式重建团队
- 我的主要目标是从磁盘恢复数据。我愿意接受所有选择。
更新资料
一些命令的输出
fdisk -l / dev / sdc
$fdisk -l /dev/sdc
Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0005ed9c
Device Boot Start End Blocks Id System
/dev/sdc1 63 1953520064 976760001 83 Linux
文件-s / dev / sdc1
$file -s /dev/sdc1
/dev/sdc1: data
hexdump -C -n 32256 / dev / sdc(不确定是否可以帮助)
$hexdump -C -n 32256 /dev/sdc` 00000000 fa b8 00 10 8e d0 bc 00 b0 b8 00 00 8e d8 8e c0 |................| 00000010 fb be 00 7c bf 00 06 b9 00 02 f3 a4 ea 21 06 00 |...|.........!..| 00000020 00 be be 07 38 04 75 0b 83 c6 10 81 fe fe 07 75 |....8.u........u| 00000030 f3 eb 16 b4 02 b0 01 bb 00 7c b2 80 8a 74 01 8b |.........|...t..| 00000040 4c 02 cd 13 ea 00 7c 00 00 eb fe 00 00 00 00 00 |L.....|.........| 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001b0 00 00 00 00 00 00 00 00 9c ed 05 00 00 00 00 fe |................| 000001c0 ff ff 83 fe ff ff 3f 00 00 00 82 59 70 74 00 00 |......?....Ypt..| 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.| 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00007e00
df
显示,表明新安装的磁盘的使用率为2%,大大低于预期。
mount -t ext4
吗?-f标志用于“假”安装(ubuntu 14.04)。
mount -f ext4 /dev/sdc1 /mountpoint
应该做的把戏。-f 强制使mount假定ext4而不是寻找文件系统