Difference between revisions of "Frontend Loading Script"

From MythTV Official Wiki
Jump to: navigation, search
m (other options)
m (Keep mythfrontend running moved to Frontend Loading Script)
(No difference)

Revision as of 15:36, 17 January 2006

Well, technically it's near impossible to guarantee that mythfrontend will stay running. Although it rarely crashes for me, it's more likely that someone will hit ESC too many times and we'll be left with an empty display on our big TV. To avoid having to break out the keyboard and restart mythfrontend, here's a little script I use to restart it automatically:

 #!/bin/bash
 # mythrestart.sh
 # Automatically restart mythfrontend if it fails.
 
 # Just for fun, lets start the myth transcode dameon, too.
 sudo mtd -d
 
 # Loop the call of mythfrontend.
 while [ /bin/true ]
 do
         sudo killall mythfrontend
         sudo mythfrontend
         sleep 2
 done

Then, instead of starting Myth with 'mythfrontend', start it with the script above.

Other Options

Frontend Auto Login