I tried to install FB 8.0 Beta3 on my Lenovo S10-2 netbook from a usb stick, but I got the following
I followed the instruction: http://miwi.bsdcrew.de/2009/06/freebsd-80-install-with-a-usb-stick/
and did these:
-------------------------------------------------------------------
Code:
No /boot/loader
FreeBSD/i386 boot
Default: 0:ad(0,a)/boot/kernel/kernel
boot:
No /boot/kernel/kernel
FreeBSD/i386 boot
Default: 0:ad(0,a)/boot/kernel/kernel
boot:_
I followed the instruction: http://miwi.bsdcrew.de/2009/06/freebsd-80-install-with-a-usb-stick/
and did these:
-------------------------------------------------------------------
1: clear stick:
2: make the USB-Stick bootable
3: create an UFS2 Filesystem with GEOM Lable “FreeBSDâ€
4:
mount ISO-Image:
5:
create a fstab:
put the codes in the fstab:
save.
Unplug the USB stick.
-------------------------------------------------------------------
Code:
dd if=/dev/zero of=/dev/da0 bs=1k count=1
2: make the USB-Stick bootable
Code:
bsdlabel -Bw da0 auto
3: create an UFS2 Filesystem with GEOM Lable “FreeBSDâ€
Code:
newfs -L FreeBSD /dev/da0a
Code:
mkdir /mnt/iso
mount ISO-Image:
Code:
mdconfig -a -t vnode -f 8.0-BETA3-i386-disc1.iso -u 0 && mount -r -t cd9660 /dev/md0 /mnt/iso
5:
Code:
mkdir /mnt/usb-stick
Code:
mount /dev/da0a /mnt/usb-stick
Code:
cd /mnt/iso
Code:
cp -r *.* /mnt/usb-stick
create a fstab:
Code:
mkdir /mnt/usb-stick/etc/
Code:
ee /mnt/usb-stick/etc/fstab
put the codes in the fstab:
Code:
/dev/ufs/FreeBSD / ufs ro 0 0
save.
Code:
umount /mnt/usb-stick
Unplug the USB stick.