I'm booting my Z83 Mini PC from an external USB drive which has FreeBSD 12.0-RELEASE installed and it boots OK, but I would like to have access to the Windows partitions on the system and I'm trying to figure out the fstab entries to accommodate this.
Here is what I have so far:-
That works for partition 3, and I think I can mount the efi partition using mount -t msdosfs, although not sure what the fstab entry should be.
How do I tell what filesystems are used on P2 and P4?
root@Z83:~ # gpart show mmcsd0
:-
Code:
=> 34 60620733 mmcsd0 GPT (29G)
34 2014 - free - (1.0M)
2048 204800 1 efi (100M)
206848 262144 2 ms-reserved (128M)
468992 58542080 3 ms-basic-data (28G)
59011072 1607680 4 ms-recovery (785M)
60618752 2015 - free - (1.0M)
cat /etc/fstab
Code:
# Device Mountpoint FStype Options Dump Pass#
/dev/da1p2 none swap sw 0 0
/dev/mmcsd0p3 /mnt/Z83/basic-data ntfs mountprog=/usr/local/bin/ntfs-3g,late,failok,ro 0 0
That works for partition 3, and I think I can mount the efi partition using mount -t msdosfs, although not sure what the fstab entry should be.
How do I tell what filesystems are used on P2 and P4?