You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.xhtml 3.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <blockquote>
  2. <h2 class="c6">About EtherBoot</h2>
  3. <p class="c7">Etherboot is a software package for creating ROM
  4. images that can download code over an Ethernet network to be
  5. executed on an x86 computer. Many network adapters have a socket
  6. where a ROM chip can be installed. Etherboot is code that can be
  7. put in such a ROM. Etherboot is normally used for for booting PCs
  8. diskless. This is useful in various situations, for example:</p>
  9. <ul class="c11">
  10. <li>An X-terminal.</li>
  11. <li>Clusters of compute servers.</li>
  12. <li>Routers.</li>
  13. <li>Various kinds of remote servers, e.g. a tape drive server that
  14. can be accessed with the RMT protocol.</li>
  15. <li>Machines doing tasks in environments unfriendly to disks.</li>
  16. <li>A user platform where remote partitions are mounted over the
  17. network and you are willing to accept the lower speed compared to
  18. disk.</li>
  19. <li>Maintaining software for a cluster of equally configured
  20. workstations centrally.</li>
  21. </ul>
  22. <p class="c7">Etherboot can boot computers faster than from a disk
  23. because there are no delays in spinning up disks, etc. A moment's
  24. calculation will show that even with a 10Mbit Ethernet, sending a
  25. 500kB kernel will take only a couple of seconds typically. With
  26. 100Mbit Ethernet it gets even better.</p>
  27. <p class="c7">Compared to booting from solid-state devices, e.g.
  28. Flash disks, Etherboot has the advantage of centralising software
  29. adminstration, the tradeoff being the dependence on a server. This
  30. can be partly alleviated by providing redundant servers.</p>
  31. <p class="c7">Etherboot can work with RAM disks, NFS filesystems,
  32. or even local disks, if desired. It's a component technology and
  33. can be combined with other technologies to do things the way you
  34. want.</p>
  35. <p class="c7">Etherboot is usually used to load Linux, FreeBSD or
  36. DOS. However the protocol and boot file formats are general, so
  37. there is no reason why it could not be used to load arbitrary
  38. images to a PC, including other OSes.</p>
  39. <p class="c7">Etherboot is Open Source under the GNU General Public
  40. License Version 2 (GPL2).</p>
  41. <p class="c7">The components needed by Etherboot are</p>
  42. <ul class="c11">
  43. <li>A bootstrap loader, usually in an EPROM on a network card, or
  44. installed in the flash BIOS, but could be put anywhere in the
  45. address space the BIOS probes in. For testing this could be put on
  46. a floppy disk or a hard disk partition. Some configurations may
  47. even be always run from a floppy disk (e.g. temporary testing
  48. setups or pedagogic uses).</li>
  49. <li>A DHCP or bootp server, for returning an IP address and other
  50. information when sent a MAC (Ethernet card) address.</li>
  51. <li>A tftp server, for sending the kernel images and other files
  52. required in the boot process. Alternatively, Etherboot can boot
  53. from an NFS mount.</li>
  54. <li>A Linux or FreeBSD kernel.</li>
  55. <li>Optionally, a NFS server, for providing the disk partitions
  56. that will be mounted if Linux or FreeBSD is being booted.</li>
  57. <li>Optionally, a RAM disk contained in the loaded image. This can
  58. be the initial RAM disk if desired.</li>
  59. <li>Software tools for building the download image, and tools for
  60. debugging.</li>
  61. </ul>
  62. </blockquote>