<div dir="ltr">On Tue, Apr 1, 2014 at 3:54 PM, david brooke <span dir="ltr">&lt;<a href="mailto:david2012brooke@gmail.com" target="_blank">david2012brooke@gmail.com</a>&gt;</span> wrote:I have posted my record of what I did to install mythtv here:<br>
<div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra">
<br><a href="https://forum.manjaro.org/index.php?topic=12218.0" target="_blank">https://forum.manjaro.org/index.php?topic=12218.0</a><br><br></div><div class="gmail_extra">Currently Mythtv seems to be running OK except for the user issue that documented in the above post. I use it daily on multiple frontends, recording TV shows, viewing videos, etc.... Let me know if you need more info.<br>

</div><div class="gmail_extra">Thanks<br></div></div><br></blockquote><div> <br></div><div>Looks like you haven&#39;t enabled the daemon: systemctl enable mythbackend. I guess you are starting the backend from a terminal with no logging options, so that&#39;s why you have no logs written.<br>
<br></div><div>For your user issue, I recommend copying the service file to /etc/systemd/system/ and editing there, because the other one will be overwritten next time the package is upgraded. See the end of this section: <a href="https://wiki.archlinux.org/index.php/Systemd#Editing_provided_unit_files">https://wiki.archlinux.org/index.php/Systemd#Editing_provided_unit_files</a><br>
<br></div><div>Your tuner(s) probably don&#39;t work because systemd isn&#39;t waiting for them to be initialized before starting mythbackend. Add to the service file Wants and After for each tuner like this:<br></div><div>
In this example the tuners are at /dev/dvb/adapter{0,1}/frontend0<br></div><div><br>[Unit]<br>Description=MythTV Backend<br>After=network.target mysqld.service<br>Wants=dev-dvb-adapter0-frontend0.device<br>After=dev-dvb-adapter0-frontend0.device<br>
Wants=dev-dvb-adapter1-frontend0.device<br>After=dev-dvb-adapter1-frontend0.device<br><br></div></div></div></div>