nfsroot.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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 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. If specified and DHCP is used, the user provided hostname will
  89. be carried in the DHCP request to hopefully update DNS record.
  90. Default: Client IP address is used in ASCII notation.
  91. <device> Name of network device to use.
  92. Default: If the host only has one device, it is used.
  93. Otherwise the device is determined using
  94. autoconfiguration. This is done by sending
  95. autoconfiguration requests out of all devices,
  96. and using the device that received the first reply.
  97. <autoconf> Method to use for autoconfiguration. In the case of options
  98. which specify multiple autoconfiguration protocols,
  99. requests are sent using all protocols, and the first one
  100. to reply is used.
  101. Only autoconfiguration protocols that have been compiled
  102. into the kernel will be used, regardless of the value of
  103. this option.
  104. off or none: don't use autoconfiguration
  105. (do static IP assignment instead)
  106. on or any: use any protocol available in the kernel
  107. (default)
  108. dhcp: use DHCP
  109. bootp: use BOOTP
  110. rarp: use RARP
  111. both: use both BOOTP and RARP but not DHCP
  112. (old option kept for backwards compatibility)
  113. Default: any
  114. nfsrootdebug
  115. This parameter enables debugging messages to appear in the kernel
  116. log at boot time so that administrators can verify that the correct
  117. NFS mount options, server address, and root path are passed to the
  118. NFS client.
  119. rdinit=<executable file>
  120. To specify which file contains the program that starts system
  121. initialization, administrators can use this command line parameter.
  122. The default value of this parameter is "/init". If the specified
  123. file exists and the kernel can execute it, root filesystem related
  124. kernel command line parameters, including `nfsroot=', are ignored.
  125. A description of the process of mounting the root file system can be
  126. found in:
  127. Documentation/early-userspace/README
  128. 3.) Boot Loader
  129. ----------
  130. To get the kernel into memory different approaches can be used.
  131. They depend on various facilities being available:
  132. 3.1) Booting from a floppy using syslinux
  133. When building kernels, an easy way to create a boot floppy that uses
  134. syslinux is to use the zdisk or bzdisk make targets which use zimage
  135. and bzimage images respectively. Both targets accept the
  136. FDARGS parameter which can be used to set the kernel command line.
  137. e.g.
  138. make bzdisk FDARGS="root=/dev/nfs"
  139. Note that the user running this command will need to have
  140. access to the floppy drive device, /dev/fd0
  141. For more information on syslinux, including how to create bootdisks
  142. for prebuilt kernels, see http://syslinux.zytor.com/
  143. N.B: Previously it was possible to write a kernel directly to
  144. a floppy using dd, configure the boot device using rdev, and
  145. boot using the resulting floppy. Linux no longer supports this
  146. method of booting.
  147. 3.2) Booting from a cdrom using isolinux
  148. When building kernels, an easy way to create a bootable cdrom that
  149. uses isolinux is to use the isoimage target which uses a bzimage
  150. image. Like zdisk and bzdisk, this target accepts the FDARGS
  151. parameter which can be used to set the kernel command line.
  152. e.g.
  153. make isoimage FDARGS="root=/dev/nfs"
  154. The resulting iso image will be arch/<ARCH>/boot/image.iso
  155. This can be written to a cdrom using a variety of tools including
  156. cdrecord.
  157. e.g.
  158. cdrecord dev=ATAPI:1,0,0 arch/i386/boot/image.iso
  159. For more information on isolinux, including how to create bootdisks
  160. for prebuilt kernels, see http://syslinux.zytor.com/
  161. 3.2) Using LILO
  162. When using LILO all the necessary command line parameters may be
  163. specified using the 'append=' directive in the LILO configuration
  164. file.
  165. However, to use the 'root=' directive you also need to create
  166. a dummy root device, which may be removed after LILO is run.
  167. mknod /dev/boot255 c 0 255
  168. For information on configuring LILO, please refer to its documentation.
  169. 3.3) Using GRUB
  170. When using GRUB, kernel parameter are simply appended after the kernel
  171. specification: kernel <kernel> <parameters>
  172. 3.4) Using loadlin
  173. loadlin may be used to boot Linux from a DOS command prompt without
  174. requiring a local hard disk to mount as root. This has not been
  175. thoroughly tested by the authors of this document, but in general
  176. it should be possible configure the kernel command line similarly
  177. to the configuration of LILO.
  178. Please refer to the loadlin documentation for further information.
  179. 3.5) Using a boot ROM
  180. This is probably the most elegant way of booting a diskless client.
  181. With a boot ROM the kernel is loaded using the TFTP protocol. The
  182. authors of this document are not aware of any no commercial boot
  183. ROMs that support booting Linux over the network. However, there
  184. are two free implementations of a boot ROM, netboot-nfs and
  185. etherboot, both of which are available on sunsite.unc.edu, and both
  186. of which contain everything you need to boot a diskless Linux client.
  187. 3.6) Using pxelinux
  188. Pxelinux may be used to boot linux using the PXE boot loader
  189. which is present on many modern network cards.
  190. When using pxelinux, the kernel image is specified using
  191. "kernel <relative-path-below /tftpboot>". The nfsroot parameters
  192. are passed to the kernel by adding them to the "append" line.
  193. It is common to use serial console in conjunction with pxeliunx,
  194. see Documentation/serial-console.txt for more information.
  195. For more information on isolinux, including how to create bootdisks
  196. for prebuilt kernels, see http://syslinux.zytor.com/
  197. 4.) Credits
  198. -------
  199. The nfsroot code in the kernel and the RARP support have been written
  200. by Gero Kuhlmann <gero@gkminix.han.de>.
  201. The rest of the IP layer autoconfiguration code has been written
  202. by Martin Mares <mj@atrey.karlin.mff.cuni.cz>.
  203. In order to write the initial version of nfsroot I would like to thank
  204. Jens-Uwe Mager <jum@anubis.han.de> for his help.