Raportti Nebula bug foorumilla
sanoo, että bash scripti hakemistossa /root/bin + tänne viittaava lisärivi hakemistossa /etc/rc.local starttaa Nebulan kortin aina käynnistyksessä.
Pahaksi onneksi tämä ei taida pelittää Ubuntussa (/root/bin). Vaiko? Miten vastaava temppu pitäisi tehdä Ubuntussa?
Referenssi:
I was still suffering from the modprobe problem mentioned in the bug report refered to above. This means that to make things work I had to unload the drivers for the DVB-T cards, and then reload them. So here's the script I wrote to do that, which I wrote as /root/bin/fix_myth_drivers:
#!/bin/bash
/usr/sbin/service mythtv-backend stop
/sbin/modprobe -vr dvb_bt8xx
/bin/sleep 10
/sbin/modprobe -v dvb_bt8xx
/usr/sbin/service mythtv-backend start
But of course, I wanted the drivers fixed every time the machine reboots. So, I added the following line to the file /etc/rc.local so that my script would execute at every boot.
/root/bin/fix_myth_driver
With all of this in place, just reboot. Then use the Watch TV option on your mythbox to check that your DVB-T cards are now working. You can also check by running dmesg and checking whether it is overrun by mt352 errors like those described at the beginning of this posting.