Ok right. This is what I've done so far with no joy. Thank for all the help so far
1. Edited inetd.conf to look like this: -
PHP Code:
#
# /etc/inetd.conf A simple inetd.conf
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# To re-read this file after changes, just do a 'killall -HUP inetd'
#
#
ftp stream tcp nowait root /usr/sbin/bftpd bftpd
telnet stream tcp nowait root /usr/sbin/telnetd telnetd
#auth stream tcp nowait nobody /usr/sbin/nullidentd nullidentd
www stream tcp nowait www-data /usr/sbin/httpd httpd -h /var/www
#
# End of inetd.conf
Transfered to /etc/ then chmod 664.
2. Created S51inetd and put into /etc/init.d/ Its looks like this, is this actually correct even? : -
PHP Code:
#!/bin/sh
/tmp/hdd/root/bftpd/bftpd_start
exit 0
Once transferred I chmod 775 the above file.
Basically what i'm trying to achieve here is starting the ftp server I installed automatically on each re-boot instead of manually starting via telnet.