Update website PO files.
[tails-test.git] / wiki / src / doc / advanced_topics / wireless_devices.mdwn
blob87c8f4522dce104e923ac5565ed9b1a69e3f9caf
1 [[!meta title="Enable a wireless device"]]
3 When Tails starts, Wi-Fi, Bluetooth, WWAN and WiMAX
4 devices are enabled.
6 But all other kinds of wireless devices such as GPS and FM devices are
7 disabled by default. If you want to use such a device, you need to enabled
8 it first.
10 This technique uses the command line.
12 1. When starting Tails, [[set up an administration
13    password|doc/first_steps/startup_options/administration_password]].
15 2. To find out the index of the wireless device that you want to enable,
16    open a [[root
17    terminal|doc/first_steps/startup_options/administration_password#open_root_terminal]],
18    and execute the following command:
20        rfkill list
22    For example, the command could return the following:
24        0: phy0: Wireless LAN
25                Soft blocked: no
26                Hard blocked: no
27        1: hci0: Bluetooth
28                Soft blocked: no
29                Hard blocked: no
30        2: gps0: GPS
31                Soft blocked: yes
32                Hard blocked: no
34    The device index is the number that appears at the beginning of the
35    three lines describing each device. In this example, the index of the Bluetooth
36    device is 1, while the index of the GPS device is 2. Yours are
37    probably different.
39 3. To enable the wireless device,
40    execute the following command in the root terminal, replacing
41    `[index]` with the index found at step 2:
43        rfkill unblock [index]
45    Here is an example of the command to execute. Yours is probably
46    different:
48        rfkill unblock 2
50 4. To verify that the wireless device is enabled,
51    execute the following command in the root terminal again:
53        rfkill list
55    This output should be very similar to the one of step 2, but
56    the device enabled at step 3 should not be soft
57    blocked anymore.
59    For example, the command could return the following:
61        0: phy0: Wireless LAN
62                Soft blocked: no
63                Hard blocked: no
64        1: hci0: Bluetooth
65                Soft blocked: no
66                Hard blocked: no
67        2: gps0: GPS
68                Soft blocked: no
69                Hard blocked: no