zoukankan      html  css  js  c++  java
  • 双硬盘Win7装Ubuntu 12.04经验并解决无线网络不能使用问题

     RFKill

    Many computer systems contain radio transmitters, including Wi-Fi, Bluetooth, and 3G devices. These devices consume power, which is wasted when the device is not in use.
    RFKill is a subsystem in the Linux kernel that provides an interface through which radio transmitters in a computer system can be queried, activated, and deactivated. When transmitters are deactivated, they can be placed in a state where software can reactive them (a  soft block) or where software cannot reactive them (a  hard block).
    The RFKill core provides the application programming interface (API) for the subsystem. Kernel drivers that have been designed to support RFkill use this API to register with the kernel, and include methods for enabling and disabling the device. Additionally, the RFKill core provides notifications that user applications can interpret and ways for user applications to query transmitter states.
    The RFKill interface is located at  /dev/rfkill, which contains the current state of all radio transmitters on the system. Each device has its current RFKill state registered in  sysfs. Additionally, RFKill issues  uevents for each change of state in an RFKill-enabled device.
    Rfkill is a command-line tool with which you can query and change RFKill-enabled devices on the system. To obtain the tool, install the  rfkill package.
    Use the command  rfkill list to obtain a list of devices, each of which has an  index number associated with it, starting at  0. You can use this index number to tell  rfkill to block or unblock a device, for example:
    rfkill block 0
    blocks the first RFKill-enabled device on the system.
    You can also use  rfkill to block certain categories of devices, or all RFKill-enabled devices. For example:
    rfkill block wifi
    blocks all Wi-Fi devices on the system. To block all RFKill-enabled devices, run:
    rfkill block all
    To unblock devices, run  rfkill unblock instead of  rfkill block. To obtain a full list of device categories that rfkill can block, run  rfkill help
  • 相关阅读:
    Python判断文件和文件夹是否存在的方法
    机器学习之深度学习
    机器学习之深度学习
    以云计算与大数据为代表的信息技术是电力行业未来发展核心
    以云计算与大数据为代表的信息技术是电力行业未来发展核心
    机器学习之决策树(ID3)算法与Python实现
    机器学习之决策树(ID3)算法与Python实现
    R语言基础画图/绘图/作图
    R语言基础画图/绘图/作图
    rabbitmq 入门基础(一)
  • 原文地址:https://www.cnblogs.com/james1207/p/3395166.html
Copyright © 2011-2022 走看看