On Thu, Feb 13, 2003 at 02:08:30PM -0700, [EMAIL PROTECTED] wrote the words in effect of: > -su-2.05b# mdconfig -a -t vnode -f filesys > mdconfig: ioctl(/dev/mdctl): No such file or directory > -su-2.05b# ls /dev/md* > /dev/mdctl > -su-2.05b# > > why does that happen? I'm doing everything the handbook says to...
Do you actually have the file, 'filesys'? The argument to -f is meant to be the name of a file used as a backing store. Something like thse might help you: # dd if=/dev/zero of=/tmp/mdstore bs=1m count=50 (50M zero'd file created) # mdconfig -a -t vnode -f /tmp/mdstore (used file for backing...) # ls /dev/md* /dev/mdctl /dev/md0 ... Cheers. -- Hiten Pandya ([EMAIL PROTECTED], [EMAIL PROTECTED]) http://www.unixdaemons.com/~hiten/ To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message