Wenn man wie ich eine SSD als reguläres Volume genutzt hat, so hat man mit einem der letzten DSM 7.2 Updates (>7.2-64570 Update 1) leider das Problem bekommen, dass dieses nicht mehr zu mounten ist. Wenn man nun versucht diese Daten zu retten, so gibt es einen Weg: Erstmal via SSH einloggen (jeder Administrator kann sich einloggen). Wenn kein SSH verfügbar oder der Port unbekannt ist, kann man dies in den Einstellungen unter “Terminal” ändern.

Dann das Raid zusammenbauen:

1
mdadm --assemble --scan --verbose

Dann RAID device raussuchen, bei mir war es md3:

1
cat /proc/mdstat

Temporäres Verzeichnis anlegen

1
mkdir /mnt/nvme_recover

Und einen mount versuchen:

1
mount /dev/md3 /mnt/nvme_recover

Wenn dort die folgende Meldung zurückkommt:

1
mount: /mnt/nvme_recover: unknown filesystem type 'LVM2_member'.

So hatte man damals eine Volume Group darüber gelegt (damals hattest du dann pvcreate /dev/md3 ausgeführt), dies kann man sich so ansehen:

1
vgdisplay

Und sieht dann in etwa so aus:

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
  --- Volume group ---
  VG Name               vg1
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               889.75 GiB
  PE Size               4.00 MiB
  Total PE              227775
  Alloc PE / Size       227587 / 889.01 GiB
  Free  PE / Size       188 / 752.00 MiB
  [...]

  --- Volume group ---
  VG Name               vg1000
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  2
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                1
  Open LV               1
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               3.63 TiB
  PE Size               4.00 MiB
  Total PE              952682
  Alloc PE / Size       952682 / 3.63 TiB
  Free  PE / Size       0 / 0
  [...]

Dazu kann man sich die logical volumes angucken:

1
lvdisplay -v vg1
 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
    Using volume group(s) on command line.
  --- Volume group ---
  VG Name               vg1
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               889.75 GiB
  PE Size               4.00 MiB
  Total PE              227775
  Alloc PE / Size       227587 / 889.01 GiB
  Free  PE / Size       188 / 752.00 MiB
  VG UUID               [...]

  --- Logical volume ---
  LV Path                /dev/vg1/syno_vg_reserved_area
  LV Name                syno_vg_reserved_area
  VG Name                vg1
  LV UUID                [...]
  LV Write Access        read/write
  LV Creation host, time ,
  LV Status              NOT available
  LV Size                12.00 MiB
  Current LE             3
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto

  --- Logical volume ---
  LV Path                /dev/vg1/volume_2
  LV Name                volume_2
  VG Name                vg1
  LV UUID                [...]
  LV Write Access        read/write
  LV Creation host, time ,
  LV Status              NOT available
  LV Size                889.00 GiB
  Current LE             227584
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto

  --- Physical volumes ---
  PV Name               /dev/md3
  PV UUID               [...]
  PV Status             allocatable
  Total PE / Free PE    227775 / 188

Nun sieht man unter “LV Status” schon ein “NOT available”. Dieses muss man ändern:

1
vgchange -ay vg1

was in 2 logical volume(s) in volume group "vg1" now active resultiert. Nun kann man via

1
mount /dev/vg1/volume_2 /mnt/nvme_recover

Wieder das Volume mounten und darauf zugreifen.