engineering:computer_science:raspberrypi:raspberrypi_wlan_headless_configuration_conf_file

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
engineering:computer_science:raspberrypi:raspberrypi_wlan_headless_configuration_conf_file [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1engineering:computer_science:raspberrypi:raspberrypi_wlan_headless_configuration_conf_file [2024/08/16 13:56] (current) – ↷ Page moved from refractor_computer_science:raspberrypi:raspberrypi_wlan_headless_configuration_conf_file to engineering:computer_science:raspberrypi:raspberrypi_wlan_headless_configuration_conf_file carlossousa
Line 1: Line 1:
 +====== RaspberryPi - Connect to WLAN via conf file / Headless Configuration ======
 +
 +Just deploy a file called "**wpa_supplicant.conf**" in your boot partition - can even be done in Windows since the "/boot" partition is the only partition recognized by Windows natively - with the following bash code
 +<code bash>
 +ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
 +update_config=1
 +country=DE
 +
 +network={
 +    ssid="[REPLACE_YOUR_SSID]"
 +    psk="[REPLACE_YOUR_WLAN_PASSWORD]"
 +    key_mgmt=WPA-PSK
 +}
 +
 +</code>