Benutzer:PaulRiegel/OpenBSD
Zur Navigation springen
Zur Suche springen
USB-Stick als Startmedium erstellen
Ich kann mich nicht mehr erinnern, welche der beiden () Varianten funktionierte.
USB-Stick als Startmedium erstellen Variante 1
#!/usr/local/bin/bash # ## Calomel.org -- Making a bootable OpenBSD CD ## calomel_make_boot_cd.sh ### vater -- create a bootable USB device # arch="amd64" # my architecture version="5" # released version subversion="4" # released subversion # echo "building the environment" mkdir -p /tmp/OpenBSD/$version.$subversion/$arch cd /tmp/OpenBSD/$version.$subversion/$arch # echo "getting the release files" ### vb #wget --passive-ftp --reject "*iso" ftp://ftp.spline.de/pub/OpenBSD/$version.$subversion/$arch/* #wget --passive-ftp --reject ftp://ftp.spline.de/pub/OpenBSD/$version.$subversion/$arch/install$version$subversion.iso wget --passive-ftp --reject "*iso" ftp://ftp.spline.de/pub/OpenBSD/$version.$subversion/$arch/* ### ve # ### vb #echo "building the ISO" cd /tmp/OpenBSD #mkisofs -r -no-emul-boot -b $version.$subversion/$arch/cdbr -c boot.catalog -o OpenBSD.iso /tmp/OpenBSD/ mkisofs -r -no-emul-boot -b $version.$subversion/$arch/cdbr -c boot.catalog -o OpenBSD.img /tmp/OpenBSD/ ### ve # ### vb #echo "burning the bootable cd" #nice -18 cdrecord -eject -v speed=32 dev=/dev/rcd0c:0,0,0 -data -pad /tmp/OpenBSD/OpenBSD.iso echo "creating the bootable usb" dd if=/tmp/OpenBSD/OpenBSD.img of=/dev/sdf bs=256k ### ve # echo "DONE." #