Installing Driver linux

Solution
You need compiler / linker / make utility. On Debian / Ubuntu, this is done with
Code:
sudo apt-get update &&
sudo apt-get install g++ make autoconf automake libtool flex bison
After that - download the source of your driver, unpack it, and (usuallty)
Code:
./configure
make
make install
Of course, README in the driver source will tell you any particulars.
You need compiler / linker / make utility. On Debian / Ubuntu, this is done with
Code:
sudo apt-get update &&
sudo apt-get install g++ make autoconf automake libtool flex bison
After that - download the source of your driver, unpack it, and (usuallty)
Code:
./configure
make
make install
Of course, README in the driver source will tell you any particulars.
 
Solution