PDA

View Full Version : Starting videograbber automatically



ovaron
10-21-2004, 03:14 PM
Hi,
I'm new to knoppix and linux.
I want to start a videograbber automatically after knoppix has started.
My manual steps are:

mknod /dev/mtv104 c 252 0
chmod 660 /dev/mtv104
insmod mtv104.o

How can these be started automatically with knoppix startup.

Please help

thx

shah
10-21-2004, 04:04 PM
Make a script.
Ex:

#!/bin/sh
mknod /dev/mtv104 c 252 0
chmod 660 /dev/mtv104
insmod mtv104.o


Save this file with extension .sh, ex: myscript.sh
Save this file to /etc/init.d/

To load the script at boot time, run this command in root konsole: update-rc.d myscript.sh defaults

:D :D

ovaron
10-27-2004, 07:04 AM
thank you for your reply, it's working