Enabling a wireless device

When Tails starts, Wi-Fi, WWAN, and WiMAX devices are enabled.

But all other kinds of wireless devices such as Bluetooth, GPS and FM devices are disabled by default. If you want to use such a device, you need to enable it first.

Enable a wireless device

این روش از خط فرمان استفاده می‌کند.

  1. هنگام راه‌اندازی تیلز یک گذرواژهٔ مدیریتی بسازید.

  2. Choose Apps ▸ System Tools ▸ Console.

  3. Execute the following command to open a root console.

    sudo -i

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

    rfkill list

    برای نمونه این فرمان ممکن است چنین چیزی برایتان به نمایش بگذارد:

    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
    

    فهرست دستگاه‌ها ععدی است که در ابتدای سه خط توصیف هر دستگاه می‌آید. در این مثال شاخص دستگاه بلوتوث ۱ و شاخص دستگاه جی‌پی‌اس ۲ است. احتمالاً این اعداد برای شما متفاوت هستند.

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

    rfkill unblock index

    این نمونه‌ای از فرمانی است که باید اجرا کنید. ممکن است نتیجه‌ای که شما می‌بینید متفاوت باشد:

    rfkill unblock 2

  6. To verify that the wireless device is enabled, execute the following command 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.

    برای نمونه این فرمان ممکن است چنین چیزی برایتان به نمایش بگذارد:

    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