1. 首页 > 科技

linux系统 ifconfig wlan0 up没有反应,无线网卡是有网络的,但是打开失败?

linux系统 ifconfig wlan0 up没有反应,无线网卡是有网络的,但是打开失败?

LINUX启动网卡失败了怎么办

我们在Linux中启动网卡,经常会遇到启动失败,或者是网卡没有被激活的情况。那么我们应该如何解决这个问题呢,下面就跟着学习啦小编一起来看看LINUX启动网卡失败的解决方法吧。

  LINUX启动网卡失败的解决方法

  错误提示信息如下:

  Shutting down interface eth0: Error: Device 'eth0' (//freedesktop/NetworkManager/Devices/0) disconnecting failed: This device is not active

  使用这个命令,先chkconfig NetworkManager on

  然后使用命令chkconfig NetworkManager off

  然后再使用 service network start

进入Linux之后插上无线网卡不能识别,怎么办?

如咨询的是无法使用3G无线上网卡的业务,3G无线上网卡无法使用的处理方法:

1.请确认所在的地区是否有中国联通WCDMA3G网络覆盖。

2.请确认无线上网卡是否插好。若没有插好,请重新插入;

3.若是驱动程序有问题,请删除无线上网卡驱动程序,并重新安装驱动程序;

4.检查无线上网卡是否有余额足够抵扣月租费;

5.检查当月的使用流量超过15G后自动关闭上网功能;

6.检查无线上网卡卡体是否有问题;

7.若USIM卡有故障,请与当地联通营业厅联系。

如非上述情况,建议可联系归属地客服了解。

linux系统下找不到wifi图标,显示没有wifi适配器,怎么办???

笔记本的话,看看无线网卡开关有没有打开。要是关闭的,装系统时可能就没有安装驱动。执行ifconfig查看网络。

$ ifconfig

eth0 Link encap:Ethernet HWaddr A0:48:1C:C0:99:15

……

lo Link encap:Local Loopback

……

wlan0 Link encap:Ethernet HWaddr 48:D2:24:B2:C4:71

……

一般有线是eth0,eth1,最近也有其他表示像enp2s0,如果是无线,一般是wlan0,也有wifi。如果实在困难,看不懂指令返回结果,那看看你的电脑说明书,或者问问售后,网卡是哪一种,下载linux版的驱动。即使是所谓笔记本,也有有线链接。就是路由器和电脑之间用一根网线连接。就可以暂时先用有线连接上网来下载驱动。关键要知道电脑的无线网卡是那个厂商,那个型号的。这样才好寻找驱动。要是台式机,可能本来就没有无线网卡。

如何解决Linux操作系统找不到网卡的问题

Unpack the tarball : # tar vjxf r8168-8.aaa.bb.tar.bz2 Change to the directory: # cd r8168-8.aaa.bb If you are running the target kernel, then you should be able to do : # make clean modules (as root or with sudo) # make install # /sbin/depmod -a # /sbin/insmod ./src/r8168.ko (or r8168.o in linux kernel 2.4.x) You can check whether the driver is loaded by using following commands. # /sbin/lsmod | grep r8168(看看有没有加载网卡驱动) # /sbin/ifconfig –a(看看有没有相关网卡被启动的信息) If there is a device name, ethX, shown on the monitor, the linux driver is loaded. Then, you can use the following command to activate the ethX. # ifconfig ethX up ,where X=0,1,2,... 这里也可以通过系统→管理→网络来设置IP地址等,最后激活。 1. Set manually a. Set the IP address of your machine. # ifconfig ethX "the IP address of your machine" b. Set the IP address of DNS. Insert the following configuration in /etc/resolv.conf. nameserver "the IP address of DNS" c. Set the IP address of gateway. # route add default gw "the IP address of gateway" 2. Set by doing configurations in /etc/sysconfig/network-scripts /ifcfg-ethX for Redhat and Fedora, or /etc/sysconfig/network /ifcfg-ethX for SuSE. There are two examples to set network configurations. a. Fix IP address: DEVICE=eth0 BOOTPROTO=static ONBOOT=yes TYPE=ethernet NETMASK=255.255.255.0 IPADDR=192.168.1.1 GATEWAY=192.168.1.254 BROADCAST=192.168.1.255 2. 修改:#vi /etc/hosts,在该文本中,增加两行: 127.0.0.1 localhost.localdomain localhost 192.168.4.101 node3(根据机器本身情况设置) 修改:vi /etc/hosts.equiv,增加一行:(如果没有该文本,可建立一个) node3 3. 启动ssh服务 大部分的Linux版本应该都会自带该程序 #ssh-keygen #cd .ssh #cp id_rsa.pub authorized_keys #ssh node3(如果成功,会显示上次登陆的时间, node3是主机名) 附加信息: ifup eth0看看能否启动eth0 lsmod看看有没有加载网卡驱动 dmesg看看有没有网卡启动时的错误信息 (责任编辑:云子)