Hercules Smart TV 3: Difference between revisions
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
modprobe tuner |
modprobe tuner |
||
<br><br> |
<br><br> |
||
Now you have a few choices, you can either add the command card= |
Now you have a few choices, you can either add the command:<br><b> card= tuner= </b>to <b>/etc/modules</b> or <b>/etc/modprobe/<b>modulename</b></b><br><br> |
||
On Debian Systems<br> |
On Debian Based Systems:<br> |
||
echo "options saa7134 card=10 tuner=38" > /etc/modprobe.d/saa7134<br> |
<b>echo "options saa7134 card=10 tuner=38" > /etc/modprobe.d/saa7134</b><br> |
||
modprobe saa7134 |
<b>modprobe saa7134</b> |
||
<br><br> |
<br><br> |
||
On |
On Gentoo, it should be:<br> |
||
echo "options saa7134 card=10 tuner=38" > /etc/modules.d/saa7134<br> |
<b>echo "options saa7134 card=10 tuner=38" > /etc/modules.d/saa7134<br> |
||
modules-update<br> |
modules-update<br> |
||
modprobe saa7134<br><br> |
modprobe saa7134<br><br> |
||
Audio:<br> |
Audio:<br> |
||
If you use ALSA |
If you use ALSA:<br> |
||
modprobe saa7134_alsa or echo "saa7134_alsa" >> /etc/modules <br> |
<b>modprobe saa7134_alsa or echo "saa7134_alsa" >> /etc/modules</b> <br> |
||
<br> |
<br> |
||
If you use OSS<br> |
If you use OSS:<br> |
||
modprobe saa7134 oss=1<br> |
<b>modprobe saa7134 oss=1</b><br> |
||
echo "saa7134 oss=1" >> /etc/modules |
<b>echo "saa7134 oss=1" >> /etc/modules </b> |
||
<br> |
<br> |
||
Or alternatively just add the oss=1 option: echo "options saa7134 card=10 tuner=38 oss=1" > /etc/modprobe.d/saa7134<br> |
Or alternatively just add the <b>oss=1</b> option: <b>echo "options saa7134 card=10 tuner=38 oss=1" > /etc/modprobe.d/saa7134</b><br> |
||
<br> |
<br> |
||
Now either add just saa7134 to /etc/modules or to auto-load<br> |
Now either add just saa7134 to /etc/modules or to auto-load<br> |
||
echo "saa7134" >> /etc/modules.autoload.d/kernel-2.6<br> |
<b>echo "saa7134" >> /etc/modules.autoload.d/kernel-2.6<br></b> |
||
<br>The <b>tuner</b> module seems to be a must on this card so you'll need to add that.<br><br> |
<br>The <b>tuner</b> module seems to be a must on this card so you'll need to add that.<br><br> |
||
Note: Remember to adjust your alsamixer settings.<br> |
Note: Remember to adjust your <b>alsamixer</b> settings.<br> |
||
<br><br>[http://gentoo-wiki.com/HARDWARE_saa7134 Some useful information ]<br><br> |
<br><br>[http://gentoo-wiki.com/HARDWARE_saa7134 Some useful information ]<br><br> |
||
<center>Enjoy!<br></center> |
<center>Enjoy!<br></center> |
Revision as of 08:13, 14 August 2008
== Hercules Smart TV 3 - Linux 2.6 ==
Get tvtime or any other tv software for linux and try one or the other bellow.
modprobe saa7134 card=10 tuner=24
or
modprobe saa7134 card=10 tuner=38
modprobe tuner
Now you have a few choices, you can either add the command:
card= tuner= to /etc/modules or /etc/modprobe/modulename
On Debian Based Systems:
echo "options saa7134 card=10 tuner=38" > /etc/modprobe.d/saa7134
modprobe saa7134
On Gentoo, it should be:
echo "options saa7134 card=10 tuner=38" > /etc/modules.d/saa7134
modules-update
modprobe saa7134
Audio:
If you use ALSA:
modprobe saa7134_alsa or echo "saa7134_alsa" >> /etc/modules
If you use OSS:
modprobe saa7134 oss=1
echo "saa7134 oss=1" >> /etc/modules
Or alternatively just add the oss=1 option: echo "options saa7134 card=10 tuner=38 oss=1" > /etc/modprobe.d/saa7134
Now either add just saa7134 to /etc/modules or to auto-load
echo "saa7134" >> /etc/modules.autoload.d/kernel-2.6
The tuner module seems to be a must on this card so you'll need to add that.
Note: Remember to adjust your alsamixer settings.
Some useful information