파일에서 네트워크 카드 드라이버를 설치하는 방법은 무엇입니까?

파일에서 네트워크 카드 드라이버를 설치하는 방법은 무엇입니까?

최근에 외부 USB 네트워크 어댑터를 구입했는데 해당 드라이버를 설치해야 합니다. 올바른 드라이버에 대한 다운로드를 찾았습니다.여기. 다운로드했고 이제 추출된 zip 파일이 생겼습니다. 다른 게시물을 읽은 후 설치 지침은 readme 파일을 읽어보기로 결정했습니다. 몇 가지를 찾았지만 Linux에 대한 경험이 적기 때문에 설치 방법을 여전히 이해하지 못합니다. 저는 리눅스 민트를 사용하고 있습니다. 다음은 추가 정보 파일의 일부입니다.

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>>.

내가 추출한 파일은 다음과 같습니다.

드라이버가 포함된 파일 다운로드

답변1

대부분의 드라이버는 배포 커널에 통합되어 있습니다. 당신의 커널이 아직 이것을 처리하지 못한다고 확신합니까? 7세 운전자는극도로최신 커널(예: 5년 미만의 커널)에서는 작동하지 않을 가능성이 높습니다.

관련 정보