1. 背景和前置条件
Btrfs 文件系统相较于 Ext4 ,是一种更年轻的文件系统,具有更多可玩的特征,比如支持快照、子卷、校验和自检、软 RAID 甚至透明压缩等。但是在没有运维能力的情况下,建议不要使用 Btrfs 文件系统。本文记录的是,在群辉 DSM 系统下,将 Btrfs 文件系统的磁盘拆下后,读取数据的过程。在我的 DSM 系统中,有两块硬盘组成 RAID1 阵列,使用的是 Btrfs 文件系统。我将其中一块硬盘拆下,插入到另外一台苹果机器中。此外,这里要求,DSM 版本不低于 6.2,MacOS 系统上有 Parallels Desktop 并安装有 Ubuntu 版本不低于 18.04。如果你有 Windows 机器,那么也可以尝试使用 WinBtrfs 驱动进行文件读取。
2. MacOS 上挂载硬盘
可以看到 MacOS 无法直接识别 Btrfs 文件系统。忽略图片中显示 disk3,这是补的一张图,最初是 disk2。
1
2
3
4
5
6
7
8
9
10
11
|
diskutil list
/dev/disk0 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *1.0 TB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_APFS Container disk1 1000.0 GB disk0s2
...
/dev/disk2 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: *4.0 TB disk2
|
进入 Home 目录
新建硬盘指向物理磁盘
1
|
/Applications/Parallels Desktop.app/Contents/MacOS/prl_disk_tool create -p --hdd disk2.hdd --ext-disk-path /dev/disk2
|
3. 将硬盘挂载到 PD 的 Ubuntu 虚拟机
进入 Ubuntu 关闭主机,然后编辑虚拟机,添加一块硬盘,选择已经存在的硬盘,选中上面创建的 disk2.hdd 中的 HDD 格式文件。
4. 在 Ubuntu 上读取 Btrfs 分区
1
|
apt-get install -y mdadm lvm2
|
在 Disks 工具中,可以看到磁盘自动挂载分区
1
|
mdadm -Asf && vgchange -ay
|
查看 /dev/md4
分区,如果处于 inactive 状态,可以卸载之后,再次重试。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
mdadm -D /dev/md4
/dev/md4:
Version : 1.2
Creation Time : Thu Apr 30 20:16:28 2020
Raid Level : raid1
Array Size : 3902187456 (3721.42 GiB 3995.84 GB)
Used Dev Size : 3902187456 (3721.42 GiB 3995.84 GB)
Raid Devices : 2
Total Devices : 1
Persistence : Superblock is persistent
Update Time : Sat Dec 18 07:38:07 2021
State : clean, degraded
Active Devices : 1
Working Devices : 1
Failed Devices : 0
Spare Devices : 0
Consistency Policy : resync
Name : DiskStation:4
UUID : 9cf8faf4:c1c76801:3a4efd95:f021908b
Events : 16609
Number Major Minor RaidDevice State
- 0 0 0 removed
1 8 21 1 active sync /dev/sdb5
|
1
|
mount /dev/vg1/volume_1 /data
|
此时在 Ubuntu 系统 /data
目录下,已经可以访问 Btrfs 磁盘分区的数据。
5. MacOS 上挂载 Ubuntu 目录访问文件
由于在 Ubuntu 中访问 Btrfs 磁盘分区的数据,不够方便,因此这里将 PD Ubuntu 中的目录挂载到 MacOS 系统中。
1
|
brew install macfuse sshfs-mac curlftpfs-mac
|
- 将 Ubuntu 系统的数据目录挂载到 MacOS 中
1
|
sshfs [email protected]:/data /Users/shaowenchen/Data
|
- 在 MacOS 上查看 Btrfs 磁盘分区的数据
6. 参考
- https://kb.synology.com/en-global/DSM/tutorial/How_can_I_recover_data_from_my_DiskStation_using_a_PC