3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Jetson TX2 IP固定化

Last updated at Posted at 2019-11-01

#Jetson TX2のIP固定化
諸事情でjetsonのIPを固定化する必要があり,ググった記事でまともに動いたものがなかったので
備忘録として....

##環境
● Jetson TX2 (Ubuntu 16.04 LTS)

##まずやってみたこと
/etc/network/interfaces の編集

こんな感じに追記

/etc/network/interfaces
auto #####
iface ##### inet static
	address 192.168.1.###
	netmask 255.255.255.0
	gateway 192.168.1.1
	dns-nameservers 192.168.1.1

rebootしても固定化できてない....
##なんだかんだで最終的にできた方法
●ubuntuの設定(歯車みたいなやつ)の
Hardware/Network/Wirelessタブから固定したいネットワークの>をクリックして
表示された詳細画面からSettingに入る
connection name でSSIDの末尾に1とか2とか入っていないか確かめる(入っていたら消す)←重要
あとはIPv4のsettingからお好みで....

##結論
terminalばっかり使ってると他のすばらしいGUIの存在に気付かなくなる

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?