Other links to read, WIKI entry Ext2fs https://wiki.freebsd.org/Ext2fs
FreeBSD Forums, https://forums.freebsd.org/threads/howto-mounting-ext4-partitions-by-using-ext2fs-rw-access.84964/
https://man.freebsd.org/cgi/man.cgi?query=ext2fs&sektion=5&format=html Manual Pages
EXAMPLES
To mount a ext2fs volume located on /dev/ada1s1:
mount -t ext2fs /dev/ada1s1 /mnt
first time only, create a mounting point directory to use:
mkdir -p /mnt/linux
alternative command:
mount_ext2fs /dev/ada1s1 /mnt/linux
or to mount an ext2 or ext3 or ext4 partition /dev/da0p3
mount_ext2fs /dev/da0p3 /mnt/linux
google search "freebsd mount ext2"
mount to see what parttions are mounted
df -h to see the disk free space on all mounted partitions. Another method to identify mounted partitions .
umount /mnt/linux or umount /dev/ada1s1 to unmount a partition from the file system.
su root become the super user login id 'root' administrator. Use directory names that are meaningful and useful to your workflow needs.
mkdir /home/linux01
mkdir /home/linux02
mkdir /mnt/fred01
mkdir /mnt/da1p2
mkdir /mnt/msdos
ls -l /mnt
ls -l /home
wish you Merry Christmas and the best workflow on GhostBSD! I am glad to help you out.
what partitions are available?
gpart status
gpart show -lp
camcontrol devlist
geom disk list
mount_ext2fs /dev/da0p1 /home/linux01
mount_ext2fs /dev/da0p3 /home/linux02