Development » History » Revision 3
« Previous |
Revision 3/5
(diff)
| Next »
Adam Sutton, 2013-12-28 23:48
Development¶
If you are intending to do Tvheadend development or simply self-building / testing then this page gives a few useful hints and tips.
Environment¶
If you intend to build and test tvheadend its recommended that you do this as your own user, it'll make things a lot easier and can help isolate a test build from your main live build.
You will need to give your user account the necessary permissions to access the DVB hardware:
sudo usermod -a -G video $(id -nu)
If you already have an existing configuration you might consider taking a copy of this to give you a realistic data set without tainting your main config:
sudo cp -a ~hts/.hts/tvheadend/ ./test-conf sudo chown -R $(id -nu):$(id -ng) ./test-conf
You should now be able to run tvheadend as yourself (remember to turn off the main tvheadend service):
mkdir -p test-conf ./build.linux/tvheadend -c ./test-conf
Debugging¶
For more general information about debugging please read this page.
Updated by Adam Sutton almost 11 years ago · 3 revisions