makedev-inst.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <sect2>
  2. <title>Installation of MAKEDEV</title>
  3. <para>
  4. Create the device files by running the following commands:
  5. </para>
  6. <blockquote><literallayout>
  7. <userinput>cd /dev &amp;&amp;</userinput>
  8. <userinput>./MAKEDEV-temp -v generic &amp;&amp;</userinput>
  9. <userinput>rm MAKEDEV-temp</userinput>
  10. </literallayout></blockquote>
  11. <para>
  12. The <quote>generic</quote> parameter passed to the MAKEDEV script
  13. doesn't create all the devices you might need, such as audio devices,
  14. hdc, hdd and ohters. If you seem to be missing something tell MAKEDEV to
  15. create it. To create hdc replace generic with hdc. You can also add hdc
  16. to generic, so you would execute <userinput>./MAKEDEV -v generic
  17. hdc</userinput> to create the generic set of devices files, plus the
  18. files you need to be able to access hdc (and hdc1, hdc2, etc)
  19. </para>
  20. <para>
  21. MAKEDEV will create hda[1-20] and hdb[1-20] and such but keep in mind
  22. that you may not be able to use all of those devices due to kernel
  23. limitations regarding the max. number of partitions.
  24. </para>
  25. </sect2>