A
wireframe globe breaking out of chains

Free the internet

Support tools that break the chains of censorship and surveillance. Donate to the Tor Project today.

Through December 31, your gift will be matched, up to $250,000!

Donate now

Enabling a wireless device

Quando Tails si avvia, i dispositivi Wi-Fi, WWAN e WiMAX vengono attivati.

Ma tutti gli altri dispositivi di tipo wireless come i dispositivi Bluetooth, GPS e FM sono disattivati per impostazione predefinita. Se vuoi utilizzare uno di questi dispositivi, devi prima attivarlo.

Enable a wireless device

Questa tecnica utilizza la riga di comando.

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

  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

    Ad esempio il comando potrebbe restituire quanto segue:

    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'indice del dispositivo è il numero che appare all'inizio delle tre righe che descrivono ciascun dispositivo. In questo esempio, l'indice del dispositivo Bluetooth è 1, mentre quello del dispositivo GPS è 2. I tuoi sono probabilmente differenti.

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

    rfkill unblock index

    Ecco un esempio del comando da eseguire. Il tuo è probabilmente differente:

    rfkill unblock 2

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

    rfkill list

    L'output dovrebbe essere molto simile a quello ottenuto al passaggio 2, ma il dispositivo attivato al passaggio 3 non dovrebbe più essere "soft blocked" (bloccato via software).

    Ad esempio il comando potrebbe restituire quanto segue:

    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