Bug 125249
Summary: | pls put back installation from floppy disk | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Bugzkilla <linuxveteran> |
Component: | anaconda | Assignee: | Jeremy Katz <katzj> |
Status: | CLOSED WONTFIX | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 2 | Keywords: | FutureFeature |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i686 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Enhancement | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2004-06-04 06:10:07 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Bugzkilla
2004-06-04 02:57:31 UTC
Unfortunately, this isn't doable due to the increase in size with the 2.6 kernel. For systems without a floppy drive, other available options include a) Using diskboot.img on a USB pendrive or similar b) PXE booting c) Booting the kernel and initrd from an already installed linux system There is a relatively simple solution which is adopted in Debian. a) minimal floppy installer with ONLY hdd drivers, possibly based on very old kernel. b) disk image split over floppies 1) boot from a 2) a automatically demands b and copies to hard disk 3) boot from hard disk. Thus the 2.6 kernel doesn't have to be written to disk. There should be other variations on the "just enough to get it written to disk", probably even ones which could be written in a short number of instructions e.g. - split the installation image across a few disks - take a rescue floppy and boot from it - make a free partition - copy the disks to the hdd - insert floppy 1 dd if=/dev/fd0 of=/dev/hdaX - insert floppy 2 dd if=/dev/fd0 of=/dev/hdaX bs=1024 skip=1440 - insert floppy 3 dd if=/dev/fd0 of=/dev/hdaX bs=1024 skip=2880 .... - rinse and repeat - insert boot floppy with GRUB. - boot into GRUB - use grub to boot from hard disk. Never tested and no idea if this would work with the current images, but it's worth a go. |