07-21-07 06:12 PM
On 07/21/2007 08:24 AM, carex wrote:
> Hello,
>
> I did try to create the logical partition sda16 but it just failed.
> And I found sda16 (an higher) is not present in /dev
> I just looked in the newsgroups and the only thing I have found is
> I shoud use mknod to create sda16 (man mknod)
> But the mknod manpage is not sufficient for me to use it.
>
> Where could I find more info about the way to create this new device ?
> (dev/sda16)
>
> Thanks.
> carex.
Look at the other sda* devices. Perhaps you want this:
mknod -m 0660 sda16 b 8 16
That creates sda16 as a (b)lock device with major number 8 and minor
number 16 with mode 0660.
I have no idea if this will work. Sda15 is the highest such device node
on my system. Perhaps kernel support for higher-numbered devices does
not exist.
The system I'm currently running on does not have udev enabled, and I'm
tempted to assume the same for your computer, but that might not be true.
If you're running a 2.6.x kernel, and you have udev enabled, if a device
is connected to the computer during bootup, and Linux has a proper
driver for that device, it should appear in /dev automatically.
Under such circumstances, manually creating the device node will
probably not work.
[ Post a follow-up to this message ]
|