Linux下无线网卡安装(dell 1427)

合集下载

Linux操作系统怎么安装无线网卡驱动

Linux操作系统怎么安装无线网卡驱动

Linux操作系统怎么安装无线网卡驱动Linux操作系统怎么安装无线网卡驱动现在很多人都喜欢用无线上网,无线上网就需要无线网卡,而无线网卡就需要安装无线网卡驱动。

那么Linux操作系统怎么安装无线网卡驱动呢?下面跟着店铺一起去了解下吧。

Linux操作系统怎么安装无线网卡驱动安装方法及步骤:一、准备工作1、安装kernel的源码,在Redhat下是kernel-source.rpm包。

//我使用是FC8的内核,未再进行升级。

2、到/projects/ndiswrapper下载最新的ndiswrapper包,我的版本是ndiswrapper-1.52.tar.gz3、准备好网卡在Winxp下的驱动程序。

驱动程序最好是最新的,指定给XP用的。

我用到的是D-Link的一款PCI无线网卡(dwl-g520),其驱动程序是ar5211.sys、ar52119x.sys和net5211.inf。

二、安装及配置1、安装(1)解压:tar -zxvf ndiswrapper-1.52.tar.gz(2)进入ndiswrapper-1.52:cd ndiswrapper-1.52(3)编译:make//在此操作之前必需先把编译环境搭建好,即:安装好开发环境。

(4)安装:make install //如果不采取默认的安装路径,则可以用.configure --prefix="/etc/local"来指定安装目录。

//此目录是自建。

(5)查看安装后的版本ndiswrapper -v | grep //此处似乎不对。

如安装成功则显示version: 1.51(6)获取该无线网卡的WindowsXP驱动,我取了ar5211.sys、ar52119x.sys和net5211.inf。

(7)进入该驱动所在目录:cd /home/tsm/dwl_g520(8)安装无线网卡驱动:ndiswrapper -i net5211.inf(9)查看驱动是否安装:ndiswrapper -l//如:显示net5211(驱动名称) : driver installed(10)写入配置文件:ndiswrapper -mndiswrapper -mandiswrapper -mi(11)启动后模块自动加载:modprobe ndiswrapper2、配置(1)然后配置wpa_supplicant.conf文件:vi /etc/wpa_supplicant/wpa_supplicant.confctrl_interface=/var/run/wpa_supplicantctrl_interface_group=wheelnetwork={ssid="any"key_mgmt=NONE}(2)配置wpa_supplicant文件:vi /etc/sysconfig/wpa_supplicant将该文件内容设置为:# wlan0 and wifi0# INTERFACES="-iwlan0 -iwifi0"INTERFACES="-iwlan0"# ndiswrapper and prism# DRIVERS="-Dndiswrapper -Dprism"DRIVERS="-Dndiswrapper"(3)iwlist scanning 扫描一下你的AP //此处未成功,未知原因待查。

Linux系统下无线网卡驱动的安装

Linux系统下无线网卡驱动的安装
1 Microsoft SQL Server作业
作业是一系列由 SQL Server 代理按顺序执行的指定操作。作业 可以执行一系列活动,包括运行 Transact-SQL 脚本、命令行应用程 序 、 Microsoft ActiveX 脚 本 、 Integration Services 包 、 Analysis Services命令和查询或复制任务。作业可以运行重复任务或那些可计 划的任务,它们可以通过生成警报来自动通知用户作业状态,从而极 大地简化了 SQL Server管理。
143
2010年第10期
信息纵横
浅谈Linux系统下无线网卡驱动的安装
许康
(西南科技大学计算机学院)
摘 要 Linux操作系统以其高效、稳定、免费、开源等一系列特点,吸引着越来越多的计算机用户安装并使用。然而,Linux系 统下各类硬件设备的驱动安装却一直比较繁琐,这是影响计算机用户使用Linux系统的一大原因。随着Linux系统的日渐发展,在 Linux上安装各类硬件驱动已经变得越来越简易化、智能化。但即使是最新版本的Linux系统,其对各类无线网卡的驱动级支持仍不够 完善。本文以Ubuntu Linux10.04系统为例,归纳总结了各类常见的无线网卡在Linux系统上的安装过程。
Linux系统与Windows系统在使用上最显著的区别就是程序的安 装上,Linux系统里有一个安装源的概念,系统装好后第一件要做的 事就应该是配置系统的安装源。以Ubuntu Linux为例,需要在终端里 使用以下命令sudo gedit /etc/apt/sources.list打开并编辑安装源列表文件 sources.list,依据机器当前的网络接入情况选择速度较快的安装源域 名地址。配置好安装源文件以后,无论是Linux系统的升级还是各类 应用软件的安装都只需打开终端,输入相应的安装命令即可实现。

linux安装网卡驱动教程

linux安装网卡驱动教程

linux安装网卡驱动教程在Linux系统中,网卡驱动是一个必需的组件,它允许计算机与网络相连,进行数据的传输和通信。

虽然大多数Linux发行版会自动安装一些常用的网卡驱动,但某些特殊型号的网卡可能需要手动安装对应的驱动程序。

下面是一个详细的Linux安装网卡驱动的教程,帮助你完成这个过程。

1. 首先,你需要确定你的网卡型号和型号。

可以通过以下命令获取:```lspci | grep Ethernet```这将列出系统中所有的以太网适配器,包括网卡的型号和型号。

2. 一旦你确定了网卡的型号和型号,你可以在厂商的官方网站或者第三方驱动程序网站上查找和下载对应的驱动程序。

确保选择与你的Linux发行版和内核版本兼容的驱动程序。

3. 下载驱动程序后,将其保存在你的计算机上的一个可访问的位置,比如家目录。

4. 打开终端,在命令行中输入以下命令以进入驱动程序所在目录:```cd ~/下载```这里假设你将驱动程序保存在`~/下载`目录下。

如果你将其保存在其他目录,请将命令中的路径替换为实际位置。

5. 解压驱动程序文件。

这可以通过以下命令完成:```tar zxvf 驱动程序文件名.tar.gz```这里的`驱动程序文件名`应该是你下载的驱动程序文件的实际名称。

