I have ffmpeg's ffserver installed on Ubuntu but want to start it as a daemon feeding it a config file when the server boots, how do I go about doing so?
Asked
Active
Viewed 2,251 times
1 Answers
1
You can use update-rc.d command to do the same
sudo update-rc.d ffserver defaults
Check the man pages of update-rc.d for more details

Pradheep
- 3,553
- 1
- 27
- 35
-
1Only ffserver does not install anything under `/etc/init.d`, at least not on Ubuntu. – Alexis Wilke Mar 01 '18 at 03:45