[gentoo-user] Creating loop devices

2006-10-30 Thread Alan McKinnon
Hi all, I seem to be missing my loop devices in /dev... And I don't find any docs on the current method to do this. I imagine it's done with udev rules - anyone have working rules for this that they'd be willing to share? alan -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] Creating loop devices

2006-10-30 Thread F.J.Zhao
Why not to use mknod? mknod b /dev/loop0 7 0 mknod b /dev/loop1 7 1 mknod b /dev/loop2 7 2 ... chgrp disk /dev/loop* 2006/10/30, Alan McKinnon [EMAIL PROTECTED]: Hi all, I seem to be missing my loop devices in /dev... And I don't find any docs on the current method to do this. I imagine it's

Re: [gentoo-user] Creating loop devices

2006-10-30 Thread Alan McKinnon
On Monday 30 October 2006 15:05, F.J.Zhao wrote: Why not to use mknod? mknod b /dev/loop0 7 0 mknod b /dev/loop1 7 1 mknod b /dev/loop2 7 2 ... chgrp disk /dev/loop* Because this is a udev only machine and I want udev to create the nodes. If I have to, I'll put the commands in a script to