kernfs.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-kernfs">
  8. <?dbhtml filename="kernfs.html"?>
  9. <title>Preparing Virtual Kernel File Systems</title>
  10. <indexterm zone="ch-system-kernfs">
  11. <primary sortas="e-/dev/">/dev/*</primary>
  12. </indexterm>
  13. <para>Various file systems exported by the kernel are used to communicate to
  14. and from the kernel itself. These file systems are virtual in that no disk
  15. space is used for them. The content of the file systems resides in
  16. memory.</para>
  17. <para>Begin by creating directories onto which the file systems will be
  18. mounted:</para>
  19. <screen><userinput>mkdir -pv $LFS/{dev,proc,sys}</userinput></screen>
  20. <sect2>
  21. <title>Creating Initial Device Nodes</title>
  22. <para>When the kernel boots the system, it requires the presence of a few
  23. device nodes, in particular the <filename
  24. class="devicefile">console</filename> and <filename
  25. class="devicefile">null</filename> devices. The device nodes will be created
  26. on the hard disk so that they are available before <command>udevd</command>
  27. has been started, and additionally when Linux is started with
  28. <parameter>init=/bin/bash</parameter>. Create the devices by running the
  29. following commands:</para>
  30. <screen><userinput>mknod -m 600 $LFS/dev/console c 5 1
  31. mknod -m 666 $LFS/dev/null c 1 3</userinput></screen>
  32. </sect2>
  33. <sect2 id="ch-system-bindmount">
  34. <title>Mounting and Populating /dev</title>
  35. <para>The recommended method of populating the <filename
  36. class="directory">/dev</filename> directory with devices is to mount a
  37. virtual filesystem (such as <systemitem
  38. class="filesystem">tmpfs</systemitem>) on the <filename
  39. class="directory">/dev</filename> directory, and allow the devices to be
  40. created dynamically on that virtual filesystem as they are detected or
  41. accessed. This is generally done during the boot process by Udev. Since
  42. this new system does not yet have Udev and has not yet been booted, it is
  43. necessary to mount and populate <filename
  44. class="directory">/dev</filename> manually. This is accomplished by bind
  45. mounting the host system's <filename class="directory">/dev</filename>
  46. directory. A bind mount is a special type of mount that allows you to
  47. create a mirror of a directory or mount point to some other location. Use
  48. the following command to achieve this:</para>
  49. <screen><userinput>mount -v --bind /dev $LFS/dev</userinput></screen>
  50. </sect2>
  51. <sect2 id="ch-system-kernfsmount">
  52. <title>Mounting Virtual Kernel File Systems</title>
  53. <para>Now mount the remaining virtual kernel filesystems:</para>
  54. <screen><userinput>mount -vt devpts devpts $LFS/dev/pts
  55. mount -vt tmpfs shm $LFS/dev/shm
  56. mount -vt proc proc $LFS/proc
  57. mount -vt sysfs sysfs $LFS/sys</userinput></screen>
  58. </sect2>
  59. </sect1>