zoukankan      html  css  js  c++  java
  • 然当装入Ubuntu双系统时,会出现无线硬件开关关闭的问题,当然也就无法连网

    rfkill list all

          会出现如下提示

          0:ideapad_wlan: Wireless LAN
          Soft blocked: no
          Hard blocked:yes
          1:ideapad_bluetooth: Bluetooth
          Soft blocked: no
          Hard blocked: yes
          2:phy0: Wireless LAN
          Soft blocked: no
          Hard blocked:no
          3:hci0: Bluetooth
          Soft blocked: yes
          Hard blocked: no

          可以看到,优先级前的ideapad_wlan的Hard blocked 默认为yes,即ubuntu默认关闭了硬件wifi开关,而超极本yoga2 pro 这样的只有软件开关wifi,没有硬件开关的启动,所以引起了wifi无法开启的问题。

          二、问题解决

          从无线模块的显示列表可以看出,序号2的wifi模块是软硬件是可以启动的,所以,只要将前面默认的模块移出即可;使用命令:

          sudo modprobe -r ideapad_laptop

          即移出了ideapad的无线模块,再使用命令查看:

          rfkill list all

          如下提示:

          2:phy0: Wireless LAN
          Soft blocked: no
          Hard blocked:no
          3:hci0: Bluetooth
          Soft blocked: yes
          Hard blocked: no

          即wifi模块工作正常,然而每次重启ubuntu系统都要重新进行模块移出,故可将该命令设置为开机自启动,方法是在/etc/rc.local文件中添加命令。

          #!/bin/sh -e
          #
          # rc.local
          #
          # This script is executed at the end of each multiuser runlevel.
          # Make sure that the script will "exit 0" on success or any other
          # value on error.
          #
          # In order to enable or disable this script just change the execution
          # bits.
          #
          # By default this script does nothing.
          #因为使用的是非管理员登录,故在执行sudo命令时要输入密码,方可自动化执行,
          #此处假设用户密码为123,命令一定要在exit 0之前运行,该文件如果没有修改权限
          #修改前使用 chmod 命令修改权限即可!
          echo "123" |sudo modprobe -r ideapad_laptop
          exit 0

          开机启动后系统会自动执行改脚本文件,完成wifi模块的自动移出操作

  • 相关阅读:
    Java基础算法--排序
    Java基础之String类的细节问题
    Java数据结构四之——二叉树的前、中、后序遍历
    动态规划之----最长公共子序列(LCS)
    最长公共子串问题
    makefile学习笔记
    使用正则表达式,去除C++的注释
    gbk字库音序对照表
    Fsharp 类中的空字段
    使用FSharp 探索Dotnet图像处理功能2--均衡灰度
  • 原文地址:https://www.cnblogs.com/mcy0808/p/5415689.html
Copyright © 2011-2022 走看看