Hi,
Trying to get OSv vmdk images (which I assume are ZFS) to mount on OS X,
using Open ZFS (
https://openzfsonosx.org/wiki/Install ).
Using Vdmutil (free util from Paragon) to mount the vmdk file:
# vdmutil attach -verbose -vendor vmdk -nomount osv-base.vmw
Looking for VDM Contoller...
Connecting... OK.
Creating new drive... OK.
New vd id: A4B8BE5ABBF197210A3C4510212A8F6C
Launched helper with pid = 2424, id = A4B8BE5ABBF197210A3C4510212A8F6C
launch res = 0
Running comand... Command callback(0x12345678)
OK.
/dev/disk2
/dev/disk2s2
Closing connection... OK.
bash-4.3# diskutil list
...
/dev/disk2
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *10.7 GB disk2
1: Linux 10.7 GB disk2s2
bash-4.3# zpool import
pool: osv
id: 15769066805321415286
state: ONLINE
status: Some supported features are not enabled on the pool.
action: The pool can be imported using its name or numeric identifier, though
some features will not be available without an explicit
'zpool upgrade'.
config:
osv ONLINE
disk2 ONLINE
bash-4.3# zpool import -R /zfsmount osv
bash-4.3# zpool list
NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
osv 9.94G 18.2M 9.92G - - 0% 1.00x ONLINE /zfsmount
bash-4.3# zfs list osv
NAME USED AVAIL REFER MOUNTPOINT
osv 18.2M 9.76G 297K /zfsmount
So everything looks okay - except the the volume is empty:
bash-4.3# find /zfsmount
/zfsmount
/zfsmount/zfs
Any ideas?
thanks,
-Russ