How do I install a driver provided as source code?

15,840
  • Open a terminal with Ctrl+Alt+T
  • Install the build-essential package with:

    sudo apt-get install build-essential
  • Change the directory to the extracted driver folder; suppose it's under your home directory as Downloads/driversource, with:

    cd ~/Downloads/driversource
  • Type make && sudo make install

This should build and install the driver. You will probably need to reboot to activate the installed driver.

Share:
15,840

Related videos on Youtube

Ashish Anand
Author by

Ashish Anand

Updated on September 18, 2022

Comments

  • Ashish Anand
    Ashish Anand over 1 year

    I have a USB-to-LAN converter, and downloaded the its drivers. The driver folder consists of a Makefile file, a .c file and a .h file.

    How do I install such a driver?

  • Dr.jacky
    Dr.jacky over 7 years
    I want to compile this github.com/Stane1983/kernel-amlogic-mx/tree/master/drivers/… , but it says "make: *** No targets. Stop."