Como instalar o driver nic do arquivo?

0

Recentemente, recebi um adaptador de rede USB externo e preciso instalar seus drivers. Eu encontrei o download para os drivers corretos aqui . Eu baixei e agora eu tenho o arquivo zip extraído. Da leitura de outros posts, decidi ler o arquivo Leia-me para instruções de instalação. Eu encontrei alguns, mas com minha baixa experiência com Linux, eu ainda não entendo como instalá-los. Eu estou usando o Linux Mint. Aqui está uma parte do Readme:

Release Date: 2008-12-05, ver 1037 
RTL8187L Linux driver version 1037 

   --This driver supports RealTek RTL8187L Wireless LAN NIC for 
     2.6 kernel: 
     Fedora Core 2/3/4/5/6/7, Debian 3.1, Mandrake 10.2/Mandriva 2006,  
     SUSE 9.3/10.1/10.2, Gentoo 3.1, etc, Ubuntu8.04/8.10. 
     2.4 kernel: 
     Redhat 9.2, etc 
   - Support Client mode for either infrastructure or adhoc mode 
   - Support WEP, WPAPSK and WPA2PSK connection 

======================================================================================
                                Component
======================================================================================
The driver is composed of several parts:
        1. Module source code
           ieee80211
           rtl8187

        2. Script ot build the modules
           Makefile

        3. Script to load/unload modules
           wlan0up
           wlan0down

        4. Script and configuration for DHCP
           wlan0dhcp
           ifcfg-wlan0

    5. Supplicant source code: 
       wpa_supplicant-0.5.5.tar.gz 

    6. Example of supplicant configuration file: 
       wpa1.conf 

======================================================================================
                                Installation
======================================================================================
<<Method 1>>
Runing the scripts can finish all operations of building up modules
from the source code, installing driver to the kernel and starting up the nic.
        1. Build up the drivers from the source code
           make

        2. Install the driver to the kernel
           make install
           reboot

        3. bring up wlan if nic is not brought up by GUI, such as NetworkManager
           ifconfig wlan0 up
           Note: use ifconfig to check whether wlan0 is brought up and use iwconfig to 
           check your wlan interface name,since it may change wlan0 to wlan1,etc.

<<Method 2>>
Or only load the driver module to kernel and start up nic.
        1. Build up the drivers from the source code
           make

        2. Load driver module to kernel and start up nic.
           ./wlan0up

           Note: when "insmod: error inserting 'xxxx.ko': -1 File exists" comes out
                 after run ./wlan0up, please run ./wlan0down first, then it should
                 be ok..
           Note: If you see the message of "unkown symbol" during ./wlan0up, it
                 is suggested to build driver by <<Method 1>>.

E aqui estão os arquivos que eu extraí:

    
por Paradox 10.10.2015 / 20:41

1 resposta

1

A maioria dos drivers foi integrada nos kernels de distribuição. Tem certeza de que isso não é tratado pelo seu kernel já? Um driver de 7 anos é extremamente improvável que funcione com qualquer kernel recente (digamos com menos de 5 anos).

    
por 11.10.2015 / 01:12