Hello FreeBSD community,
Next week I will be building my server, which will run FreeBSD (I come from a Linux background). So I was doing some testing in a VM with FreeBSD. So my server will have 4 harddrives which will be setup in a striped mirror (raid10). So I tried to install FreeBSD on 4 virtual disks each 10GB.
The installer has not an option to create a striped mirror only mirrors. I went to the shell and typed the following commands:
Thank you for your time!
Next week I will be building my server, which will run FreeBSD (I come from a Linux background). So I was doing some testing in a VM with FreeBSD. So my server will have 4 harddrives which will be setup in a striped mirror (raid10). So I tried to install FreeBSD on 4 virtual disks each 10GB.
The installer has not an option to create a striped mirror only mirrors. I went to the shell and typed the following commands:
Code:
gpart create -s gpt ada0
gpart create -s gpt ada1
gpart create -s gpt ada2
gpart create -s gpt ada3
zpool create zroot mirror /dev/ada0 /dev/ada1 mirror /dev/ada2 /dev/ada3
zpool status
gives no warnings and shows to mirrors in zroot. So my question is how do I populate /tmp/bsdinstall_etc/fstab and mount it under /mnt? Because my zpool isn't showing up in /dev/. Handbook source: https://www.freebsd.org/doc/handbook/bsdinstall-partitioning.htmlThank you for your time!