我正在尝试从 Synology NAS 的磁盘中恢复数据。它存储在 2 磁盘 RAID1 中。其中一个磁盘坏了,我没有更换它。几个月后,Synology 工作站也坏了,现在我不得不尝试从 ubuntu 获取信息。
这是磁盘:
root@luis-Ubuntu:~# fdisk -l /dev/sdb
Disk /dev/sdb: 1,84 TiB, 2000398934016 bytes, 3907029168 sectors
Disk model: 003-9VT166
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000ba95f
Device Boot Start End Sectors Size Id Type
/dev/sdb1 256 4980735 4980480 2,4G fd Linux raid autodetect
/dev/sdb2 4980736 9175039 4194304 2G fd Linux raid autodetect
/dev/sdb3 9437184 3907015007 3897577824 1,8T f W95 Ext'd (LBA)
/dev/sdb5 9453280 3907015007 3897561728 1,8T fd Linux raid autodetect
我尝试将它组装起来:
root@luis-Ubuntu:~# mdadm --assemble --scan
mdadm: No suitable drives found for /dev/md/2
检测到一些问题。我用 mdadm 检查了分区:
root@luis-Ubuntu:~# mdadm --examine /dev/sdb5
/dev/sdb5:
Magic : a92b4efc
Version : 1.2
Feature Map : 0x0
Array UUID : e869adda:dd078e08:11ed8189:7f811d58
Name : DiskStation:2
Creation Time : Fri Mar 11 13:30:10 2011
Raid Level : raid1
Raid Devices : 2
Avail Dev Size : 3897559680 (1858.50 GiB 1995.55 GB)
Array Size : 1948779648 (1858.50 GiB 1995.55 GB)
Used Dev Size : 3897559296 (1858.50 GiB 1995.55 GB)
Data Offset : 2048 sectors
Super Offset : 8 sectors
Unused Space : before=1968 sectors, after=384 sectors
State : clean
Device UUID : e0ad9477:9a814591:1445e724:f88423c6
Update Time : Sun Mar 10 15:44:28 2019
Checksum : f83390a2 - correct
Events : 23479526
Device Role : Active device 32769
Array State : A. ('A' == active, '.' == missing, 'R' == replacing)
这是详细的扫描输出:
root@luis-Ubuntu:~# mdadm --detail --scan
INACTIVE-ARRAY /dev/md2 metadata=1.2 name=DiskStation:2 UUID=e869adda:dd078e08:11ed8189:7f811d58
And this is the mdstat:
root@luis-Ubuntu:~# cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
md2 : inactive sdb5[2](S)
1948779840 blocks super 1.2
unused devices: <none>
我是突袭配置方面的一名新用户,但这些都是我能得到的,希望能够帮助你帮助我:)
我认为光盘没有问题,但我操作错误。我该如何打开并提取光盘上的文件?
谢谢
路易斯