- Connect Jetson TK1 to your router
- Connect AC adapter to Jetson tk1
Jetson boots as soon as you connect AC adapter.
- Check connection to Jetson tk1 with command "ping tegra-ubuntu" from host PC in same local network.
If "ping tegra-ubuntu" failed and you think Jetson TK1 is connected to your network, you can get IP address of Jetson TK1 with following command.
In linux:
(not tested)
nmap -sP -n 192.168.1.1-254
or
for i in 192.168.1.{1..254}; do ping -c 1 -w 1 $i && echo $i >> log; done
In windows:
for /l %i in (1,1,254) do ping -w 1 -n 1 192.168.1.%i && echo 192.168.1.%i >> log
log file contains a list of IP adress of PC in your local network.
If a IP address of your Jetson TK1 is "192.168.1.2", add following line to /etc/hosts. Then, you can use "tegra-ubuntu".
192.168.1.2 tegra-ubuntu
(If a IP address of your Jetson TK1 was changed, you need to update the file.)
Or you use "192.168.1.2" instead of "tegra-ubuntu".
(I don't know why, but ping "tegra-ubuntu" never work in my local network.)
- Run ssh client and connect to Jetson TK1 in host PC
ssh ubuntu@tegra-ubuntu
- Login as username:ubuntu/password:ubuntu