nfsroot.txt 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. Mounting the root filesystem via NFS (nfsroot)
  2. ===============================================
  3. Written 1996 by Gero Kuhlmann <gero@gkminix.han.de>
  4. Updated 1997 by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  5. Updated 2006 by Nico Schottelius <nico-kernel-nfsroot@schottelius.org>
  6. Updated 2006 by Horms <horms@verge.net.au>
  7. In order to use a diskless system, such as an X-terminal or printer server
  8. for example, it is necessary for the root filesystem to be present on a
  9. non-disk device. This may be an initramfs (see Documentation/filesystems/
  10. ramfs-rootfs-initramfs.txt), a ramdisk (see Documentation/initrd.txt) or a
  11. filesystem mounted via NFS. The following text describes on how to use NFS
  12. for the root filesystem. For the rest of this text 'client' means the
  13. diskless system, and 'server' means the NFS server.
  14. 1.) Enabling nfsroot capabilities
  15. -----------------------------
  16. In order to use nfsroot, NFS client support needs to be selected as
  17. built-in during configuration. Once this has been selected, the nfsroot
  18. option will become available, which should also be selected.
  19. In the networking options, kernel level autoconfiguration can be selected,
  20. along with the types of autoconfiguration to support. Selecting all of
  21. DHCP, BOOTP and RARP is safe.
  22. 2.) Kernel command line
  23. -------------------
  24. When the kernel has been loaded by a boot loader (see below) it needs to be
  25. told what root fs device to use. And in the case of nfsroot, where to find
  26. both the server and the name of the directory on the server to mount as root.
  27. This can be established using the following kernel command line parameters:
  28. root=/dev/nfs
  29. This is necessary to enable the pseudo-NFS-device. Note that it's not a
  30. real device but just a synonym to tell the kernel to use NFS instead of
  31. a real device.
  32. nfsroot=[<server-ip>:]<root-dir>[,<nfs-options>]
  33. If the `nfsroot' parameter is NOT given on the command line,
  34. the default "/tftpboot/%s" will be used.
  35. <server-ip> Specifies the IP address of the NFS server.
  36. The default address is determined by the `ip' parameter
  37. (see below). This parameter allows the use of different
  38. servers for IP autoconfiguration and NFS.
  39. <root-dir> Name of the directory on the server to mount as root.
  40. If there is a "%s" token in the string, it will be
  41. replaced by the ASCII-representation of the client's
  42. IP address.
  43. <nfs-options> Standard NFS options. All options are separated by commas.
  44. The following defaults are used:
  45. port = as given by server portmap daemon
  46. rsize = 4096
  47. wsize = 4096
  48. timeo = 7
  49. retrans = 3
  50. acregmin = 3
  51. acregmax = 60
  52. acdirmin = 30
  53. acdirmax = 60
  54. flags = hard, nointr, noposix, cto, ac
  55. ip=<client-ip>:<server-ip>:<gw-ip>:<netmask>:<hostname>:<device>:<autoconf>
  56. This parameter tells the kernel how to configure IP addresses of devices
  57. and also how to set up the IP routing table. It was originally called
  58. `nfsaddrs', but now the boot-time IP configuration works independently of
  59. NFS, so it was renamed to `ip' and the old name remained as an alias for
  60. compatibility reasons.
  61. If this parameter is missing from the kernel command line, all fields are
  62. assumed to be empty, and the defaults mentioned below apply. In general
  63. this means that the kernel tries to configure everything using
  64. autoconfiguration.
  65. The <autoconf> parameter can appear alone as the value to the `ip'
  66. parameter (without all the ':' characters before). If the value is
  67. "ip=off" or "ip=none", no autoconfiguration will take place, otherwise
  68. autoconfiguration will take place. The most common way to use this
  69. is "ip=dhcp".
  70. <client-ip> IP address of the client.
  71. Default: Determined using autoconfiguration.
  72. <server-ip> IP address of the NFS server. If RARP is used to determine
  73. the client address and this parameter is NOT empty only
  74. replies from the specified server are accepted.
  75. Only required for for NFS root. That is autoconfiguration
  76. will not be triggered if it is missing and NFS root is not
  77. in operation.
  78. Default: Determined using autoconfiguration.
  79. The address of the autoconfiguration server is used.
  80. <gw-ip> IP address of a gateway if the server is on a different subnet.
  81. Default: Determined using autoconfiguration.
  82. <netmask> Netmask for local network interface. If unspecified
  83. the netmask is derived from the client IP address assuming
  84. classful addressing.
  85. Default: Determined using autoconfiguration.
  86. <hostname> Name of the client. May be supplied by autoconfiguration,
  87. but its absence will not trigger autoconfiguration.
  88. Default: Client IP address is used in ASCII notation.
  89. <device> Name of network device to use.
  90. Default: If the host only has one device, it is used.
  91. Otherwise the device is determined using
  92. autoconfiguration. This is done by sending
  93. autoconfiguration requests out of all devices,
  94. and using the device that received the first reply.
  95. <autoconf> Method to use for autoconfiguration. In the case of options
  96. which specify multiple autoconfiguration protocols,
  97. requests are sent using all protocols, and the first one
  98. to reply is used.
  99. Only autoconfiguration protocols that have been compiled
  100. into the kernel will be used, regardless of the value of
  101. this option.
  102. off or none: don't use autoconfiguration
  103. (do static IP assignment instead)
  104. on or any: use any protocol available in the kernel
  105. (default)
  106. dhcp: use DHCP
  107. bootp: use BOOTP
  108. rarp: use RARP
  109. both: use both BOOTP and RARP but not DHCP
  110. (old option kept for backwards compatibility)
  111. Default: any
  112. 3.) Boot Loader
  113. ----------
  114. To get the kernel into memory different approaches can be used.
  115. They depend on various facilities being available:
  116. 3.1) Booting from a floppy using syslinux
  117. When building kernels, an easy way to create a boot floppy that uses
  118. syslinux is to use the zdisk or bzdisk make targets which use zimage
  119. and bzimage images respectively. Both targets accept the
  120. FDARGS parameter which can be used to set the kernel command line.
  121. e.g.
  122. make bzdisk FDARGS="root=/dev/nfs"
  123. Note that the user running this command will need to have
  124. access to the floppy drive device, /dev/fd0
  125. For more information on syslinux, including how to create bootdisks
  126. for prebuilt kernels, see http://syslinux.zytor.com/
  127. N.B: Previously it was possible to write a kernel directly to
  128. a floppy using dd, configure the boot device using rdev, and
  129. boot using the resulting floppy. Linux no longer supports this
  130. method of booting.
  131. 3.2) Booting from a cdrom using isolinux
  132. When building kernels, an easy way to create a bootable cdrom that
  133. uses isolinux is to use the isoimage target which uses a bzimage
  134. image. Like zdisk and bzdisk, this target accepts the FDARGS
  135. parameter which can be used to set the kernel command line.
  136. e.g.
  137. make isoimage FDARGS="root=/dev/nfs"
  138. The resulting iso image will be arch/<ARCH>/boot/image.iso
  139. This can be written to a cdrom using a variety of tools including
  140. cdrecord.
  141. e.g.
  142. cdrecord dev=ATAPI:1,0,0 arch/i386/boot/image.iso
  143. For more information on isolinux, including how to create bootdisks
  144. for prebuilt kernels, see http://syslinux.zytor.com/
  145. 3.2) Using LILO
  146. When using LILO all the necessary command line parameters may be
  147. specified using the 'append=' directive in the LILO configuration
  148. file.
  149. However, to use the 'root=' directive you also need to create
  150. a dummy root device, which may be removed after LILO is run.
  151. mknod /dev/boot255 c 0 255
  152. For information on configuring LILO, please refer to its documentation.
  153. 3.3) Using GRUB
  154. When using GRUB, kernel parameter are simply appended after the kernel
  155. specification: kernel <kernel> <parameters>
  156. 3.4) Using loadlin
  157. loadlin may be used to boot Linux from a DOS command prompt without
  158. requiring a local hard disk to mount as root. This has not been
  159. thoroughly tested by the authors of this document, but in general
  160. it should be possible configure the kernel command line similarly
  161. to the configuration of LILO.
  162. Please refer to the loadlin documentation for further information.
  163. 3.5) Using a boot ROM
  164. This is probably the most elegant way of booting a diskless client.
  165. With a boot ROM the kernel is loaded using the TFTP protocol. The
  166. authors of this document are not aware of any no commercial boot
  167. ROMs that support booting Linux over the network. However, there
  168. are two free implementations of a boot ROM, netboot-nfs and
  169. etherboot, both of which are available on sunsite.unc.edu, and both
  170. of which contain everything you need to boot a diskless Linux client.
  171. 3.6) Using pxelinux
  172. Pxelinux may be used to boot linux using the PXE boot loader
  173. which is present on many modern network cards.
  174. When using pxelinux, the kernel image is specified using
  175. "kernel <relative-path-below /tftpboot>". The nfsroot parameters
  176. are passed to the kernel by adding them to the "append" line.
  177. It is common to use serial console in conjunction with pxeliunx,
  178. see Documentation/serial-console.txt for more information.
  179. For more information on isolinux, including how to create bootdisks
  180. for prebuilt kernels, see http://syslinux.zytor.com/
  181. 4.) Credits
  182. -------
  183. The nfsroot code in the kernel and the RARP support have been written
  184. by Gero Kuhlmann <gero@gkminix.han.de>.
  185. The rest of the IP layer autoconfiguration code has been written
  186. by Martin Mares <mj@atrey.karlin.mff.cuni.cz>.
  187. In order to write the initial version of nfsroot I would like to thank
  188. Jens-Uwe Mager <jum@anubis.han.de> for his help.