--
Robert Anderson
Systems Administrator
The Ant Farm
323-850-0700
The mknod program will create special files.
My RH6.1 box uses device 9,0 for /dev/st0. If yours does too, this
command should work:
mknod -m660 /dev/st0 c 9 0
This, however, is a very low-level call. You may prefer to use the
MAKEDEV script that your system should have installed already:
cd /dev
./MAKEDEV st0
-- David
Device files are created with the mknod command. The device information
can be found in /usr/src/linux/Documentation/devices.txt
--
Bob Martin