Always use eth0 for xbmc
|
25th Apr, 2016, 08:54 PM
Post: #4
|
|||
|
|||
RE: Always use eth0 for xbmc
I have never reported back on my workaround that seems to work so here it is, just in case it could help someone else with a similar problem.
![]() 1. Via Xbian-config menu I have disabled starting Kodi at boot time 2. I created a script (start_kodi) that automatically runs at boot time and placed it in the xbian home directory executing following commands: sudo ifdown eth0 sudo ifup eth0 sudo service xbmc start Now I am sure that the eth0 interface starts after wlan0 (and kodi is following shortly) 3. I created the rc.local script that fires start_kodi script using following content: #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. /home/xbian/start_kodi exit 0 |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Always use eth0 for xbmc - Roy Terhaar - 18th Jan, 2015, 09:42 PM
RE: Always use eth0 for xbmc - mk01 - 19th Jan, 2015, 07:43 PM
RE: Always use eth0 for xbmc - Roy Terhaar - 20th Jan, 2015, 07:30 AM
RE: Always use eth0 for xbmc - Roy Terhaar - 25th Apr, 2016 08:54 PM
RE: Always use eth0 for xbmc - deHakkelaar - 25th Apr, 2016, 10:39 PM
RE: Always use eth0 for xbmc - Nachteule - 25th Apr, 2016, 10:46 PM
RE: Always use eth0 for xbmc - Roy Terhaar - 25th Apr, 2016, 11:21 PM
|