Thursday, 28. September 2006, 04:00:26
=============installation documentations==========
This information about HOWTO setup DVB PCI Card for internet (tested with b2c2 chipset skystar2) using Ubuntu 6.06 LTS Dapper Drake.
make ubuntu to compiles
apt-get install build-essential
get the packages from linuxtv.org [WWW]
wget http://www.linuxtv.org/downloads/linuxtv-dvb-apps-1.1.1.tar.gz
unpacking the packages
tar -zxvf linuxtv-dvb-apps-1.1.1.tar.gz
Make its simple
mv linuxtv-dvb-apps-1.1.1 linuxtv
patc and compile them all
cd linuxtv
make
if no error report copy all off them to /usr/local/bin
cp util/dvbnet/dvbnet /usr/local/bin
cp util/dvbtraffic/dvbtraffic /usr/local/bin
cp util/scan/scan /usr/local/bin
cp util/szap/szap /usr/local/bin
cp util/szap/femon /usr/local/bin
cp util/dvbdate/dvbdate /usr/local/bin
Testingbefore we do some testing, we need this informations from satellite internet provider (DVB-S) :
* Satellite band freq (c-band, ku-band)
* Polarization
* Frequency
* Symbol rate
* FEC
* PID
my configurations is
* Satellite Band freq = C-BAND
* Frequency = 3680 Mhz
* Polarization = Horizontal
* Symbolrate = 26666 ksym/s
* FEC = 3/4
* PID = 4004
mkdir /root/.szap
cd /root/.szap
Testing : dvbnetwhat we need here is PID (from dvb internet provider). for example our pid is 4004 (decimal)
dvbnet -p 4004
now you can see your new adapter dvb0_0
ifconfig dvb0_0
if you didn't see correct MAC address
ifconfig dvb0_0 hw ether "$YOUR_MAC_ADDRESS"
Testing : scanwe are ready to scan the transponder now i assume that satellite dish is on the right pointing
cd /root/.szap
echo S 3680000 H 26666000 3/4 > sat.conf
scan -l c-band sat.conf
this will ok if no error message.
Testing : szapthis session will create our channels configuration (this is my configuration).
cd /root/.szap
echo myprovidername:3680:h:0:26666:0:0:7 > channels.conf
we will tune it now !!
szap -l c-band -n 1
if you see
"FE_HAS_LOCK" ... dvb card is tuned fine !
CTRL+C to stop it !
make it run as daemon
start-stop-daemon --start -q -b -x /usr/loca/bin/szap -- -l c-band -n 1
from now, you can only check it by using femon
femon
Testing : dvbtraffictesting data capability
dvbtraffic
you can also monitor internet packet at dvb0_0
tcpdump -i dvb0_0
you can also using iptraf
reference * all documentation referer taken from [WWW]
http://wiki.ubuntu.com/dvbinternet * linux dvb application [WWW]
http://linuxtv.org * patch & script [WWW]
http://software.prima-info.com * my dvb pci card [WWW]
http://www.technisat.com * Installation tutorial [WWW]
http://www.howtoforge.com/perfect_setup_ubuntu_5.10