Hello,
I am building a mobile game that uses the Pi as a HW accessory (data feeder). I'd like to configure the Wifi settings (AP + pwd) on the Pi in headless mode. Has anyone tried to do that before? What good solutions are available out there?
Thanks!
Re: Headless WiFi configuration
By way of explanation...
The Raspberry Pi normally uses a MicroSD card formatted with two partitions, called boot, and root. The root filesystem (if you're using Raspbian, the most common case) is an ext4 filesystem that contains the entire normal Unix/Linux filesystem, mounted as "/" after startup, while boot is a DOS-style FAT filesystem, that is used only during booting, and ends up mounted as "/boot" after the system is running. When you attach the MicroSD card from a Raspberry Pi to a typical "desktop" computer (Mac or Windows), you'll get read/write access to the boot partition, while the root partition is normally invisible - it can only be mounted by installing extra drivers and fiddling around.
Also, the SSIDs and passphrases for WiFi networks are normally kept on the Raspberry Pi in the file /etc/wpa_supplicant/wpa_supplicant.conf.
My apologies if I'm overexplaining and you already know these bits; they make this next part understandable...
Quoting from the article on this site titled, "The latest update to Raspbian":
I'm not actually certain whether the file gets copied or moved (yes, I know it says "moved"), as I've not had a reason to try it myself. But if it does get removed from /boot in the process, you can simply keep a copy there with a different name, say, wpa_supplicant.base, and then edit that as needed and make a copy named wpa_supplicant.conf when you're done.
The file has the network's SSID and passphrase in a section like this:You can add multiple entries like this, so you should be able to make the Pi connect to any of several WiFi networks, as needed.
The Raspberry Pi normally uses a MicroSD card formatted with two partitions, called boot, and root. The root filesystem (if you're using Raspbian, the most common case) is an ext4 filesystem that contains the entire normal Unix/Linux filesystem, mounted as "/" after startup, while boot is a DOS-style FAT filesystem, that is used only during booting, and ends up mounted as "/boot" after the system is running. When you attach the MicroSD card from a Raspberry Pi to a typical "desktop" computer (Mac or Windows), you'll get read/write access to the boot partition, while the root partition is normally invisible - it can only be mounted by installing extra drivers and fiddling around.
Also, the SSIDs and passphrases for WiFi networks are normally kept on the Raspberry Pi in the file /etc/wpa_supplicant/wpa_supplicant.conf.
My apologies if I'm overexplaining and you already know these bits; they make this next part understandable...
Quoting from the article on this site titled, "The latest update to Raspbian":
So, if you do the initial configuration of a Raspbery Pi, you should be able to then copy the file /etc/wpa_supplicant/wpa_supplicant.conf into /boot, where it will be accessible when the MicroSD card is mounted in a PC or Mac, where you'll be able to change the contents as needed.• If a wpa_supplicant.conf file is placed into the /boot/ directory, this will be moved to the /etc/wpa_supplicant/ directory the next time the system is booted, overwriting the network settings; this allows a Wifi configuration to be preloaded onto a card from a Windows or other machine that can only see the boot partition.
I'm not actually certain whether the file gets copied or moved (yes, I know it says "moved"), as I've not had a reason to try it myself. But if it does get removed from /boot in the process, you can simply keep a copy there with a different name, say, wpa_supplicant.base, and then edit that as needed and make a copy named wpa_supplicant.conf when you're done.
The file has the network's SSID and passphrase in a section like this:
Code: Select all
network={
ssid="YourNetworkSSID"
psk="Your Network's Passphrase"
key_mgmt=WPA-PSK
}
Re: Headless WiFi configuration
Hello,
I used Raspberry Pi 3 Model B+ for my project. In case you are interested, I can share my files (it's not yet finished though, have no time to get back to it). I also tried to create a Pi-based console emulator which actually looked like NES Classic.
I used Raspberry Pi 3 Model B+ for my project. In case you are interested, I can share my files (it's not yet finished though, have no time to get back to it). I also tried to create a Pi-based console emulator which actually looked like NES Classic.
Re: Headless WiFi configuration
The OP has not been here since 2016 (you can tell by clicking on his name).
There are many many questions on setting up the Pi in headless mode (WiFi, ssh, USB connect) on the forum now and a full set of documentation at https://www.raspberrypi.org/documentation/
Given the operating system has changed since the answer - the answer is technically wrong as it does not mention that the country value now has to be included in the file.
Please check before opening old old threads.
There are many many questions on setting up the Pi in headless mode (WiFi, ssh, USB connect) on the forum now and a full set of documentation at https://www.raspberrypi.org/documentation/
Given the operating system has changed since the answer - the answer is technically wrong as it does not mention that the country value now has to be included in the file.
Please check before opening old old threads.