0

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?

CoryG
  • 2,429
  • 3
  • 25
  • 60

1 Answers1

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