diff options
author | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-16 22:26:29 +0000 |
---|---|---|
committer | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-16 22:26:29 +0000 |
commit | 987aa009028dc0e036b3f40b70452f2fa9161a0c (patch) | |
tree | 3c4591b43bc85787e1dfb54862c7a4e53eb9b84e /chapter06/makedev-inst.xml | |
parent | ea57e1b0d1a4372b2e310e04c73d4a0dfa3c0c1d (diff) |
Bug 78: MAKEDEV-1.2
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@985 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/makedev-inst.xml')
-rw-r--r-- | chapter06/makedev-inst.xml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/chapter06/makedev-inst.xml b/chapter06/makedev-inst.xml index 3ea236280..a7ac2616c 100644 --- a/chapter06/makedev-inst.xml +++ b/chapter06/makedev-inst.xml @@ -8,10 +8,24 @@ won't create a directory for you to cd into.</para> <para><screen><userinput>cp MAKEDEV-1.1 /dev/MAKEDEV &&</userinput> <userinput>cd /dev &&</userinput> -<userinput>chmod 755 MAKEDEV &&</userinput> -<userinput>./MAKEDEV -v generic</userinput></screen></para> +<userinput>chmod 755 MAKEDEV</userinput></screen></para> -<para>MAKEDEV will create hda[1-20] and hdb[1-20] and such but keep in mind +<para>Now, depending on whether you are going to use devpts or not, you +can run one of two commands:</para> + +<para>If you do not intend to use devpts, run:</para> +<para><userinput>./MAKEDEV -v generic</userinput></para> + +<para>If you do intend to use devpts, then run:</para> +<para><userinput>./MAKEDEV -v generic-nopty</userinput></para> + +<para>Note that if you aren't sure, it's best to use +the <userinput>./MAKEDEV -v generic</userinput> command as this will +ensure you have the devices you need. If you are sure you are going to +use devpts however, the other command makes sure that you don't create a +set of devices which you don't require.</para> + +<para>MAKEDEV will create hda[1-20] to hdh[1-20] and such but keep in mind that you may not be able to use all of those devices due to kernel limitations regarding the max. number of partitions.</para> |