Hi,
I'm trying to make an unattended install file for FreeBSD per this tutorial.
https://www.sysadminnotes.ca/worknotes/automated-freebsd-installations.html
One step has the user mount the FreeBSD install ISO with the following command:
sudo mount -t cd9660 /dev/`mdconfig -f FreeBSD-12.1-RELEASE-amd64-disc1.iso` /mnt/iso
I do and receive the following output:
mdconfig: open(/dev/mdctl): Permission denied <-- Note the sudo in the command I executed.
mount_cd9660: /dev: Block device required
I also tried with no luck:
sudo mount_cd9660 /dev/`mdconfig -a -t vnode -o readonly -f FreeBSD-12.1-RELEASE-amd64-disc1.iso` /mnt/iso
What could I be doing wrong? I'm running FreeBSD 12.1 amd64 on a very old PC.
Thanks
I'm trying to make an unattended install file for FreeBSD per this tutorial.
https://www.sysadminnotes.ca/worknotes/automated-freebsd-installations.html
One step has the user mount the FreeBSD install ISO with the following command:
sudo mount -t cd9660 /dev/`mdconfig -f FreeBSD-12.1-RELEASE-amd64-disc1.iso` /mnt/iso
I do and receive the following output:
mdconfig: open(/dev/mdctl): Permission denied <-- Note the sudo in the command I executed.
mount_cd9660: /dev: Block device required
I also tried with no luck:
sudo mount_cd9660 /dev/`mdconfig -a -t vnode -o readonly -f FreeBSD-12.1-RELEASE-amd64-disc1.iso` /mnt/iso
What could I be doing wrong? I'm running FreeBSD 12.1 amd64 on a very old PC.
Thanks