求助:台式机使用网络转接口,开机没有有线网络
Tofloor
poster avatar
yxh963364
deepin
2020-03-22 16:04
Author
需要安装什么驱动吗
Reply Favorite View the author
All Replies
avatar
yxh963364
deepin
2020-03-22 16:13
#1
WIN系统是即插即用,deepin需要怎么做?
Reply View the author
avatar
swqa001
deepin
2020-03-22 17:12
#2
网络转接口?是USB无线网卡吗?有具体型号吗,我这边好几种USB无线网卡都能驱动上
Reply View the author
avatar
DeepinOS
deepin
2020-03-22 17:20
#3
正常的linux也是插上就能用,不过可能网卡没有驱动,
用ifconfig 命令看一下有没有网卡在,
Reply View the author
avatar
pollora1979
deepin
2020-03-22 22:22
#4
本帖最后由 pollora1979 于 2020-3-22 14:26 编辑

1。Ifconfig -a 查看网卡名
假设查出来的网卡名为eno1

ethtool -i eno1 //查看当前网卡驱动版本

可知网卡eno1依赖于igb驱动

2。Lspci | grep net //查看网卡型号
然后去官网下载对应的驱动
3。下载完毕后,上传到服务器上

4查看服务器的内核版本

Uname -r
5。cd /usr/src/kernels/  在目录下查找对应的内核源码
cd .. 回到上层目录,也就是cd /usr/src/

然后对相应的内核源码执行软连接

ln -s kernelsXX.rcserver.x86_64/ linux
6解压缩下载安装包,并进入解压缩后目录
make
然后执行make install 进行编译。
如果报错
这是因为缺少了 build-essential 软件包,它的作用是 提供编译程序必须软件包的列表信息。再更新下 linux-headers-generic

apt-get install build-essential

apt-get install linux-headers-generic
查询新的驱动:lshw -c network
7最后重启或者service network restart 重启网络服务

忘了说,这种方法需要联网,提醒一种获取网络的方法:手机usb连接电脑,开启USB网络共享即可。
还有简单办法
添加ubuntu源

sudo apt-get updatesudo apt-get --reinstall install bcmwl-kernel-source
不过也是需要联网

Reply View the author
avatar
yxh963364
deepin
2020-03-29 02:40
#5
https://bbs.deepin.org/post/189910
1。Ifconfig -a 查看网卡名
假设查出来的网卡名为eno1

所在搞不定,能否远程帮弄下
Reply View the author