Jetsontx2使用笔记

Posted by Liang Chen on November 25, 2020
  1. How to set static ip in TX2 Board?

    https://www.cnblogs.com/shuimuqingyang/p/11668561.html

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    
     # 01. check ip
     ifconfig
     # 02.
     sudo vim /etc/network/interfaces
     # 03. Add info as here
     auto eth0
     iface eth0 inet static
     address xxx.xx.xxx.xxx
     netmask 255.255.255.0
     dns-nameserver 8.8.8.8
     gateway xxx.xx.xxx.xxx 
     # 04. refresh ip
     sudo ip addr flush wlan0
     # 05. reboot network service
     sudo systemctl restart networking.service
     # 06. reboot TX2
     sudo reboot