×

linux下Intel 3945ABG 安装无线网卡驱动

消耗积分:1 | 格式:rar | 大小:0.4 MB | 2017-11-06

分享资料个

 1. 添加 atrpms 源
  # gedit /etc/yum.repos.d/atrpms.repo
  添加以下内容:
  代码:
  [atrpms]
  Core $releasever - $basearch - ATrpms
  baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable
  gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
  enabled=0
  gpgcheck=1
  安装 key:
  # rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms
  2. 安装驱动
  # yum --enablerepo=atrpms install ipw3945-kmdl-`uname -r` ieee80211-kmdl-`uname -r`
  3. 打开无线网卡
  脚本:
  代码:
  #!/bin/bash
  #
  # ipw3945d Load/Unload Intel ipw3945 daemon
  #
  # chkconfig: 2345 09 90
  # description: Load / Unload Intel ipw3945 daemon
  #
  ### BEGIN INIT INFO
  # Provides: ipw3945d
  ### END INIT INFO
  # Source function library.
  。 /etc/init.d/functions
  if [ ! -f /etc/sysconfig/network ]; then
  exit 0
  fi
  case “$1” in
  start)
  echo -n “Starting ipw3945d:”
  /sbin/ipw3945d 》 /dev/null 2》&1
  echo
  ;;
  stop)
  echo -n “Stopping ipw3945d:”
  killproc ipw3945d
  echo
  ;;
  status)
  status ipw3945d
  ;;
  restart)
  cd “$CWD”
  $0 stop
  $0 start
  ;;
  *)
  echo $“Usage: $0 {start|stop|restart|status}”
  exit 1
  esac
  exit 0
  把上面的代码保存为 ipw3945d。
  # mv ipw3945d /etc/init.d
  # chmod +x /etc/init.d/ipw3945d
  # chkconfig --level 5 NetworkManager on
  # chkconfig --level 5 NetworkManagerDispatcher on
  # chkconfig --level 5 ipw3945d on
  # service NetworkManager start
  # service NetworkManagerDispatcher start
  # service ipw3945d start
  4. 测试
  # ifconfig
  # iwlist scanning
 

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !