Remote installation of FreeBSD: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
: here <code>/dev/sda</code> is the boot drive. | : here <code>/dev/sda</code> is the boot drive. | ||
: Reboot | : Reboot | ||
< | * <code>mkdir /mnt/dist</code> | ||
mkdir /mnt/dist | * <code>mount /dev/ada0p3 /mnt/dist</code> | ||
mount /dev/ada0p3 /mnt/dist | * <code>mkdir /usr/freebsd-dist</code> | ||
mkdir /usr/freebsd-dist | * <code>cp /mnt/dist/<version>/*.txz /usr/freebsd-dist/</code> | ||
cp /mnt/dist/<version>/*.txz /usr/freebsd-dist/ | * <code>umount /mnt/dist</code> | ||
umount /mnt/dist | * <code>bsdinstall</code> | ||
</ | |||
[[Category: FreeBSD]] | [[Category: FreeBSD]] | ||
[[Category: Hardware]] | [[Category: Hardware]] | ||
Revision as of 20:48, 17 November 2024
- Download the special edition mfsBSD USB memstick image
https://mfsbsd.vx.sk/files/images/14/amd64/mfsbsd-se-<version>-amd64.img
dd if=mfsbsd-se-<version>-amd64.img of=/dev/sda bs=1M
- here
/dev/sdais the boot drive. - Reboot
mkdir /mnt/distmount /dev/ada0p3 /mnt/distmkdir /usr/freebsd-distcp /mnt/dist/<version>/*.txz /usr/freebsd-dist/umount /mnt/distbsdinstall