That's ok, I'll make some now!
Open a terminal.
First, get your PC ready to compile drivers...
sudo apt-get update
sudo apt-get upgrade
sudo apt-get autoremove
sudo apt-get install build-essential checkinstallNext, get and extract the linux source so we can extract the driver parts we need...
sudo apt-get install linux-source
cd /usr/src/linux-source-2.6.35
sudo tar -xjf linux-source-2.6.35.tar.bz2Now we'll copy the parts of the source code we need, specifically the contents of the DVB directory...
cd ~
sudo cp -a /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/* /usr/src/linux-headers-2.6.35-28-generic/drivers/media/dvbCreate a symbolic link...
sudo ln -s /usr/src/linux-headers-2.6.35-28-generic/ /lib/modules/2.6.35-28-generic/sourceChange directory to where you extracted the the Avermedia driver...
cd /usr/local/src/a867_drv_v1.0.28
make
sudo make installOnce completed, you'll need to restart, then run the following command. To cheat, run it now then when you restart you can up-arrow to get the command again, saving you from coming back to this tutorial.
lsmod | grep a867
No comments:
Post a Comment