$ route add default gw 172.32.0.100 $ route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface default 172.32.0.100 0.0.0.0 UG 0 0 0 usb0 172.32.0.0 * 255.255.0.0 U 0 0 0 usb0 $ ls -l /etc/resolv.conf lrwxrwxrwx 1 1000 1000 18 Oct 16 2023 /etc/resolv.conf -> ../tmp/resolv.conf $ echo "nameserver 8.8.8.8" >> /etc/resolv.conf $ cat /etc/resolv.conf nameserver 8.8.8.8
from adafruit_platformdetect import Detector detector = Detector() print("Chip id: ", detector.chip.id) print("Board id: ", detector.board.id)
$ python3 ./platformdetect.py Chip id: RV1103 Board id: LUCKFOX_PICO_MINI