6. 进入驱动程序文件夹。

这可以通过以下命令完成:```cd 驱动程序文件夹名```这里的`驱动程序文件夹名`是解压后的驱动程序文件夹的实际名称。

7. 阅读驱动程序的安装说明文档。

通常情况下,驱动程序的文件夹中都会包含一个README文件或者INSTALL文件,其中提供了安装驱动程序所需的具体步骤和说明。

8. 一般来说,安装驱动程序的第一步是编译驱动程序的源代码。

在终端中输入以下命令以编译驱动程序:```make```这将根据驱动程序的源代码编译出可执行的二进制文件。

9. 安装编译好的驱动程序。

在终端中输入以下命令以安装驱动程序:```sudo make install```这需要管理员权限,所以你可能需要输入管理员密码。

无线网卡怎么安装

无线网卡怎么安装

无线网卡怎么安装无线网卡是一种重要的硬件设备,可以让计算机通过无线信号连接到网络,提供便利的网络使用体验。

对于那些缺乏有线网络连接的场合,无线网卡可以发挥关键作用。

但是,很多用户仍然对无线网卡的安装程序感到困惑。

在本文中,我们将提供一个简明扼要的步骤,来指导你如何安装无线网卡。

步骤一:确认系统要求在安装无线网卡之前,首先需要确认计算机的操作系统和硬件配置。

查看电脑的系统要求可以为我们选择正确的网卡型号和驱动程序提供依据。

一般来说,无线网卡支持的操作系统包括Windows、Mac和Linux。

此外,你还需要确保计算机有可用的PCI插槽或USB端口来安装无线网卡。

步骤二:选择合适的无线网卡市面上有多种型号和品牌的无线网卡可供选择。

选择合适的无线网卡需要考虑一些因素,比如网卡的传输速率、信号强度和兼容性等。

根据自己的需求和预算,选择性价比较高的无线网卡。

步骤三:安装无线网卡无线网卡的安装过程分为两个步骤:物理安装和驱动程序安装。

下面我们将详细说明每个步骤的操作。

1. 物理安装:首先,关闭计算机的电源,并确保断开电源线和所有外设的连接。

接下来,打开计算机的机箱,并寻找一个适合无线网卡安装的插槽。

如果你选择的是PCIe网卡,找到一个空闲的PCIe插槽,并小心地将无线网卡插入插槽中。

如果你选择的是USB网卡,只需将无线网卡插入计算机的USB端口即可。

完成插入后,将机箱盖重新安装好,并重新连接电源线和外设。

2. 驱动程序安装:打开计算机,并等待系统完全启动。

然后,将无线网卡的驱动程序光盘插入计算机的光驱,并运行驱动程序安装程序。

如果你没有光驱,可以从品牌官方网站上下载最新的驱动程序。

安装驱动程序可能需要一些时间,请耐心等待。

在安装过程中,系统可能会要求你重启电脑,请按照提示操作。

步骤四:配置无线网卡当无线网卡驱动程序安装完成后,你将需要进行一些配置,以使无线网卡正常工作。

1. 查找无线网络:打开计算机的无线网络设置界面,一般可以在系统托盘的网络图标中找到。

linux下安装无线网卡驱动

linux下安装无线网卡驱动

换了linux系统后发现无线不能使用,很是苦恼,于是在网上找到各位大神的做法,终于成功安装。

下面给大家介绍一下。

本例以安装Fedora 14无线网卡驱动为例。

参考文章/Linux/2011-05/35366.htm。

首先在/support/802.11/linux_sta.php 上下载32位的驱动,下载完成之后进入到下载的文件夹下#cd ~/Downloads按照readme的做法,新建一个文件夹,并且将该压缩文件移动到新建的文件夹当中#mkdri hybrid_wl#mv hybrid-portsrc-x86_32-v5.60.48.36.tar.gz hybrid_wl/进入文件夹,进行解压,#cd hybrid_wl/#tar -zxvf hybrid-portsrc-x86_32-v5.60.48.36.tar.gz由于自述文件当中的做法是指定解压目录,因此为了保险,再把这个压缩文件移动到上一级目录#mv hybrid-portsrc-x86_32-v5.60.48.36.tar.gz ../根据自述文件的说法(The cards with the following PCI Device IDs are supported with this driver.),查看支持的版本# lspci -n | grep 14e40c:00.0 0280: 14e4:4315 (rev 01)BRCM PCI PCI DellProduct Name Vendor ID Device ID Product ID------------- ---------- --------- -----------4311 2.4 Ghz 0x14e4 0x4311 Dell 13904311 Dualband 0x14e4 0x4312 Dell 14904311 5 Ghz 0x14e4 0x43134312 2.4 Ghz 0x14e4 0x4315 Dell 13954313 2.4 Ghz 0x14e4 0x4727 Dell 15014321 Dualband 0x14e4 0x4328 Dell 15054321 Dualband 0x14e4 0x4328 Dell 15004321 2.4 Ghz 0x14e4 0x43294321 5 Ghz 0x14e4 0x432a4322 Dualband 0x14e4 0x432b Dell 15104322 2.4 Ghz 0x14e4 0x432c4322 5 Ghz 0x14e4 0x432d43224 Dualband 0x14e4 0x4353 Dell 152043225 2.4 Ghz 0x14e4 0x4357发现确实是支持Dell这款无线网卡的4312 2.4 Ghz 0x14e4 0x4315 Dell 1395接下来就是对驱动进行编译了,在hybrid_wl目录下执行以下命令#make clean#make**注意,如果出现以下这样的error,则是因为内核源码的问题,1:查看自己是否安装了kernel-devel-2.6……包,如果没有装包先把包装上试试2:装完这个包还不行的话就需要你自己更新一下内核源码,编译更新的内核[root@ChinaUnix hybrid-wl]# make cleanKBUILD_NOPEDANTIC=1 make -C/lib/modules/`uname -r`/build M=`pwd` cleanmake: *** /lib/modules/2.6.35.6-45.fc14.i686/build: No such file or driectory. Stop.make: *** [clean] Error2[root@ChinaUnix hybrid-wl]# makeKBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`make: *** /lib/modules/2.6.35.6-45.fc14.i686/build: No suchfile or driectory. Stop.make: *** [all] Error 2完成之后,可以在目录下看到wl.ko 文件,如果以前安装过驱动的话,那么还需要对安装过的驱动进行清理。

