求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?

包含网卡/无线网的网络问题和ADSL/校园网/宽带拨号支持及代理/共享等网络使用问题
回复
netkingcole
帖子: 2
注册时间: 2016-09-26 12:55

求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?

#1

帖子 netkingcole » 2016-09-26 13:11

OS是ubuntu14.04LTS,机器是lenovo X240,用的intel 7260的wifi卡。
有一阵没有使用了,突然一天开机无法连接wifi了,(提示是WLAN不可用),找了官方驱动是个windows下的EXE文件,不会编译。

重启到win7下,一切正常,说明硬件没问题;
用ubuntu1404的安装U盘启动,"try without install"进入,也是一切正常,估计是硬盘上的某些文件

求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?
头像
vickycq
帖子: 4507
注册时间: 2011-03-20 13:12
系统: Debian
来自: 山东省寿光县
联系:

Re: 求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?

#2

帖子 vickycq » 2016-09-26 13:50

netkingcole 写了:用的intel 7260的wifi卡。 有一阵没有使用了,突然一天开机无法连接wifi了,(提示是WLAN不可用
执行以下命令将结果全部复制贴上来,不要节选

代码: 全选

uname -a
cat /etc/issue
lspci -knn | grep -iA2 net
sudo lshw -C net
sudo iwconfig
sudo rfkill list all
cat /sys/class/dmi/id/{sys_vendor,product_name}
lsmod
netkingcole 写了:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?
猜测 问题不在这里
Debian 中文论坛 - forums.debiancn.org
欢迎所有 Debian GNU/Linux 用户
netkingcole
帖子: 2
注册时间: 2016-09-26 12:55

Re: 求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?

#3

帖子 netkingcole » 2016-09-26 22:12

vickycq 写了:执行以下命令将结果全部复制贴上来,不要节选

代码: 全选

auh@ThinkPad:~$ uname -a
Linux ThinkPad 3.13.0-43-generic #72-Ubuntu SMP Mon Dec 8 19:35:06 UTC 2014 x86_64 x86_64 

x86_64 GNU/Linux
auh@ThinkPad:~$ cat /etc/issue
Ubuntu 14.04.1 LTS \n \l

auh@ThinkPad:~$ lspci -knn |grep -iA2 net
00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I218-LM 

[8086:155a] (rev 04)
	Subsystem: Lenovo Device [17aa:2214]
	Kernel driver in use: e1000e
--
03:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b2] (rev 6b)
	Subsystem: Intel Corporation Wireless-N 7260 [8086:c262]
auh@ThinkPad:~$ sudo lshw -C net
[sudo] password for auh: 
  *-network               
       description: Ethernet interface
       product: Ethernet Connection I218-LM
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       logical name: eth0
       version: 04
       serial: 28:d2:44:e3:4c:12
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi cap_list ethernet physical
       configuration: broadcast=yes driver=e1000e latency=0 multicast=yes
       resources: irq:20 memory:f0600000-f061ffff memory:f063e000-f063efff ioport:3080

(size=32)
  *-network UNCLAIMED
       description: Network controller
       product: Wireless 7260
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:03:00.0
       version: 6b
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: latency=0
       resources: memory:f0400000-f0401fff
auh@ThinkPad:~$ sudo iwconfig
eth0      no wireless extensions.

lo        no wireless extensions.

auh@ThinkPad:~$ sudo rfkill list all
auh@ThinkPad:~$ cat /sys/class/dmi/id/{sys_vendor,product_name}
LENOVO
20AMA37ECD
auh@ThinkPad:~$ lsmod
Module                  Size  Used by
dm_crypt               23177  0 
kvm_intel             143187  0 
kvm                   455835  1 kvm_intel
crct10dif_pclmul       14289  0 
crc32_pclmul           13113  0 
ghash_clmulni_intel    13216  0 
cryptd                 20359  1 ghash_clmulni_intel
joydev                 17381  0 
serio_raw              13462  0 
video                  19476  0 
parport_pc             32701  0 
ppdev                  17671  0 
lp                     17759  0 
parport                42348  3 lp,ppdev,parport_pc
e1000e                254433  0 
ahci                   25819  4 
psmouse               106714  0 
ptp                    18933  1 e1000e
libahci                32716  1 ahci
pps_core               19382  1 ptp
auh@ThinkPad:~$ 
头像
vickycq
帖子: 4507
注册时间: 2011-03-20 13:12
系统: Debian
来自: 山东省寿光县
联系:

Re: 求教:有没有可能把启动U盘里面加载的驱动复制到硬盘上对应的某个目录下,来解决无线网卡的驱动或者配置问题?

#4

帖子 vickycq » 2016-09-27 9:06

netkingcole 写了: *-network UNCLAIMED
description: Network controller
product: Wireless 7260
iwlwifi 驱动由于某种原因不能加载,建议先进一步收集信息以利诊断,再采取简易措施看能否恢复

1. 进一步收集信息以利诊断
1-1. 重新启动计算机后马上执行下一步
1-2. 打开终端以普通用户身份执行以下指令

代码: 全选

echo "AAAAAAAAAAAAAAAAAAAAAAAAA" | sudo tee /dev/kmsg
sudo modprobe iwlwifi
dmesg -e > ~/dmesg
1-3. 将以下两个文件的内容贴到 http://paste.ubuntu.com/ 或直接以附件形式发到本坛:/var/log/syslog, ~/dmesg

2. 采取简易措施

代码: 全选

sudo apt-get install linux-generic-lts-xenial
wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-7260-ucode-16.242414.0.tgz
tar xf iwlwifi-7260-ucode-16.242414.0.tgz
cd iwlwifi-7260-ucode-16.242414.0/
sudo cp iwlwifi-7260-16.ucode /lib/firmware
重新启动计算机
Debian 中文论坛 - forums.debiancn.org
欢迎所有 Debian GNU/Linux 用户
回复