Activació d'un dispositiu sense fil

Quan s'inicia Tails, els dispositius Wi-Fi, WWAN i WiMAX estan activats.

Però tots els altres tipus de dispositius sense fil, com ara dispositius Bluetooth, GPS i FM, estan desactivats per defecte. Si voleu utilitzar un dispositiu d'aquest tipus, primer heu d'activar-lo.

Activar un dispositiu sense fil

Aquesta tècnica utilitza la línia d'ordres.

  1. En iniciar Tails, configureu una contrasenya d'administració.

  2. Choose Apps ▸ System Tools ▸ Root Console to open a console with administration rights.

  3. To find out the index of the wireless device that you want to enable, execute the following command:

    rfkill list

    Per exemple, l'ordre podria retornar el següent:

    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
    

    L'índex del dispositiu és el número que apareix al principi de les tres línies que descriuen cada dispositiu. En aquest exemple, l'índex del dispositiu Bluetooth és 1, mentre que l'índex del dispositiu GPS és 2. El vostre és probablement diferent.

  4. To enable the wireless device, execute the following command. Replace index with the index found at step 2:

    rfkill unblock index

    Aquí teniu un exemple de l'ordre a executar. La vostra és probablement diferent:

    rfkill unblock 2

  5. To verify that the wireless device is enabled, execute the following command again:

    rfkill list

    Aquesta sortida hauria de ser molt semblant a la del pas 2, però el dispositiu habilitat al pas 3 ja no hauria d'aparèixer bloquejat per software.

    Per exemple, l'ordre podria retornar el següent:

    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