<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic mknod question ... in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318620#M12932</link>
    <description>using this:  " mknod -m 666 /dev/dsp4 c 14 67", question is the minor number any random number.  How would you know which minor no to assigned to a device?   Is there a command to query the minor number of a device?  Thanks.</description>
    <pubDate>Tue, 29 Jun 2004 21:56:57 GMT</pubDate>
    <dc:creator>K.C. Chan</dc:creator>
    <dc:date>2004-06-29T21:56:57Z</dc:date>
    <item>
      <title>mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318620#M12932</link>
      <description>using this:  " mknod -m 666 /dev/dsp4 c 14 67", question is the minor number any random number.  How would you know which minor no to assigned to a device?   Is there a command to query the minor number of a device?  Thanks.</description>
      <pubDate>Tue, 29 Jun 2004 21:56:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318620#M12932</guid>
      <dc:creator>K.C. Chan</dc:creator>
      <dc:date>2004-06-29T21:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318621#M12933</link>
      <description>The minor number to a given device is very particular.&lt;BR /&gt;&lt;BR /&gt;It says which device of a given type to access.&lt;BR /&gt;&lt;BR /&gt;Different major's treat minor's differently however.&lt;BR /&gt;&lt;BR /&gt;By the looks of it, you're trying to create an audio device, of which are in the 14 major.  The minor's however are all over the place.  Where'd you get the '67' from?  Or was it just a guess?&lt;BR /&gt;&lt;BR /&gt;The first one is 19, the 2nd one would be 25 (one more than the 'midi' devices).&lt;BR /&gt;&lt;BR /&gt;How many sound cards do you have?</description>
      <pubDate>Tue, 29 Jun 2004 22:48:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318621#M12933</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-06-29T22:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318622#M12934</link>
      <description>err typo.  'dsp2' would be 35, 16 more than the previous dsp device.</description>
      <pubDate>Tue, 29 Jun 2004 22:49:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318622#M12934</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-06-29T22:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318623#M12935</link>
      <description>First -under /dev directory you have a nice utility called MAKEDEV (capital letters),&lt;BR /&gt;so executing&lt;BR /&gt;/dev/MAKEDEV devicename will create that device without specifying it's minor/major numbers.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Second-you have this file:&lt;BR /&gt;/usr/share/doc/MAKEDEV-'version'/devices.txt&lt;BR /&gt;&lt;BR /&gt;You have minor/major numbers examples in it.</description>
      <pubDate>Wed, 30 Jun 2004 00:59:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318623#M12935</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2004-06-30T00:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318624#M12936</link>
      <description>I have 10 sound cards. Any idea on the minor no?</description>
      <pubDate>Wed, 30 Jun 2004 07:33:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318624#M12936</guid>
      <dc:creator>K.C. Chan</dc:creator>
      <dc:date>2004-06-30T07:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318625#M12937</link>
      <description>I am working on alsa-1.x driver. loading 10 of these on a server.  I am only able to get 8 of this going; I need to get the next two to work.&lt;BR /&gt;However, I get this when listing device, major no. changes from 116 to 117 on the 8th and 9 device:&lt;BR /&gt;&lt;BR /&gt;crw-rw-rw-    1 root     root     116,   0 Jun 30 09:38 /dev/aloadC0&lt;BR /&gt;crw-rw-rw-    1 root     root     116,  32 Jun 30 09:38 /dev/aloadC1&lt;BR /&gt;crw-rw-rw-    1 root     root     116,  64 Jun 30 09:38 /dev/aloadC2&lt;BR /&gt;crw-rw-rw-    1 root     root     116,  96 Jun 30 09:38 /dev/aloadC3&lt;BR /&gt;crw-rw-rw-    1 root     root     116, 128 Jun 30 09:38 /dev/aloadC4&lt;BR /&gt;crw-rw-rw-    1 root     root     116, 160 Jun 30 09:38 /dev/aloadC5&lt;BR /&gt;crw-rw-rw-    1 root     root     116, 192 Jun 30 09:38 /dev/aloadC6&lt;BR /&gt;crw-rw-rw-    1 root     root     116, 224 Jun 30 09:38 /dev/aloadC7&lt;BR /&gt;crw-rw-rw-    1 root     root     117,   0 Jun 30 09:38 /dev/aloadC8&lt;BR /&gt;crw-rw-rw-    1 root     root     117,  32 Jun 30 09:38 /dev/aloadC9&lt;BR /&gt;crw-rw-rw-    1 root     root     116,   1 Jun 30 09:38 /dev/aloadSEQ&lt;BR /&gt;&lt;BR /&gt;It looks like it is an increment of 32, will it work if I make it an increment of 16. Who decides it's an increment of 32?  Thanks.</description>
      <pubDate>Wed, 30 Jun 2004 08:44:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318625#M12937</guid>
      <dc:creator>K.C. Chan</dc:creator>
      <dc:date>2004-06-30T08:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: mknod question ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318626#M12938</link>
      <description>alsa decides on the increment.&lt;BR /&gt;&lt;BR /&gt;I'm thinking this is a question for the alsa mailing lists.&lt;BR /&gt;&lt;BR /&gt;I'm afraid I've got no experience with that many sound devices in the one machine, and very limited with the alsa drivers in general.</description>
      <pubDate>Wed, 30 Jun 2004 18:21:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mknod-question/m-p/3318626#M12938</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-06-30T18:21:51Z</dc:date>
    </item>
  </channel>
</rss>

