diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-01 03:47:06 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-01 03:47:06 +0000 |
commit | 0b400add2ba87352e955326bcb931e53864cc2ae (patch) | |
tree | 4521d22df527eeb27caa2968d617d334c4784ce2 /chapter06 | |
parent | 7cf35f73aa595084af67b83cec630b06bf73d18d (diff) |
Textual correction from Bryan K.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3051 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/mountproc.xml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/chapter06/mountproc.xml b/chapter06/mountproc.xml index bef20df46..c9ce922ea 100644 --- a/chapter06/mountproc.xml +++ b/chapter06/mountproc.xml @@ -44,14 +44,13 @@ now the most common way for pseudo terminals (PTYs) to be implemented.</para> <para>The most likely cause is that your host system's kernel was compiled without support for the devpts file system. You can check which file systems your kernel supports by peeking into its internals with a command such as -<userinput>cat /proc/filesystems</userinput>. If for some reason devpts is -listed there but the mount still doesn't work, check instead for a different -file system variety called <emphasis>devfs</emphasis>. If devfs is listed then -we'll be able to work around the problem by mounting the host's devfs file -system on top of the new <filename>/dev</filename> structure which we'll create -later on in the "Creating devices (Makedev)" section. If devfs was not listed, -do not worry because there is yet a third way to get PTYs working inside the -chroot environment. We'll cover this shortly in the aforementioned Makedev +<userinput>cat /proc/filesystems</userinput>. If a file system type named +<emphasis>devfs</emphasis> is listed there, then we'll be able to work around +the problem by mounting the host's devfs file system on top of the new +<filename>/dev</filename> structure which we'll create later on in the +"Creating devices (Makedev)" section. If devfs was not listed, do not worry +because there is yet a third way to get PTYs working inside the chroot +environment. We'll cover this shortly in the aforementioned Makedev section.</para> <para>Remember, if for any reason you stop working on your LFS, and start again |