Quoting Mitchell Brown <[EMAIL PROTECTED]>: > Hello, > I've setup my vsftpd server on my PCLinuxOS .93MM box. Now, I was wondering > how I can make the server automatically run "modprobe capability" (necessary > for the server to run) at bootup. I tried putting "modprobe capability" into > /etc/modules but to no avail. This would be so helpful.
You could just create a script, make it executable, and drop it in the appropriate init directory. It should look something like: #!/bin/sh modprobe capability exit 0 > Oh, also, how does one make a drive automount on bootup? I have my hdb setup > as a server drive and its mountpoint is /srv (while I'm on a roll, how do I > change a mountpoint once its set?). man fstab Jesse _______________________________________________ clug-talk mailing list [email protected] http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying

