diff options
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/fstab.xml | 20 | ||||
-rw-r--r-- | chapter08/kernel.xml | 11 |
2 files changed, 20 insertions, 11 deletions
diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml index 7972886c0..e859851e9 100644 --- a/chapter08/fstab.xml +++ b/chapter08/fstab.xml @@ -22,15 +22,17 @@ <screen><userinput>cat > /etc/fstab << "EOF" <literal># Begin /etc/fstab -# file system mount-point type options dump fsck -# order - -/dev/<replaceable><xxx></replaceable> / <replaceable><fff></replaceable> defaults 1 1 -/dev/<replaceable><yyy></replaceable> swap swap pri=1 0 0 -proc /proc proc defaults 0 0 -sysfs /sys sysfs defaults 0 0 -devpts /dev/pts devpts gid=4,mode=620 0 0 -tmpfs /run tmpfs defaults 0 0 +# file system mount-point type options dump fsck +# order + +/dev/<replaceable><xxx></replaceable> / <replaceable><fff></replaceable> defaults 1 1 +/dev/<replaceable><yyy></replaceable> swap swap pri=1 0 0 +proc /proc proc nosuid,noexec,nodev 0 0 +sysfs /sys sysfs nosuid,noexec,nodev 0 0 +devpts /dev/pts devpts gid=4,mode=620 0 0 +tmpfs /run tmpfs defaults 0 0 +devtmpfs /dev devtmpfs mode=0755,nosuid 0 0 + # End /etc/fstab</literal> EOF</userinput></screen> diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 7c31806c3..a448f88e6 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -58,10 +58,17 @@ <para>Configure the kernel via a menu-driven interface. For general information on kernel configuration see <ulink - url="&hints-root;kernel-configuration.txt"/>. BLFS has some information + url="&hints-root;kernel-configuration.txt"/>. BLFS has some information regarding particular kernel configuration requirements of packages outside of LFS at <ulink - url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>:</para> + url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>. </para> + + <note><para>Due to recent changes in <application>udev</application>, be sure to + select:</para> + + <screen role="nodump">Device Drivers ---> + Generic Driver Options ---> + Maintain a devtmpfs filesystem to mount at /dev</screen></note> <screen role="nodump"><userinput>make LANG=<replaceable><host_LANG_value></replaceable> LC_ALL= menuconfig</userinput></screen> |