Tails 启动时会启用 Wi-Fi,WWAN 与 WiMAX 设备。

而所有其它类型的无线设备,如蓝牙、GPS 和 FM 设备在默认下是关闭的。如需要使用这样的设备,您需要首先启用它。

Enable a wireless device

您需通过命令行完成。

  1. When starting Tails, set up an administration password.

  2. To find out the index of the wireless device that you want to enable, open a root terminal, and execute the following command:

    rfkill list

    For example, the command could return the following:

    0: phy0: Wireless LAN
            Soft blocked: no
            Hard blocked: no
    1: hci0: Bluetooth
            Soft blocked: yes
            Hard blocked: no
    2: gps0: GPS
            Soft blocked: yes
            Hard blocked: no
    

    The device index is the number that appears at the beginning of the three lines describing each device. In this example, the index of the Bluetooth device is 1, while the index of the GPS device is 2. Yours are probably different.

  3. To enable the wireless device, execute the following command in the root terminal, replacing index with the index found at step 2:

    rfkill unblock index

    Here is an example of the command to execute. Yours is probably different:

    rfkill unblock 2

  4. To verify that the wireless device is enabled, execute the following command in the root terminal again:

    rfkill list

    This output should be very similar to the one of step 2, but the device enabled at step 3 should not be soft blocked anymore.

    For example, the command could return the following:

    0: phy0: Wireless LAN
            Soft blocked: no
            Hard blocked: no
    1: hci0: Bluetooth
            Soft blocked: yes
            Hard blocked: no
    2: gps0: GPS
            Soft blocked: no
            Hard blocked: no