You can name the wifi as you like, and you need to select “Hotspot” for the Mode.
In the Wi-fi security tab, you can setup an password to protect your jetson from being accessed by others.
In the “General” tab, you need to check “Automatically connect to this network when it is available” so it will start the wifi hotspot on boot.
After rebooting your device, you should be able to connect it via the wifi hotspot and access OpenDataCam if started.
Click on the network icon on the top right > Connection Information
This was tested on the Jetson Nano Developer Kit SD Card Image (JP 4.4 released on 2020/07/07).
But it should work on any Linux distribution with NetworkManager and nmcli
installed.
To create an hotspot or ad-hoc WiFi network execute the following command
nmcli device wifi hotspot ifname wlan0 ssid <SSID> password <PASS>
This will create a hotspot with SSID <SSID>
.
The hotspot will remain available until the device reboots or the hotspot is closed manually.
If the hotspot should be automatically created on boot execute the following command after creating the hotspot
nmcli con modify Hotspot connection.autoconnect true
1.Wifi-Hotspot doesn’t show up on other devices –> go to /etc/modprobe.d/bcmdhd.conf and add the line: options bcmdhd op_mode=2 –> reboot your device