Installing FreeBSD 9.0 using file systems labels

Hail,

I'd like to install using labels, defining them at install time, but I can't seem to find how to do it.

Is it possible?

Thanks,

none
 
AFAIK, not via the TUI. However, at the partitioning step, you can drop to a shell and:
  • use gpart(8) to partition your drives
  • use newfs(8) to format your partitions
  • label them as needed via either gpart(8), newfs(8), or glabel(8)
  • mount the individual partitions onto (I think) /mnt (read the note at the top of the shell for the exact location)
  • create a /mnt/etc directory
  • configure /mnt/etc/fstab using the labels
  • then exit the shell
Carry on with the install, and it will use your labelled filesystems.
 
Back
Top