makedev-inst.xml 996 B

1234567891011121314151617181920212223242526272829303132
  1. <sect2>
  2. <title>Creating devices</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 -v generic</userinput>
  9. </literallayout></blockquote>
  10. <para>
  11. The <quote>generic</quote> parameter passed to the MAKEDEV script
  12. doesn't create all the devices a user might need, such as audio devices,
  13. hdc, hdd and others. If it seems something is missing MAKEDEV has to be told
  14. to create it. To create hdc replace generic with hdc. A user can also add hdc
  15. to generic, so he would execute <userinput>./MAKEDEV -v generic
  16. hdc</userinput> to create the generic set of devices files, plus the
  17. files he needs to be able to access hdc (and hdc1, hdc2, etc)
  18. </para>
  19. <para>
  20. MAKEDEV will create hda[1-20] and hdb[1-20] and such but he has to keep in mind
  21. that he may not be able to use all of those devices due to kernel
  22. limitations regarding the max. number of partitions.
  23. </para>
  24. </sect2>