You are not logged in.
I have SSD and HDD and dual booted Windows 10 and Arch on SSD. Before this, I had Windows 10 + Linux Mint on HDD. Formatted previous Windows, installed new Windows on SSD and then Arch. Now, Arch doesn't recognize Hard disk partitions.
sudo fdisk -lreturns
Disk /dev/nvme0n1: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk model: CT500P1SSD8
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: gpt
Disk identifier: 4EF518B6-50C8-46C3-8F19-C8FE91FA6F1A
Device Start End Sectors Size Type
/dev/nvme0n1p1 34 32767 32734 16M Microsoft reserved
/dev/nvme0n1p2 32768 341891071 341858304 163G Microsoft basic data
/dev/nvme0n1p3 341891072 976773134 634882063 302.7G Linux filesystem
Disk /dev/sda: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: HGST HTS721010A9
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 2B21729B-367C-4679-8124-ED7409730921
Device Start End Sectors Size Type
/dev/sda1 2048 1085439 1083392 529M Windows recovery environment
/dev/sda2 1085440 1290239 204800 100M EFI System
/dev/sda3 1290240 1292287 2048 1M Microsoft LDM metadata
/dev/sda4 1292288 1323007 30720 15M Microsoft reserved
/dev/sda5 1323008 1735417855 1734094848 826.9G Microsoft LDM data
/dev/sda6 1735417856 1953523711 218105856 104G Linux filesystemMy partitions are in /dev/sda5. I used ldmtool for mounting my partitions.
sudo ldmtool scan /dev/sda5returned
[
"0c9f43d0-ddc1-11eb-aa0a-00e18c420e40"
]sudo ldmtool show diskgroup 0c9f43d0-ddc1-11eb-aa0a-00e18c420e40shows
{
"name" : "DESKTOP-0S6HGK5-Dg0",
"guid" : "0c9f43d0-ddc1-11eb-aa0a-00e18c420e40",
"volumes" : [
"Volume2",
"Volume1"
],
"disks" : [
"Disk1"
]
}sudo ldmtool show volume 0c9f43d0-ddc1-11eb-aa0a-00e18c420e40 Volume1returns
{
"name" : "Volume1",
"guid" : "0c9f44d2-ddc1-11eb-aa0a-00e18c420e40",
"type" : "spanned",
"size" : 1048543232,
"chunk-size" : 0,
"hint" : "D:",
"partitions" : [
"Disk1-01",
"Disk1-03"
]
}and
sudo ldmtool show volume 0c9f43d0-ddc1-11eb-aa0a-00e18c420e40 Volume2returns
{
"name" : "Volume2",
"guid" : "39c06e8e-dd5a-48cd-aecd-bf3ea5e0bc9d",
"type" : "simple",
"size" : 685547520,
"chunk-size" : 0,
"hint" : "E:",
"partitions" : [
"Disk1-02"
]
}Now, when I try to create volume for any of these partitions (using
sudo ldmtool create allor
sudo ldmtool create volume), it gives me the same error
Unable to create volume Volume2 in disk group 0c9f43d0-ddc1-11eb-aa0a-00e18c420e40: ldm_vol_DESKTOP-0S6HGK5-Dg0_Volume2: Stacking NODE_DEL [verify_udev]How do I fix this?
Last edited by aryans (2021-07-11 12:04:39)
Offline
No clue about the error but are you 100% sure you need/want to use Dynamic Disks ?
https://wiki.archlinux.org/title/Dynamic_disks
https://en.wikipedia.org/wiki/Logical_Disk_Manager
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline