<div dir="ltr">I didn&#39;t find anything in trac that really looked like the same problem I&#39;m having. Some recordings will crash the frontend suddenly and there will not be any errors in the log file. Sometimes it&#39;s reproducible and sometimes it&#39;s not, meaning, some recordings will cause the frontend to crash in the same place over and over and some will crash it once but not the next time.<br>
<br>Anyone else have this problem?<br><br>My current workaround, if you can call it that, is to run gdm-restart from a terminal. I have it programmed to my remote but have yet to get it to work. I&#39;ve actually got the command in a bash script, mythrestart.sh which I call using irexec. My problem is that even though my myth startup script run irexec, it does not work, but if I open a terminal (tested over ssh right now) and run irexec &amp;, it works. I have verified that my startup script sucessfuly loads irexec using ps | grep irexec. I did not kill the first one before starting the second irexec from a termnal so I actually have it running twice...<br>
<br>The only difference I can think of is that the second one is run from a terminal and the first one is part of a startup script, but should it matter? I&#39;ll post my startup script at the bottom but I can&#39;t see anything wrong with it.<br>
<br>System specs:<br>OS: F8 x86_64<br>Myth: Latest 0.21-fixes available from atrpms<br>Tuner: HDHomerun capturing OTA ATSC.<br><br>Thanks,<br>Richard<br><br>mythstart.sh<br>---<br>#!/bin/bash<br><br># Only do this stuff if we&#39;re on the main display<br>
# (i.e., don&#39;t do this in a vnc session)<br>if [ `echo $DISPLAY | grep -c &quot;:0&quot;` -ge 1 ]<br>then<br>&nbsp;&nbsp;&nbsp; # Load nVidia driver custom settings<br>&nbsp;&nbsp;&nbsp; #nvidia-settings --load-config-only &amp;<br>&nbsp;&nbsp;&nbsp; # Restore audio settings<br>
&nbsp;&nbsp;&nbsp; /usr/sbin/alsactl restore<br>&nbsp;&nbsp;&nbsp; # Launch irexec for myth power button stop/start<br>&nbsp;&nbsp;&nbsp; irexec &amp;<br>&nbsp;&nbsp;&nbsp; # Launch myth frontend<br>&nbsp;&nbsp;&nbsp; mythfrontend -v playback -l mythfrontend.log &amp;<br>&nbsp;&nbsp;&nbsp; #mythwelcome &amp;<br>
&nbsp;&nbsp;&nbsp; # Disable dynamic power management (screen blanking)<br>&nbsp;&nbsp;&nbsp; /usr/bin/xset -dpms<br>&nbsp;&nbsp;&nbsp; # Disable screen saver<br>&nbsp;&nbsp;&nbsp; /usr/bin/xset s off<br>fi<br>exit<br>---<br><br></div>