What I have ufs or zfs?

Code:
gpart show
=>        34  1953525101  ada0  GPT  (932G)
          34        1024     1  freebsd-boot  (512K)
        1058  1946156032     2  freebsd-ufs  (928G)
  1946157090     7368044     3  freebsd-swap  (3.5G)
  1953525134           1        - free -  (512B)

=>        34  1953525101  ada1  GPT  (932G)
          34        1024     1  freebsd-boot  (512K)
        1058     4194304     2  freebsd-swap  (2.0G)
     4195362  1949329773     3  freebsd-zfs  (930G)

=>        34  1953525101  diskid/DISK-JPW9K0N20ULR4E  GPT  (932G)
          34        1024                           1  freebsd-boot  (512K)
        1058     4194304                           2  freebsd-swap  (2.0G)
     4195362  1949329773                           3  freebsd-zfs  (930G)
 
Last edited by a moderator:
Evidently, you have both. What you are actually using is another question. The mount command can give a better idea of what is being used.
 
Code:
$ sudo mount -p
Password:
/dev/ada0p2        /            ufs    rw        1 1
devfs            /dev            devfs    rw        0 0
fdescfs            /dev/fd            fdescfs    rw        0 0
linprocfs        /usr/compat/linux/proc    linprocfs    rw
 
that implies you have partitions of freebsd-zfs type but nothing has ever created a zpool or zfs dataset on those partitions OR the zfs subsystem has not been enabled.

Check if the zfs module is loaded
kldstat | grep zfs

Check if zfs is enabled:
grep zfs /etc/rc.conf
grep zfs /boot/loader.conf
 
Or you might have moved ada1 from another machine where you had it as a bootable ZFS drive and have put it in machine that already has a drive, ada0, that is UFS?
 
Back
Top