无线网卡安装教程

无线网卡安装教程

无线网卡安装教程无线网卡安装教程无线网卡是一种用于连接无线网络的设备,它可以将电脑和无线路由器连接起来,让用户可以在无线网络覆盖的范围内自由上网。

本文将为大家介绍无线网卡的安装步骤,希望对想要使用无线网络的用户有所帮助。

第一步:购买合适的无线网卡在安装无线网卡之前,首先需要购买一款适用于您电脑的无线网卡。

在选择时,要注意查看您电脑的接口类型是PCIe、USB还是M.2等。

另外,还要了解您的操作系统是Windows还是Mac OS,选择与之兼容的无线网卡。

可以在电脑周边设备商店或者网上商城购买到适合的无线网卡。

第二步:准备工作在安装无线网卡之前,要先关机并拔掉电源线,以确保安全。

然后,根据您的电脑型号,找到安装无线网卡的插槽位置。

通常情况下,无线网卡的插槽在电脑主板上。

第三步:插入无线网卡现在,您可以用手轻轻按住无线网卡的散热片,对准插槽慢慢插入。

要注意,插入时要注意方向,确保连接的稳固。

插好后,用螺丝固定好无线网卡,以防在移动中发生松动。

第四步:连接天线无线网卡上通常会有天线插口,为了更好地接收无线信号,需要将天线插入无线网卡的相应插口。

插入之前要注意天线的线头是否与插口兼容,并且要把天线尽量拉直,不要有太多的弯曲,以免影响信号质量。

第五步:重新组装电脑现在,将无线网卡安装完毕的电脑重新组装好,接上电源线。

然后,启动电脑,等待操作系统加载完成。

第六步:安装驱动程序当电脑启动完成后,插入无线网卡的盘片或媒体,运行安装驱动程序的程序。

如果您的无线网卡没有提供光盘或软件,可以通过网络下载相应的驱动程序。

按照提示完成驱动程序的安装,并重新启动电脑。

第七步:连接无线网络当电脑重新启动后,可以在操作系统的任务栏或系统设置中找到无线网络连接的选项。

点击连接并输入无线网络的名称和密码,即可连接无线网络。

至此,无线网卡的安装就完成了。

通过无线网卡,您可以享受到自由连接无线网络的便利。

如果在安装过程中遇到问题,可以参考无线网卡的说明书或者与售后服务人员取得联系。

浅谈Linux系统下无线网卡驱动的安装

浅谈Linux系统下无线网卡驱动的安装
台机器上负责实现无线网络连接 的设 备就是网卡 。此 无线 网卡驱 动的安装是Ln x i 系统安装 时首先必须完成的 。 u

第四步 :将新驱动加载到系统模
块 里。
如果安装过系统 自带的嗍 动, 需先将 其移 除 ,再 加载新驱动 :
#兀 mo n dwl 。 B od m官 网提 供 的 网卡 驱 动
U u t iu 、 S ELn x Dei iu b nuLn x US iu 、 ba Ln x、R dHa Ln x 。 当 越 n e t iu 等
第二步 :编译代码 。
#ma e la o t n 1 k e n(p i a) c o
#ma e k

