Ein drahtloses Gerät aktivieren

Beim Start von Tails werden W-LAN-, WWAN- und WiMAX-Geräte aktiviert.

Aber alle anderen drahtlosen Geräte, beispielsweise Bluetooth, GPS- und FM-Geräte, sind standardmäßig deaktiviert. Wenn sie ein solches Gerät benutzen möchten, müssen Sie es zuerst aktivieren.

Ein drahtloses Gerät aktivieren

Bei diese Vorgehensweise wird die Kommandozeile verwendet.

  1. Beim Starten von Tails richten Sie ein Administrationspasswort ein.

  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

    Beispielsweise könnte der Befehl folgendes zurückgeben:

    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
    

    Der Geräte-Index ist die Nummer, die zu Beginn der drei Zeilen erscheint, die das jeweilige Gerät beschreiben. In diesem Beispiel ist der Index des Bluetooth-Geräts 1, währenddessen der Index des GPS-Geräts 2 ist. Ihre sind möglicherweise anders.

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

    rfkill unblock Index

    Hier ist ein Beispiel des auszuführenden Befehls. Ihrer ist möglicherweise anders:

    rfkill unblock 2

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

    rfkill list

    Die Ausgabe sollte der vom zweiten Schritt sehr ähneln, jedoch sollte das im dritten Schritt aktivierte Gerät nicht mehr soft blocked sein.

    Beispielsweise könnte der Befehl folgendes zurückgeben:

    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