I need to obtain a single file from a drive that was previously in an PVE (Proxmox 6.2). It was an ZFS Mirror of the OS drive (partitioned per Proxmox installer).
Since both the existing ZFS-backed PVE I am on, and the old mirror'd drive, use the same rpool name, I had to use the ID of the pool, which seemed to work.
NOTE: I'm confused how zpool_rschool/ROOT/pve-1 can be mounted on /, when rpool/ROOT/pve-1 already is?
When trying to transverse the that mountmount, I get pretty much nothing:
I'm new to ZFS so I am unsure how to mount and reach the data. Maybe I'm missing a step?
Since both the existing ZFS-backed PVE I am on, and the old mirror'd drive, use the same rpool name, I had to use the ID of the pool, which seemed to work.
Code:
root@pve01:~# zfs list
NAME USED AVAIL REFER MOUNTPOINT
rpool 1.32G 214G 104K /rpool
rpool/ROOT 1.32G 214G 96K /rpool/ROOT
rpool/ROOT/pve-1 1.32G 214G 1.32G /
rpool/data 96K 214G 96K /rpool/data
zpool_rschool 3.17G 86.4G 104K /zpool_rschool
zpool_rschool/ROOT 1.80G 86.4G 96K /zpool_rschool/ROOT
zpool_rschool/ROOT/pve-1 1.80G 86.4G 1.80G /
zpool_rschool/data 1.36G 86.4G 96K /zpool_rschool/data
zpool_rschool/data/vm-100-disk-0 1.36G 86.4G 1.36G -
zpool_rschool/data/vm-100-disk-1 88K 86.4G 88K -
NOTE: I'm confused how zpool_rschool/ROOT/pve-1 can be mounted on /, when rpool/ROOT/pve-1 already is?
When trying to transverse the that mountmount, I get pretty much nothing:
Code:
# tree /zpool_rschool/
/zpool_rschool/
├── ROOT
│ └── pve-1
└── data
I'm new to ZFS so I am unsure how to mount and reach the data. Maybe I'm missing a step?