I wanted to ask wether anybody has been able to activate the wifi of the jetson Orin NX in their G1? It has a build in Wifi chip, but it is soft blocked and I did not manage, no matter how much I tried, to activate the wifi. This however would be really usefull on a mobile robot, to not have to strap a cable everywhere. Thanks in advance for your help
might be bit late but could be helpful for others.
1.Refer this doc’- 宇树科技 文档中心 under the topic -”nmcli Configures the WIFI mode”
- check if it’s connected by using these commands - “nmcli device wifi list” and “nmcli device status”
- check ip routing - “ip route”
- check the connected wifi’s configuration - “ip a”
- check the connected wifi’s ip - “ip a show wlan0”
- Add Default Route via
wlan0:
Ifwlan0is connected but there’s no default route for it, you can add it manually. Assuming your router’s IP is192.168.123.1(based on your current route configuration), run the following command:sudo ip route add default via 192.168.123.1 dev wlan0. - “sudo ip route add default via 192.168.123.1 dev wlan0" - Check the Route Again:
Runip routeagain to confirm that the default route is now set forwlan0. You should see something like this: -default via 192.168.123.1 dev wlan0 - Test Internet Connectivity:
Now that the default route is set forwlan0, try to update your package list again:sudo apt-get update
1 Like