This one is handy from cron
wget --mirror http://www.example.com/
Tags: wget
Posted by Hans-Henry Jakobsen
Download the Fedora disk image from a mirror:
# wget http://mirrors.dotsrc.org/fedora/5/i386/os/images/diskboot.img
Make sure that the USB device is unmounted:
# sudo umount /dev/sda1
Copy the img to the usb key device:
# dd if=diskboot.img of=/dev/sda
Reboot and then select a network based install by typing:
linux askmethod
Tags: core 5, dd, Fedora, sudo, wget
Posted by Hans-Henry Jakobsen