c . ∞ £ ”
n。 ●÷ ~ ; 。
r , ¨ ‘ ( c1 e …
“ { ’ E
’、 { I w {

: c
一 一 , 一 、
f r
来越 多的移动 终端用户想要转 向使 用Lnx iu操作系统时 ,首先 遇到的 问题就是在Ln x i 系统下为终端 的各种硬件安装驱动。 u


关键词
Ub nu iu  ̄ 线 网卡 u t Ln xr .
驱 动安 装
x 6 6 . r z 8 4t a g
_
近几年 ,中国的无线 网络覆盖越来越广泛 。西餐店 、咖啡厅、图 书馆 、家庭小区 ,到 处都是无线热点 。随着硬件制造工艺的发展 ,硬 件成本 不断降低 , 笔记本 、上网本 、平板电脑等各类移动终端 用户也 日渐增 多。 在桌面型操作系统里有着垄断地位的Wi o s n w 操作系统 ,因其使 d 用版权收费 ,安全性 漏洞威胁过多 ,新版本 的V s 和Wi 7  ̄ ia t n X 硬件要 求较高等原因 , 使得有部分系统用户开始转向使用以高效 、 稳定 、免 费 、开源为特点的各类Lnx 作系统 。Lnx i 操 u iu系统 的版 本有很 多,不 同公司负责开发和维护各 自版本的Ln x i ,如今使用较多的Ln x u i 包括 u

Linux下无线网卡驱动的安装

Linux下无线网卡驱动的安装

计算机系列教学文档------Linux下无线网卡驱动的安装Linux下无线网卡驱动的安装本来是我的本本比较旧,为了做一些网络实验,需要安装linux 操作系统,但系统安装完成后,无线网卡的驱动一直有问题,所以在网络上查找到这篇文章,希望对大家有用。

在ubuntu、BT5等linux 操作系统上通用。

The Ipw2200 is the Linux driver for the Intel PRO/Wireless 2200BG Mini-PCI Adapter and Intel PRO/Wireless 2915ABG Mini-PCI Adapter found in Centrino laptops. This driver only works on 2.6.x kernels (2.6.4 or newer).Starting with kernels 2.6.14 the driver is included in kernel.NOTE!Make sure you have installed the firmware! The ipw2200 documentation will tell you where to find these firmware files and where to install those.Included in mainline Linux kernels, tracking the SourceForge version with about 6 months delay.PackagesFedora Packages(1): Fedora Core includes the ipw2200-drivers in FC3 (with updates) and FC4. You still need to grab the firmware from /Fedora Packages(2): /name/ipw2200/Mandriva: The ipw2200 driver modules are included in the stock kernel package; the firmware is included in the commercial distribution or available from /.Gentoo: The driver is in the portage tree: emerge net-wireless/ipw2200 and net-wireless/ipw2200-firmwareDebian Sarge includes the source code for the modules in package ipw2200-source (/ipw2200-source). You additionally need to download firmware manually.Debian Etch includes a version of the modules in its kernel or for a later version install package ipw2200-modules-2.6-486 or ipw2200-modules-2.6-686 or ipw2200-modules-2.6-686-bigmem or ipw2200-modules-2.6-k7 or ipw2200-modules-2.6-amd64; or the source code for them in ipw2200-source (/ipw2200-source) to compile one yourself. You additionally need to download firmware manually.StatusIn development, usable, WEP 128bit encryption works, WPA and WPA2 work with drivers >= 1.0.2 using wpa_supplicant, monitor/rfmon is supported as with version >= 1.0.6. Generally works well, but some users experience problems (especially with firmware restarts and with WPA functionality using wpa_supplicant). Passing the hwcrypto=0 module parameter improves reliability for many users.The ipw2200 driver up to version 1.0.6 (in combination with some newer kernels) had a problem getting DHCP leases (it turned out to be a bug in the broadcasting code). Version 1.0.7 seems to have fixed this.Older ipw2200 driver versions shipped by many distributions have been reported to freeze a T43 after several minutes of intensive communication. Installing version 1.1.2 of the driver solved the problem.Latest stable versions:ipw2200 driver: 1.2.0firmware: 3.0ieee80211 stack: 1.2.15Latest development versions:ipw2200 driver: 1.2.2firmware: 3.1ieee80211 stack: 1.2.18Mainline kernels contain older (but mostly functional) versions of ipw2200 and ieee80211, and still require the addition of the firmware files. To get the latest versions you need to separately install the ipw2200 module and ieee80211 stack.InstallationSource CodeDownload the latest ieee80211 stack and install it:# tar xzvf ieee80211-1.2.15.tgz# cd ieee80211-1.2.15# make# make installDownload the latest ipw2200 module and install it:# tar xzvf ipw2200-1.2.0.tgz# cd ipw2200-1.2.0# make# make installDownload the matching firmware and install it:# tar xzvf ipw2200-fw-3.1.tgz -C /lib/firmwareDebian Sarge# apt-get install ipw2200-source# module-assistant -t build ipw2200-source[is this how module-assistant works in Sarge?]Debian EtchThe kernel includes a version but if you want a more recent version install the module ipw2200-modules-2.6-486 or ipw2200-modules-2.6-686 or ipw2200-modules-2.6-686-bigmem or ipw2200-modules-2.6-k7 or ipw2200-modules-2.6-amd64 depending on your architecture.The firmware is not distributed with Debian due to licensing reasons, download the matching version 3.0 firmware and install it:# tar -xvf ipw2200-fw-3.1.tgz -C /lib/firmware# mv /lib/firmware/ipw2200-fw-3.1/* /lib/firmwareDebian UnstableInstall ieee80211-source:# apt-get install ieee80211-source# module-assistant -t build ieee80211-sourceThe kernel includes a version but if you want a more recent version install the module ipw2200-modules-2.6-486 or ipw2200-modules-2.6-686 or ipw2200-modules-2.6-686-bigmem or ipw2200-modules-2.6-k7 or ipw2200-modules-2.6-amd64 depending on your architecture.There is a bug in the Debian package (last checked: Dec 30th 2005) that prevents from linking to ieee80211 modules using module-assistant. In case it is not fixed in your version, fall back to the regular source installation procedure described above.The firmware is not distributed with Debian due to licensing reasons, download the matching firmware and install it:# tar xzvf ipw2200-fw-2.4.tgz -C /usr/lib/hotplug/firmwaresee /etc/hotplug/firmware.agent for details on configured firmware locationsMake sure that your firmware files are not in a subdirectory (dmesg will give you warnings after any modprobe when firmware can’t be loaded)Fedora CoreInstallation on Fedora Core 5 works out of the box provided you install the ipw2200-firmware package. However, certain parts of the install process may not set up the wireless networking in a friendly manner using GNOME system tray icons and other tools. Bill Moss has written some excellent HowTo articles, including using VPNC to connect to a remote Cisco IPSec network.Fedora Core 5 and the IPW2200 Wireless DriverFedora Core 5 NetworkManager, NetworkManager-vpnc and Wireless Driver IPW2200Testing the driver# modprobe ipw2200# iwconfig# dmesg output might look similar to this:ieee80211: 802.11 data/management/control stack, 1.1.6ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@>ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.0.8ipw2200: Copyright(c) 2003-2005 Intel Corporationipw2200: Detected Intel PRO/Wireless 2915ABG Network ConnectionNB: To make the wifi LED work on the thinkpad, pass the option led=1 to the kernel while loading the module. eg. # modprobe ipw2200 led=1. This can also be accomplished by adding that option to the file where your distribution looks for modprobe options so that it becomes automatic.In debian this can be done by putting a file named after the module in /etc/modutils with the options in ithere we might run a cmd like this# echo options ipw2200 led=1 > /etc/modutils/ipw2200then we must run update-modules to remake /etc/module.conf# update-modulesWPA supportUse wpa_supplicant with the -Dwext argument (not -Dipw), and pass the hwcrypto=0 argument to the ipw2200 module.There are some very detailed instructions with working sample configurations on the following link:ipw2200 WPA instructionPower ManagementThe ipw2200 driver has power management capabilities, which comes in handy while operating on battery.To enable reduced power consumption mode, issue:# iwpriv wlan0 set_power 7where wlan0 is the name of your interface. This will reduce idle power consumption by 1-2 Watts compared to no power management. To return to the “normal” operation mode, you can issue:# iwpriv wlan0 set_power 6.In order to check current settings, you can issue:# iwpriv wlan0 get_power.More information on these option is available in the README.ipw3945 file in the ipw3945 package (README.ipw2200 seems to be rather sketchy about the details of power management). You may want to turn power management on/off on demand in an ACPI script that catches battery/AC events, so that this happens automatically.Note that there have been reports that some versions of ipw2200 react with a firmware error to power management commands. This patch could alleviate the problem.To disable the radio (and further reduce power consumption) when the card is not in use, issue:# echo 1 > /sys/bus/pci/drivers/ipw2200/*/rf_killTo enable the radio, issue:# echo 0 > /sys/bus/pci/drivers/ipw2200/*/rf_killTo make the radio off by default after boot, addoptions ipw2200 disable=1to your /etc/modprobe.conf or equivalent (on kubuntu 6.10 /etc/modprobe.d/options).See README.ipw2200 in the ipw2200 package for details and other options.wpa_supplicant assigns a random SSID wasting powerMany wpa_supplicant versions implement disconnection by configuring a random SSID. ipw2200 reacts in a very unfortunate way to this, intensively scanning for this random SSID and wasting power. This waste can be seen in powertop.Here are a number of ways to solve this problem:Run iwconfig eth1 essid off after every wpa_supplicant disconnection.Upgrade to wpa_supplicant version 0.7.1 or higher. Starting from git commit 3145e615 wpa_supplicant does not configure ipw2200 with a random SSID any more.Backporting commit 3145e615 to wpa_supplicant version 0.6.8 also fixes the problem.Changing the enabled channelsPermitted WiFi channels vary with geography due to regulation. The EEPROM in this chip contains a country code (programmed by the hardware manufacturer), and the driver converts this to a channel list and enforces it.If you carry your laptop to a different regulatory region, you may need to change the list of permitted channels according to local regulations. There are two ways to accomplish this: Patching the ipw2200 driverYou can alter the ipw2200 driver sourcecode to hard-code the country code instead of reading it from EEPROM. For example, this will allow all 14 channels (perfect for those special occasions in international water):—ipw2200.c.orig+++ ipw2200.c@@ -11344,7 +11344,7 @@ static int ipw_up(struct ipw_priv *priv) memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN); for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {- if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],+ if (!memcmp(“ZZR”, ipw_geos[j].name, 3)) break; }For the list of codes and their meaning, see the “ipw_geos” table in the ipw2200.c sourcecode.Patching the EEPROMAlternatively, you can change the country code in the EEPROM once and for all, and then use the standard ipw2200 driver.See this guide:Patching the EEPROM.Instead of the hd program mentioned there, you can use the more common od program:echo -n ZZD | od -t x10000000 5a 5a 440000003ATTENTION!If this procedure goes wrong, you may ruin your wireless card.Additional CommentsYour kernel may include an old version of the ipw2200 driver. It is recommended to use the latest version.Make sure you also install the firmware version needed by the driver version you use. You can find the firmware here. To install it, decompress the .tgz file into /usr/lib/hotplug/firmware or /lib/firmware depending on your disto.The driver doesn’t appea r to support the MII interface, so any tools like automatic network configuration managers (i.e. whereami) that rely on mii-tool do not work.。

Linux下无线网卡安装通用方法

Linux下无线网卡安装通用方法

中国无线论坛summerlucky ———————————————————————————Linux下无线网卡安装通用方法如果你的内核支持你的无线网卡的话那最好了,如果不支持,建议使用ndiswrapper来安装你的无线网卡,能方便很多。

ndiswrapper我已上传上来了。

1. 准备好网卡在Winxp下的驱动程序。

驱动程序最好是最新的,指定给XP用的。

我用到的是BCM4310,笔记本内置的无线网卡。

驱动程序是bcmwl5.inf,通常你解压你的驱动程序就能看到类似这种inf格式的文件了,注意一定要是xp下的,vista下的我试过了,不能用。

2. 安装(1)解压:tar -xf ndiswrapper-1.52.tar.gz(2)进入ndiswrapper-1.52:cd ndiswrapper-1.52(3)编译:./configuremake(4)安装:make install(6)获取该无线网卡的WindowsXP驱动,我取了bcmwl5.sys和bcmwl5.inf.(7)用cd命令转到该驱动所在目录(8)安装无线网卡驱动:ndiswrapper -i bcmwl5.inf(9)查看驱动是否安装:ndiswrapper -l会输出当前已经安装过的驱动Installed ndis drivers:bcmwl5 installedbcmwl5 presentbcmwl5是你安装的inf文件"present"则说明,当前有网卡和这个驱动匹配,正在使用该驱动!!!!!!!(10) 既然可以用,就加载吧modprobe ndiswrapper(11)写入配置文件:ndiswrapper -mndiswrapper -mandiswrapper -mi(12)启动后模块自动加载:modprobe ndiswrapper重启下就OK了接下来是连接了,推荐用wicd比较不错的无线和有线的连接管理软件,支持WPA 和WEP。

linux服务器安装网卡驱动一般步骤(总结)

linux服务器安装网卡驱动一般步骤(总结)

1.linux服务器安装网卡驱动一般步骤(总结)现在很多服务器安装linux可能会出现网卡,硬盘raid驱动无法等现象,现在将一般安装驱动方法介绍如下:一般服务器自带的光盘里面,有一张是专门的驱动盘。

1、将盘放入光驱2、挂载mount /dev/cdrom /mnt/cdrom 当挂载U盘时,可以到vi /etc/fstab 查看U盘的挂载属性目录3、找到驱动目录,猜测是如下目录cd /mnt/cdrom/driver/net/linux/redhat4.24、里面会有tgz后缀的文件,拷贝到rootcp 名.tgz /root5、解压编辑安装tar xvfz 名.tgzcd 名makemake install6、扫描硬件service kudzu start7、会跳出兰框,按任意键,选择configure,设置IP地址。

OK案例1:IBM X 3650 安装网卡驱动Red Hat Enterprise Linux4.2以后版本可以自动识别IBM X 3650网卡驱动,但是以前版本却不行,下面介绍低版本安装网卡驱动方法:1 Red Hat Enterprise Linux 3版本U6以上可以识别阵列卡,但是无法加载网卡驱动;如果不是U6的版本,需要手动输入linux dd加载阵列卡驱动来继续安装操作系统。

2 安装前题:在开发工具和系统内核全安装安装GCC、kernel-devel、rpmbuild 3个相关包。

说明:rpmbuild ---SRPM是RPM包source 的发布形式, 可分为包含原始代码的(src.rpm)包和不包含原始代码的(nosrc.rpm)包两种.其中,src.rpm包含原始代码也就是src.rpm类似的包都要用rpmbuild命令安装。

rpm -ivh rpm-build-4.2-1.i386.rpmrpm -ivh kernel-devel-2.6.9-5.EL.i686.rpm3、下载网卡驱动bnx2-1.4.36c-1.src.rpm,下载页面:/support/397307-AA1/more_info_local_24340.html4 安装网卡驱动rpm –ivh bnx2-1.4.36c-1.src.rpmcd /usr/src/redhatrpmbuild –bb SPECS/bnx2.specrpm -ivh RPMS/i386/bnx2-1.4.36c-1.i386.rpm --forcerpm -ivh RPMS/i386/bnx2-debuginfo-1.4.36c-1.i386.rpm --force5 reboot后机器启动到扫描新硬件时弹出配置向导,可以配置IP或者跳过此步骤进系统再用系统工具-网络设备控制来配。

LINUX下无线网卡的安装及配置

LINUX下无线网卡的安装及配置
2017年9月9日 第17页 共 28页
Linux下无线网卡的安装
Madwifi的安装方法
7、连接AP获取地址 iwconfig ath0 essid ****
dhclient ath0 或dhcpd ath0
8、如果有问题可以参考 /wiki/UserDocs/Troubleshooting
用户文档在/wiki/UserDocs
2017年9月9日
第18页 共 28页
客户端自动获取地址的问题
1、DHCP服务器的问题
如果使用学校统一的IPv6无状态地址配置,有以下问题:
a、如过不单独划分网段,则同一网段下的用户太多,会有
广播风暴的问题。
b、如果单独划分网段,校园网的路由器需要配置到此网段 的路由(需要张焕杰帮忙,而且需要进行网段的规划) c、中间无线路由设备需要透过DCHP包,从测试情况来看 无法实现。
2017年9月9日
第5页 共 28页
Linux下无线网卡的安装
TP-LINK的网卡基本都是使用Atheros芯片。
据网上的评价,Ndiswrapper较Madwifi要稳定一些。
实验床现有无线网卡为TP-LINK TL-WN550G(PCI,Atheros
AR5211芯片)和TL-WN620G(USB,Atheros AR5523芯片)。
2017年9月9日
第16页 共 28页
Linux下无线网卡的安装
Madwifi的安装方法
4、编译和安装 make make intall 5、加载madwifi模块 以root权限执行modprobe ath_pci 6、扫描寻找AP 方法1:加载扫描模块(modprobe wlan_scan_sta),启动网 络接口(ifconfig ath0 up),扫描(wlanconfig ath0 list scan)。 方法2:iwlist ath0 scan

INUX下无线网卡驱动程式安装的一般步骤

INUX下无线网卡驱动程式安装的一般步骤

猫(1):1 INUX下无线网卡驱动程式安装的一般步骤1.1 下载驱动程式一、首先弄清楚当前使用的是什么版本的Linux,如:Redhat9.0、Freda core5等。

Linux用的是什么版本的内核,能够用uname –a得知内核版本号。

二、使用的是什么接口类型的无线网卡,常见的接口类型有PCI (台式机)、Cardbus/PCMCIA(笔记本)、UNB(台式机、笔记本)等。

三、无线网卡使用的是哪一种类型的芯片,判断方法如下,到相关网站下载和其相对应的驱动程式。

常用的无线网卡驱动及其支持的芯片类型和接口类型如下表1所示。

PCMCIA卡:将无线网卡插入笔记本电脑中,用命令lspci能够看到芯片类型,如:Realtek Semiconductor Co.. Ltd, RTL8180L802.11b MAC (rev 20)其中RTL8180L即为网卡芯片类型,用参数v能够看到更周详的信息。

UNB卡:用命令lsunb能够看到芯片类型(fc5没有此命令)。

通过其他方法查找。

驱动程式接口类型官方网站下载页Linux-wlan-ngPri**2/2.5/3Cardbus/PCI/UNB/download.shtmlMadwifiAtheros系列Cardbus/PCI/isl**ISL38XXUNB/PCIhttp://jbnote.free.fr/pri**54unb/index.html表1:网卡驱动程式有关信息请参考以下网址获取更多资料:/personal/Jean_Tourrilhes/Linux/Wireless.html 1.2 驱动程式的安装每款驱动的安装方法各不相同,阅读INSTALL文档,获得驱动程序的具体安装方法及系统内核需要。

阅读驱动程式附带的README文档,获得有关此驱动的周详信息,如驱动所支持的网络模式、接口类型、所包含的模块的功能及无线网卡的配置等。

下面是安装网卡驱动程式的一般步骤:编译网卡驱动程式#make安装驱动程式模块#make install#modprobe 主模块名安装好驱动后插入无线网卡,命令iwconfig能够查看驱动是否加载成功,假如出现新的设备名,则说明驱动已装上并且能够识别出无线网卡。

linux网卡驱动安装

linux网卡驱动安装

linux网卡驱动安装部分内容来源于互联网,如侵犯了作者的权益,请尽快与我们取得联系!这几天,都在为linux下安装网卡而愁,虽然,我用的是瑞~~(linux是支援的.)但我还是想搞明白,如何去编译个.资料(参考):Linux 的網路卡在Linux 裡面的各項裝置幾乎都是以檔案名稱來取代的,例如/dev/hda 代表IDE1介面的第一個master 硬碟等等。

不過,網路卡的代號(Network Interface Card, NIC) 卻是以模組對應裝置名稱來代替的,而預設的網路卡代號為eth0 ,第二張網路卡則為eth1 ,以此類推。

我們知道網路卡其實是硬體,所以當然需要核心支援才能驅動他。

一般來說,目前新版的Linux distributions 預設可以支援的網路卡晶片組數量已經很完備了,包括大廠的3COM, Intel 以及初階的RealTek, D-Link 等網路卡晶片都已經被支援,所以使用者可以很輕易的設定好他們的網路卡。

不過,萬一您的網路卡晶片組開發商不願意釋出開放源(Open Source) 的硬體驅動程式,或者是該網路卡太新了,使得Linux 核心來不及支援時,那麼您就得要透過:重新編譯核心編譯網路卡的核心模組好讓核心可以支援網路卡這塊硬體啦!但是,重編核心或編譯網路卡核心模組都不是簡單的工作,而且有時原始碼又可能無法在每部主機上面編譯成功,所以萬一您的網路卡真的不被預設的Linux 網路晶片所支援,那麼鳥哥真的建議直接換一塊被Linux 支援的網路卡吧,例如很便宜的螃蟹卡!免得花了太多時間在硬體確認上面,划不來的!^_^如果您是照鳥哥推薦的,使用RLT 8139 晶片( RealTek 8139 ) 的網路卡( 就是螃蟹卡) ,那您應該在安裝Linux 的時候就已經捉到網路卡了,那真是恭喜您啦!因為您的網路卡應該已經可以正常的工作囉!那如果在安裝的時候並沒有捉到網路卡呢?該如何是好?那也不用擔心,因為您也可以事後才安裝網路卡的驅動程式呀!不過,因為Linux 並不像Windows 是那樣的隨插即用,所以需要動一些手術的!另外,其實有的時候Linux 的預設網路卡模組可能無法完全100% 的發揮網路卡的功能的,所以,有的時候您還是得必須要自行編譯網路卡的模組才行喔!當然,那個網路卡的模組就得要自行由網路卡開發商的官方網站下載了!不過,如果您的網路卡是自行編譯安裝的,那麼每次重新安裝其他版本的核心時,您都必須要自行重新手動編譯過該模組。

Linux系统基础教程:网卡安装一般步骤简介整理

Linux系统基础教程:网卡安装一般步骤简介整理

让知识带有温度。

Linux系统基础教程:网卡安装一般步骤简介整理Linux系统基础教程:网卡安装一般步骤简介Linux系统基础教程:网卡安装一般步骤简介虽然Linux系统进展的时间不长,可是Linux系统越来越受到电脑用户的欢迎,导致许多人开头学习Linux时,学习linux,你可能会遇到Linux网卡安装问题,希赛系统学院将介绍Linux网卡安装问题的解决方法,在这里拿出来和大家共享一下。

第一步:配置以太网卡的工作参数配置网卡就是配置网卡的工作参数,如端口地址、中断号等。

网卡的缺省参数一般存储于网卡内部的EEPROM,这是网卡出厂前设置好的。

缺省参数在大多数状况下是可行的,但假如这些参数与你的系统有冲突并且网卡又不支持软件动态设置,那么你就要使用网卡的设置程序。

并不是全部的网卡都要经过这一步,由于有些网卡支持通过驱动软件及其输入参数来确定网卡的工作参数。

可以通过查阅网卡使用说明书来确定这一点。

网卡的设置程序与驱动程序不同,设置程序仅仅用来对网卡EEPROM中的设置进行修改。

网卡程序本身可能运行在其它操作系统下,如WINDOWS95/98、OS/2、DOS等。

假如是非Linux平台,那你就先在适合设置程序运行的系统中安装网卡,按设置程序说明设置网卡参数。

然后再在Linux系统下安装该网卡。

其次步:安装Linux系统假如你将要安装以太网卡的Linux系统本身还未安装,那么可以先试着在安装Linux的同时安装网卡。

这一步胜利的前提是你的Linux第1页/共2页千里之行,始于足下。

发行版本包含将要安装的网卡的驱动程序。

运行Linux的安装程序,按提示进行操作,别忘了安装核心的网络部分。

当进行到LAN配置时,安装程序会列出它支持的全部网卡的类型。

看看你的网卡是否榜上出名。

随着Linux发行版本的不断升级,目前RedHat6.0已经掩盖了常用的网卡类型。

假如很幸运地你的.网卡恰好在其中,那么下文争论的许多步骤都可以不必考虑了,安装程序会自动完成网卡的安装与驱动。

linux系统下配置无线网卡的具体步骤

linux系统下配置无线网卡的具体步骤

linux系统下配置无线网卡的具体步骤店铺通过本文介绍在Linux 命令行界面中手动配置无线网卡的方法。

下面介绍使用iwconfig和ifconfig等命令在命令行状态下配置无线网络。

前题是无线网卡驱动已经正确安装,并被系统正确识别。

那么店铺就开始介绍如何在linux系统下配置无线网卡了大体思路工作的大体思路如下:用iwconfig开启无线网卡的电源,并查找区域内的无线网络连接到相应的无线网络通过ifconfig启用无线网卡,并获取IP(如果使用DHCP的话)注意:假设无线被识别为wlan0,如果您的网卡没有被识别为wlan0,可以在操作时做相应的修改。

具体过程linux系统下配置无线网卡了1. 打开无线网卡电源iwconfig wlan0 txpower on无线网络的信号灯应该亮了。

linux系统下配置无线网卡了2. 列出区域内的无线网络iwlist wlan0 scanlinux系统下配置无线网卡了3. 假设要连接到网络MyHome(即essid为MyHome的网络),那么输入命令iwconfig wlan0 essid "MyHome"如果网络是加密的,密码是0123456789,那么就输入命令iwconfig wlan0 essid "MyHome" key 0123-4567-89linux系统下配置无线网卡了4. 如果正常的话,输入iwconfig wlan0就可以看到连接正常的各项参数了。

linux系统下配置无线网卡了5. 启用无线网卡ifconfig wlan0 uplinux系统下配置无线网卡了6. 如果是用DHCP获取IP的,那么用dhclient 或dhcpcd获取ipdhclient wlan0或dhcpcd wlan0linux系统下配置无线网卡了7. 现在无线网卡应该可以正常使用了。

PS:如果现在还不能联网。

那么点击网络图标。

Linux网卡驱动的安装

Linux网卡驱动的安装

Linux⽹卡驱动的安装⼀。

⽹卡驱动安装的⼀般思路1.⾸先从硬件安装,检查⽹卡本⾝故障2.检查⽹卡芯⽚型号(注意不是硬件品牌)常见的⽹卡芯⽚有Intel RC82545EM/Realtek 8139D/ Broadcom NetXtreme/3Com 3C940/SIS900/VIA VT6105L 通过命令查看本机:lspci3.查看系统是否包含对应型号的⽹卡驱动⽬录:/lib/modules/release/kernel/drivrs/net4.检查⽹卡驱动是否加载lsmod命令查看当前系统加载的模块信息如果⽹卡未加载,使⽤[modprobe 模块⽂件]命令加载insmod/rmmod [选项] 模块名称或模块⽂件载⼊/卸载系统模块,与modprobe功能类似depmod [选项] 模块名称:分析载⼊模块的相关性⼆。

编译安装⽹卡⽅式⼀:RPM/Source RPM驱动包安装⽅式(以IBM X3650服务器Broadcom NetXtreme II⽹卡为例)1. 从IBM官⽹上下载对应服务器型号的⽹卡驱动程序,利⽤U盘等⼯具传到Linux服务器上,接着进⾏编译1. rpm -ivh bnx2-<version>.src.rpm2. cd /root/rpmbuild3. rpmbuild -bb SPECS/bnx2.spec2. 安装编译好的驱动包1. cd /root/rpmbuild/RPMS/X86_642. rpm -ivh bnx2-<version>.x86_64.rpm3. 安装成功后会显⽰在如下路径:/lib/modules/<kernel_version>/extra/bnx2.ko4. 复制⽣成的模块⽂件到⽬录:/lib/modules/<kernel_version>/kernel/drivers/net3. 加载驱动程序1. insmod\2. 或者:modprobe bnx24. 查看⽹卡驱动模块是否加载1. lsmod | grep bnx2 如果命令输出中包含bnx2模块,表明⽹卡驱动编译成功5. 激活⽹卡,查看⽹卡状态1. ifconfig eth0 up (⽹卡设备名,以eth0为例)2. ifconfig -a⽅式⼆:源代码驱动包安装⽅式(以Realtek RTL8168/8111⽹卡为例)1. 从Realtek官⽹上下载源代码包,然后伟到Linux系统上,创建⼀个⽬录,把源代码包解压到此⽬录下。

浅谈Linux系统下无线网卡驱动的安装

浅谈Linux系统下无线网卡驱动的安装

浅谈Linux系统下无线网卡驱动的安装
许康
【期刊名称】《内江科技》
【年(卷),期】2010(031)010
【摘要】Linux操作系统以其高效、稳定、免费、开源等一系列特点,吸引着越来越多的计算机用户安装并使用.然而,Linux系统下各类硬件设备的驱动安装却一直比较繁琐,这是影响计算机用户使用Linux系统的一大原因.随着Linux系统的日渐发展,在Linux上安装各类硬件驱动已经变得越来越简易化、智能化.但即使是最新版本的Linux系统,其对各类无线网卡的驱动级支持仍不够完善.本文以Ubuntu Linux10.04系统为例,归纳总结了各类常见的无线网卡在Linux系统上的安装过程.【总页数】2页(P143-144)
【作者】许康
【作者单位】西南科技大学计算机学院
【正文语种】中文
【相关文献】
1.WRF模式在Linux系统下的安装和运行
2.浅谈Linux系统的安装
3.Windows 和Linux系统下NS-2网络模拟软件的安装
4.浅谈LINUX系统安装、启动、备份过程
5.GAMIT/GLOBK在Linux系统下的安装与应用
因版权原因,仅展示原文概要,查看原文内容请购买。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Linux下无线网卡安装
1.为了能让本本的无线网卡在Linux里正常工作,首先在官网里下载无线网卡的驱动,或者在已经安装好的Windows系统里找出*.inf文件。

2.如何在已经安装的Windows系统里找出无线网卡*.inf文件!首先打开设备管理器,选择无线网卡右击属性—>驱动程序—>驱动程序详细信息,显示:C:\Windows\Systemp32\drivers\****.sys,星号是无线网卡的型号,通过型号可以在C:\Windows\inf目录里找出****.inf文件。

3.准备好以上的工作后,下载ndiswrapper-1.56.tar.gz,或者更新的版本,进入Linux系统,将无线网卡的开关打开(没开关的可以使用命令,在使用命令之前要配置好无线网卡)
我机子的硬件参数如下:
$ lspci | grep -i network
07:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g (rev 01)
$ lspci -n | grep -i "07:00.0"
07:00.0 0280: 14e4:4315 (rev 01)
知道了这无线网卡的设备ID为14e4:4315,为broadcom公司的BCM4312型号
方法一,可以在broadcom官网里直接下载Linux的驱动(直接安装下载的驱动,好像是需要2.6.24以上的内核)
方法二,使用ndiswrapper加载Windows无线网卡驱动
以下使用第二种方法:
#tar zxvf ndiswrapper-1.56.tar.gz
#cd ndiswrapper-1.56
#make
#make install
安装完成后,就可以加载驱动了
#ndiswrapper -i bcmwl6.inf (bcmwl6.inf是bcm4312的驱动)
#ndiswrapper -l
xxxxx : driver installed
出现以上的显示,说明XXXX已经安装完成,这时可以搜索无线网,但还不能正常上网,还需要继续配置
编辑文件/etc/modprobe.conf
将如下行(如果没有,手动加入)
alias eth1 bcm43xx
改为:
alias eth1 ndiswrapper
接着执行
#sed -i 's/bcm43xx/ndiswrapper/' /etc/modprobe.conf
OK,这样就可以正常上网了,以下是无线网的基本命令:
#ifconfig eth1 up (启动无线网卡)
#iwlist scan (搜索无线网)
#iwconfig eth1 essid "无线网的名称" (有密码的改成:iwconfig eth1 essid "无线网名称" key "你的密码")
使用dhclient获得IP地址(如果是手动IP地址,就在网络适配器里手动填入IP)
#dhclient eth1。

相关文档
最新文档