List number of files in a particular folder – Linux Command
September 9th, 2009
No comments
Easy and fast, using chkconfig linux command.
To configure your system to start Apache at boot time:
chkconfig --levels 235 httpd on
for manual start apache:
/etc/init.d/httpd start
create the system startup links for Proftpd and start it:
chkconfig --levels 235 proftpd on
/etc/init.d/proftpd start
Chkconfig provides a ...