Debian安装完成后没有无线网络的解决方法
<p>我在安装Debian9的时候,使用的ThinkPad T580笔记本。在安装过程中到安装万陈并没有提示我连接wifi,也没有连接wifi选项。通过摸索,终于找到原因,并解决wifi连接问题。</p><h2 id="系统环境说名">系统环境说名</h2>
<ul>
<li>
<h3 id="系统debian96">系统:Debian9.6</h3>
</li>
<li>
<h3 id="无线网卡intel">无线网卡:Intel</h3>
</li>
</ul>
<p>查看系统版本<br>
<code>uname -r</code><br>
查看无线网卡型号指令<br>
<code>lspci | grep -i net</code></p>
<p>返回以下消息</p>
<pre><code>bugchen@debian:~$ lspci | grep -i net
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (4) I219-V (rev 21)
04:00.0 Network controller: Intel Corporation Device 24fd (rev 78)
bugchen@debian:~$
</code></pre>
<p>其中Network controller后面的表示无线网卡,需要下载相应的无线网卡驱动。</p>
<h2 id="intel无线网卡驱动下载与安装">Intel无线网卡驱动下载与安装</h2>
<p>可以在http://archive.ubuntu.com/ubuntu/pool/main/l/linux-firmware/下载最新的驱动。如iwlwifi-8265-22.ucode已经包含在linux-firmware_1.162_all.deb中。安装方式可以双击进入软件中心进行安装,或这通过以下指令:<br>
<code>sudo dpkg -i linux-firmware_1.187_all.deb</code><br>
安装之后可以在/lib/firmware中确认是否有你需要的网卡驱动</p>
<p>注意:我在用dpkg安装的时候提示 <code>dpkg-deb: 错误: 子进程 粘贴 被信号(断开的管道) 终止了</code><br>
解决方法,我们只需要使用dpkg强制覆盖就可以了,具体操作如下:<br>
<code>sudo dpkg -i --force-overwrite linux-firmware_1.187_all.deb</code><br>
<img src="https://img2020.cnblogs.com/blog/872624/202005/872624-20200513214958067-1092177832.png"></p><br><br>
来源:https://www.cnblogs.com/mengydz/p/12885137.html
頁:
[1]