[bf8c11f] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
| 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
---|
| 4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
| 5 | %general-entities;
|
---|
| 6 | ]>
|
---|
| 7 |
|
---|
| 8 | <sect1 id="ch-chroot-kernfs">
|
---|
| 9 | <?dbhtml filename="kernfs.html"?>
|
---|
| 10 |
|
---|
| 11 | <title>Mounting Virtual Kernel File Systems</title>
|
---|
| 12 |
|
---|
| 13 | <para>From this point on, we will be running all commands as the
|
---|
| 14 | <systemitem class="username">root</systemitem> user. So begin by
|
---|
| 15 | exiting from the <command>su</command> as <systemitem
|
---|
| 16 | class="username">lfs</systemitem>.</para>
|
---|
| 17 |
|
---|
[3680b28] | 18 | <screen role="nodump"><userinput>exit</userinput></screen>
|
---|
[bf8c11f] | 19 |
|
---|
| 20 | <para>Various file systems exported by the kernel are used to communicate
|
---|
| 21 | to and from the kernel itself. These file systems are virtual in that no
|
---|
| 22 | disk space is used for them. The content of the file systems resides in
|
---|
| 23 | memory.</para>
|
---|
| 24 |
|
---|
| 25 | <para>Begin by creating directories onto which the file systems will
|
---|
| 26 | be mounted:</para>
|
---|
| 27 |
|
---|
[dd9906e] | 28 | <screen><userinput>mkdir -pv $LFS/{proc,sys}</userinput></screen>
|
---|
[bf8c11f] | 29 |
|
---|
| 30 | <para>Now mount the file systems:</para>
|
---|
| 31 |
|
---|
[dd9906e] | 32 | <screen><userinput>mount -vt proc proc $LFS/proc
|
---|
[dca40f5] | 33 | mount -vt sysfs sysfs $LFS/sys</userinput></screen>
|
---|
[bf8c11f] | 34 |
|
---|
| 35 | <para>Remember that if for any reason you stop working on the LFS system
|
---|
| 36 | and start again later, it is important to check that these file systems
|
---|
| 37 | are mounted again before entering the chroot environment.</para>
|
---|
| 38 |
|
---|
| 39 | <para>Additional file systems will soon be mounted from within the
|
---|
| 40 | chroot environment. To keep the host up to date, perform a <quote>fake
|
---|
| 41 | mount</quote> for each of these now:</para>
|
---|
| 42 |
|
---|
[dd9906e] | 43 | <screen><userinput>mount -f -vt tmpfs tmpfs $LFS/dev
|
---|
| 44 | mount -f -vt tmpfs tmpfs $LFS/dev/shm
|
---|
| 45 | mount -f -vt devpts -o gid=10,mode=620 devpts $LFS/dev/pts</userinput></screen>
|
---|
[bf8c11f] | 46 |
|
---|
| 47 | </sect1>
|
---|