Set static IP on jetson nano
I need to set static IP address on Jetson nano. I have edited /etc/network/interfaces
Currently eth0 is disabled:
But it fails to go up:
how can I fix this?
Important note: I need to set static ip from command line.
Could you try to restart the network server and try again?
Also you may need to add the dns server:
/etc/init.d/networking restart fails, because it calls ifup, which fails.
Try to instead set this up via the application “nm-connection-editor” (use “sudo nm-connection-editor”, and if you don’t have this, then “sudo apt-get install network-manager-gnome”). You’d use the MAC address to identify the device if you have more than one possible device (see “ifconfig” output for MAC addresses).
GUI interface is also broken, it doesn’t allow to change IP address. I’ve found a rootcause and walkaround by the way. All the utils are broken because they try to use ifup and ifdown scripts, which also fail because dhclient is running. To kill dhclient, you have to run it dhclient -r as root.
I’m getting the same issue, and it looks like sudo dhclient -r doesn’t fix it for me.
Just to clarify, running sudo ifdown eth0 , editing /etc/network/interfaces to:
Running sudo ifup eth0 results in:
You were able to fix this with sudo dhclient -r ?
Jetson network subsystem is broken. I.e. you have remove network manager with systemctl in order to fix it. And write your own, which will use dhcpclient and ifup. Don’t expect files like /etc/network/interfaces to work.
i managed to do it, first we need to go to “/etc/default/networking” and change the parameter “CONFIGURE_INTERFACES” to “no”
then the configuration in “/etc/network/interfaces” works.
I just installed the latest JetBot image jetbot-041_nano-4gb-jp441.zip and was able to set a static ip via the NetworkManager CLI as such:
Note: This was after connecting the WiFi to a router via the Ubuntu GUI.
List available connections: nmcli d wifi list IN-USE SSID MODE CHAN RATE SIGNAL BARS SECURITY * MySSID Infra 11 130 Mbit/s 60 ▂▄▆_ WPA2
Set Static IP for the WiFi connection: sudo nmcli con mod "MySSID" ipv4.addr "192.168.2.203/24" gw4 "192.168.2.1" ipv4.dns "8.8.8.8,8.8.4.4" ipv4.method "manual"
Reboot the Nano.
After this, the IP was set to the static IP I set.
The following worked for me. /etc/NetworkManager/system-connections sudo vi mySSID
Add the following lines
[ipv4] dns-search= method=auto address1=192.168.1.57/24
Reboot now.
This solution worked beautifully for me. I did modify it slightly since I was using a wired connection but it was one simple line
sudo nmcli connection modify Wired\ connection\ 1 ipv4.addresses “###.###.###.###” gw4 “###.###.###.###” ipv4.method “manual”
sudo reboot
After this ip was changed and reported as Static on my modem
- Stack Overflow Public questions & answers
- Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers
- Talent Build your employer brand
- Advertising Reach developers & technologists worldwide
- About the company

Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
How te set a static IP for a Jetson Nano?
I want to set a static IP for a Jetson Nano in my local network. What I've tried:
-- Changing the DHCP on the router.
-- editing /etc/network/interfaces with the following:
Both this options doesn't seem to work.
- nvidia-jetson-nano
It seems the Jetson Nano has an underlying configuration for the network interface of the board.
1) edit /etc/default/networking
and set the parameter CONFIGURE_INTERFACES=no
2) Now then the settings in /etc/network/interfaces will work
3) Reboot the board

Your Answer
Sign up or log in, post as a guest.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy
Not the answer you're looking for? Browse other questions tagged ubuntu nvidia-jetson-nano or ask your own question .
- The Overflow Blog
- How Intuit democratizes AI development across teams through reusability sponsored post
- The nature of simulating nature: A Q&A with IBM Quantum researcher Dr. Jamie...
- Featured on Meta
- We've added a "Necessary cookies only" option to the cookie consent popup
- Launching the CI/CD and R Collectives and community editing features for...
- Staging Ground Beta 1 Recap, and Reviewers needed for Beta 2
- The [amazon] tag is being burninated
Hot Network Questions
- What can a lawyer do if the client wants him to be acquitted of everything despite serious evidence?
- Why is this sentence from The Great Gatsby grammatical?
- How to calculate lattice parameter?
- Are there tables of wastage rates for different fruit and veg?
- If a law is new but its interpretation is vague, can the courts directly ask the drafters the intent and official interpretation of their law?
- Replacing broken pins/legs on a DIP IC package
- Why are non-Western countries siding with China in the UN?
- Why is there a voltage on my HDMI and coaxial cables?
- Theoretically Correct vs Practical Notation
- Can airtags be tracked from an iMac desktop, with no iPhone?
- About an argument in Famine, Affluence and Morality
- Time arrow with "current position" evolving with overlay number
- The difference between the phonemes /p/ and /b/ in Japanese
- What did Ctrl+NumLock do?
- How to show that an expression of a finite type must be one of the finitely many possible values?
- How can I detect that \centering is in effect?
- What video game is Charlie playing in Poker Face S01E07?
- QGIS - Countif function
- Is lock-free synchronization always superior to synchronization using locks?
- Styling contours by colour and by line thickness in QGIS
- Is it correct to use "the" before "materials used in making buildings are"?
- How do particle accelerators like the LHC bend beams of particles?
- Why should transaction_version change with removals?
- Is there a solutiuon to add special characters from software and how to do it
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .
Stack Exchange Network
Stack Exchange network consists of 181 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It only takes a minute to sign up.
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Set static IP on jetson nano
I need to set static IP address on Jetson nano. I have edited /etc/network/interfaces
Currently eth0 is disabled:
But it fails to go up:
how can I fix this?
I use the following to setup my static IP address. You were close, but you must have a valid gateway. "255" is the broadcast address, not the gateway...
Make sure to use valid dns-nameservers and for the dns-search , you probably don't need that line. If you don't want to access the Internet from the Jetson, then you also don't need the dns-nameservers .
Your Answer
Sign up or log in, post as a guest.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy
Not the answer you're looking for? Browse other questions tagged networking nvidia ethernet or ask your own question .
- The Overflow Blog
- How Intuit democratizes AI development across teams through reusability sponsored post
- The nature of simulating nature: A Q&A with IBM Quantum researcher Dr. Jamie...
- Featured on Meta
- We've added a "Necessary cookies only" option to the cookie consent popup
- Announcement: AI-generated content is now permanently banned on Ask Ubuntu
Hot Network Questions
- If you preorder a special airline meal (e.g. vegan) just to try it, does this inconvenience the caterers and staff?
- Is there a single-word adjective for "having exceptionally strong moral principles"?
- Why are physically impossible and logically impossible concepts considered separate in terms of probability?
- If a law is new but its interpretation is vague, can the courts directly ask the drafters the intent and official interpretation of their law?
- How do I align things in the following tabular environment?
- Time arrow with "current position" evolving with overlay number
- Is it suspicious or odd to stand by the gate of a GA airport watching the planes?
- Where does this (supposedly) Gibson quote come from?
- Do I need a thermal expansion tank if I already have a pressure tank?
- How do particle accelerators like the LHC bend beams of particles?
- Finite abelian groups with fewer automorphisms than a subgroup
- Is a PhD visitor considered as a visiting scholar?
- A-Z related to countries
- Recovering from a blunder I made while emailing a professor
- How do you get out of a corner when plotting yourself into a corner
- Why are Suriname, Belize, and Guinea-Bissau classified as "Small Island Developing States"?
- Who owns code in a GitHub organization?
- BASIC line input buffer location on ZX Spectrum
- Can I tell police to wait and call a lawyer when served with a search warrant?
- Theoretically Correct vs Practical Notation
- How does fire heat air?
- Does Counterspell prevent from any further spells being cast on a given turn?
- Styling contours by colour and by line thickness in QGIS
- How can I explain to my manager that a project he wishes to undertake cannot be performed by the team?
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .
- The Ninja Way
- Raspberry Pi
- Jetson Nano
- First Login
- Adding a Camera
- Adding Limited Accounts
- Remote Management
- Compress Videos
- Contributing
- Community Chat
- Forum on Reddit
- Merge Requests
- Issues on Gitlab
- Monitor Logs
- Troubleshoot a Camera
- Scheduling Monitors
- How to setup PTZ
- PTZ Tracking
- Included ONVIF Device Manager
- Additional Input Feeds
- Dynamic Substream
- Motion Detection
- Object Detection
- ONVIF Event Triggering
- FTP-based Triggering
- SMTP-based Triggering
- MQTT Triggering
- How to Install Plugins
- Detector Plugins
- Tensorflow (Object)
- Tensorflow Coral (Object)
- Yolo (Object)
- Deepstack (Object)
- Facial Recognition (Object)
- Event Filtering
- Detector Plugins in Cluster Mode
- Trigger Multiple Cameras
- Migrate your Shinobi
- Migrate your ZoneMinder
- Backup Monitors
- Automatically Backup Monitors
- Backup to Amazon S3
- Backup to Backblaze B2
- Backup to Google Drive
- Authentication
- Managing API Keys by UI
- Managing API Keys by API
- Get Monitors
- Get Streams
- Embedding Streams
- Add, Edit or Delete a Monitor
- Modifying a Video or Deleting it
- Monitor Triggers
- Administrator
- Monitor Presets
- Schedules for Monitor Presets
- ONVIF Management through Shinobi
- Updating Shinobi
- Changing the Recording Directory
- Switching Branches
- Superuser Credentials
- Account Types
- System Logs
- Cluster Management
- Language Files
- Enabling HTTPS on Shinobi with Self-Signed Certs
- Using Google Sign-In
- Custom Modules
- Easy Remote Access (P2P)
- Port Forwarding
- OpenVPN Server
- Where is the Shinobi Mobile App?
- Updated my Shinobi and now it doesn't work
- My stream is behind? Stream Latency.
- How to Insert Videos Externally?
- How do I find the Stream URL for my camera or NVR?
- Stop smearing or broken streams
- How I optimized my RTSP camera
- How to add an MJPEG Camera
- How to view Shinobi Stream in VLC
How to set a Static IP on Jetson Nano
Jetson nano on jetpack 4.4 is a little different than a standard ubuntu installation. this may work for versions of jetpack greater than 4.4..
- Installing Shinobi on Jetson Nano
If you haven't done so already you may follow these steps here .
- Setting the IP via Terminal
1. Open the /etc/default/networking file.
2. Modify the CONFIGURE_INTERFACES parameter to be as follows. Then close the file and save it. (CTRL+X)
3. Open /etc/network/interfaces and set the IP information. Then close the file and save it. (CTRL + X)
5. Be sure to comment out any lines above the new declaration. When done reboot. Your Jetson Nano will start on the static IP Address.
- ON THIS PAGE
- Top of Page
Getting Started With Jetson Nano
This section describes how to run Isaac SDK sample applications on the Jetson Nano device. For directions on how to get started with Nano in general, see Getting Started with the Jetson Nano Developer Kit .
Getting the IP Address
Obtain the IP address of Jetson Nano:
1. Connect a keyboard, mouse, and display, and boot the device as shown in the Setup and First Boot section of Getting Started with the Jetson Nano Developer Kit .
At a terminal prompt, enter the following command:
[email protected]:~/$ ip addr show
Running Sample Applications on Jetson Nano
This section describes the steps to run sample applications on Jetson Nano. The first sample does not require any peripherals. The second sample is a more useful application that requires a connected camera. The third sample demonstrates how to deploy a TensorFlow model and run inference on the device.
Other applications can be deployed and run using the methods described here.
Deploy //apps/tutorials/ping:ping-pkg to the robot as explained in Application Console Options .
Change to the directory on your Jetson Nano and run the application with the following commands:
[email protected]:~/$ cd deploy/<bob>/ping-pkg/ [email protected]:~/deploy/<bob>/ping-pkg$ ./apps/tutorials/ping/ping
Where <bob> is your username on the host system. You should see “Hello World!” print every 1.5 seconds.
OpenCV Edge Detection
For this sample, connect a camera to one of the USB ports on the Jetson Nano.
Deploy //apps/tutorials/opencv_edge_detection:opencv_edge_detection-pkg to the robot as explained in Application Console Options .
[email protected]:~/$ cd deploy/<bob>/opencv_edge_detection-pkg/ [email protected]:~/deploy/<bob>/opencv_edge_detection-pkg/$ ./apps/tutorials/opencv_edge_detection/opencv_edge_detection
To view the results, load http://<nano_ip>:3000/ in your browser. Make sure that the application is running when you are loading the webpage.
TensorFlow Model Inference with TensorRT
Deploy //apps/samples/ball_segmentation:inference_tensorrt-pkg to the robot as explained in Application Console Options .
[email protected]:~/$ cd deploy/<bob>/inference_tensorrt-pkg/ [email protected]:~/deploy/<bob>/inference_tensorrt-pkg/$ ./apps/samples/ball_segmentation/inference_tensorrt
Frequently Asked Questions
How to flash jetson nano.
Nano can be flashed in two ways:
Via an SD Card: See the procedures in Getting Started with the Jetson Nano Developer Kit .
Via SDK Manager: See the procedures in SDK Manager User Guide
Use the documents above to determine the best method for your use case.
How to Connect a Wi-Fi/Bluetooth Card
The Intel 8265 card is used for Wi-Fi and Bluetooth connectivity. The following steps describe how to install a Wi-Fi/Bluetooth card for Jetson Nano.
To access the M.2 slot on the carrier board, remove the two screws on the side and open the SODIMM latches using both your hands.

When the Jetson Nano module pops up, slide it out gently.

Take out the Intel wireless card and attach the antenna to its U.FL sockets before inserting the card into the M.2 socket. Attaching the antenna on the sockets requires patience and getting used to. Use your nail to gently apply force. You do not need much force to clamp it in once you are in the right position.

Slide the Intel 8265 card into the socket.
Fix the Intel 8265 card in place with a screw, and replace the Jetson Nano module. Make sure to use the correct screws in each case.

- Orders & Carts

- Accessories
- Controllers - Accessories
- Controllers - PLC Modules
- Controllers - Process, Temperature
- Controllers - Programmable Logic (PLC)
- Human Machine Interface (HMI)
- Industrial Equipment
- Machine Vision - Cameras/Sensors
- Monitor - Current/Voltage Transducer
- Panel Meters
- Panel Meters - Counters, Hour Meters
- Pneumatics, Hydraulics
- Time Delay Relays
- Barrel - Power Cables
- Between Series Adapter Cables
- Circular Cable Assemblies
- Coaxial Cables (RF)
- D-Shaped, Centronics Cables
- D-Sub Cables
- Flat Flex Cables (FFC, FPC)
- Flat Flex, Ribbon Jumper Cables
- Jumper Wires, Pre-Crimped Leads
- Modular Cables
- Pluggable Cables
- Power, Line Cables and Extension Cords
- Rectangular Cable Assemblies
- Bushings, Grommets
- Cable and Cord Grips
- Cable Supports and Fasteners
- Cable Ties - Holders and Mountings
- Cable Ties and Cable Lacing
- Grounding Braid, Straps
- Heat Shrink Boots, Caps
- Heat Shrink Tubing
- Labels, Labeling
- Protective Hoses, Solid Tubing, Sleeving
- Solder Sleeve
- Spiral Wrap, Expandable Sleeving
- Wire Ducts, Raceways
- Fiber Optic Cables
- Flat Ribbon Cables
- Modular - Flat Cable
- Multiple Conductor Cables
- Single Conductor Cables (Hook-Up Wire)
- Circuit Breakers
- Electrical, Specialty Fuses
- Fuseholders
- Gas Discharge Tube Arresters (GDT)
- Inrush Current Limiters (ICL)
- PTC Resettable Fuses
- Surge Suppression ICs
- Thermal Cutoffs (Thermal Fuses)
- TVS - Diodes
- TVS - Mixed Technology
- TVS - Thyristors
- TVS - Varistors, MOVs
- ARINC Inserts
- Hard Metric, Standard
- Specialized
- Audio Connectors
- Power Connectors
- Backshells and Cable Clamps
- Circular Connectors
- Terminators
- Accessories - Jackscrews
- Backshells, Hoods
- D-Sub Connectors
- FFC, FPC (Flat Flexible) Connectors
- Inline Module Sockets
- Jacks With Magnetics
- PC Card Sockets
- PC Cards - Adapters
- Plug Housings
- Wiring Blocks
- Wiring Blocks - Accessories
- Inlets, Outlets, Modules
- Arrays, Edge Type, Mezzanine (Board to Board)
- Board In, Direct Wire to Board
- Board Spacers, Stackers (Board to Board)
- Free Hanging, Panel Mount
- Headers, Male Pins
- Headers, Receptacles, Female Sockets
- Headers, Specialty Pin
- Spring Loaded
- Barrier Blocks
- Din Rail, Channel
- Headers, Plugs and Sockets
- Interface Modules
- Panel Mount
- Power Distribution
- Wire to Board
- Barrel, Bullet Connectors
- Housing, Boots
- PC Pin Receptacles, Socket Connectors
- PC Pin, Single Post Connectors
- Quick Connects, Quick Disconnect Connectors
- Rectangular Connectors
- Ring Connectors
- Screw Connectors
- Spade Connectors
- Specialized Connectors
- Turret Connectors
- Wire Splice Connectors
- Alarms, Buzzers, and Sirens
- Buzzer Elements, Piezo Benders
- Microphones
- Motor Driver Boards, Modules
- Motors - AC, DC
- Solenoids, Actuators
- Stepper Motors
- Automotive Relays
- Contactors (Electromechanical)
- Contactors (Solid State)
- High Frequency (RF) Relays
- I/O Relay Module Racks
- I/O Relay Modules
- Power Relays, Over 2 Amps
- Reed Relays
- Relay Sockets
- Signal Relays, Up to 2 Amps
- Solid State Relays
- Accessories - Caps
- DIP Switches
- Keylock Switches
- Magnetic, Reed Switches
- Navigation Switches, Joystick
- Pushbutton Switches
- Rocker Switches
- Rotary Switches
- Selector Switches
- Slide Switches
- Snap Action, Limit Switches
- Tactile Switches
- Toggle Switches
- Box Accessories
- Box Components
- Card Guide Accessories
- Card Guides
- Card Rack Accessories
- Evaluation, Development Board Enclosures
- Patchbay, Jack Panels
- Rack Accessories
- Rack Components
- Adapter Cards
- Adapters, Converters
- Cameras, Projectors
- Computer Mouse, Trackballs
- KVM Switches (Keyboard Video Mouse)
- KVM Switches (Keyboard Video Mouse) - Cables
- Magnetic Strip, Smart Card Readers
- Memory Card Readers
- Printers, Label Makers
- Board Spacers, Standoffs
- Board Supports
- Bumpers, Feet, Pads, Grips
- Clips, Hangers, Hooks
- Component Insulators, Mounts, Spacers
- DIN Rail Channel
- Mounting Brackets
- Screws, Bolts
- Washers - Bushing, Shoulder
- Memory - Modules
- Memory Cards
- Solid State Drives (SSDs)
- USB Flash Drives
- Gateways, Routers
- Media Converters
- Miscellaneous
- Serial Device Servers
- Switches, Hubs
- Fans - Accessories
- Fans - Accessories - Fan Cords
- Fans - Finger Guards, Filters & Sleeves
- Thermal - Accessories
- Thermal - Adhesives, Epoxies, Greases, Pastes
- Thermal - Heat Pipes, Vapor Chambers
- Thermal - Heat Sinks
- Thermal - Liquid Cooling
- Thermal - Pads, Sheets
- Thermal - Thermoelectric, Peltier Assemblies
- Thermal - Thermoelectric, Peltier Modules
- Display Modules - LCD, OLED Character and Numeric
- Display Modules - LCD, OLED, Graphic
- Display Modules - LED Character and Numeric
- Fiber Optics - Transceiver Modules
- Infrared, UV, Visible Emitters
- Laser Diodes, Modules
- LED Indication - Discrete
- LED Lighting - COBs, Engines, Modules, Strips
- LED Lighting - Color
- LED Lighting - White
- Optics - Light Pipes
- Panel Indicators, Pilot Lights
- Aluminum Electrolytic Capacitors
- Aluminum - Polymer Capacitors
- Capacitor Networks, Arrays
- Ceramic Capacitors
- Electric Double Layer Capacitors (EDLC), Supercapacitors
- Film Capacitors
- Mica and PTFE Capacitors
- Silicon Capacitors
- Tantalum Capacitors
- Tantalum - Polymer Capacitors
- Thin Film Capacitors
- Trimmers, Variable Capacitors
- Adjustable Inductors
- Arrays, Signal Transformers
- Delay Lines
- Fixed Inductors
- Wireless Charging Coils
- Bobbins (Coil Formers), Mounts, Hardware
- Ferrite Cores
- Magnetic Wire
- Oscillators
- Pin Configurable/Selectable Oscillators
- Programmable Oscillators
- Sockets and Insulators
- Stand Alone Programmers
- VCOs (Voltage Controlled Oscillators)
- Adjustable Power Resistor
- Rotary Potentiometers, Rheostats
- Scale Dials
- Slide Potentiometers
- Thumbwheel Potentiometers
- Trimmer Potentiometers
- Value Display Potentiometers
- Chassis Mount Resistors
- Chip Resistor - Surface Mount
- Resistor Networks, Arrays
- Specialized Resistors
- Through Hole Resistors
- Batteries Non-Rechargeable (Primary)
- Batteries Rechargeable (Secondary)
- Battery Chargers
- Battery Holders, Clips, Contacts
- Battery Packs
- Cigarette Lighter Assemblies
- AC AC Wall Adapters
- AC DC Configurable Power Supplies (Factory Assembled)
- AC DC Configurable Power Supply Chassis
- AC DC Configurable Power Supply Modules
- AC DC Converters
- AC DC Desktop, Wall Adapters
- DC DC Converters
- LED Drivers
- Power over Ethernet (PoE)
- Solar Cells
- Audio Transformers
- Bobbins (Coil Formers) Mounts, Hardware
- Current Sense Transformers
- Isolation Transformers and Autotransformers, Step Up, Step Down
- Power Transformers
- Pulse Transformers
- Specialty Transformers
- Switching Converter SMPS Transformers
- RF Amplifiers
- RF Antennas
- RF Detectors
- RF Directional Coupler
- RF Evaluation and Development Kits, Boards
- RF Receiver, Transmitter, and Transceiver Finished Units
- RF Switches
- RF Transceiver ICs
- RF Transceiver Modules
- Evaluation and Demonstration Boards and Kits
- Evaluation Boards - Analog to Digital Converters (ADCs)
- Evaluation Boards - Embedded - Complex Logic (FPGA, CPLD)
- Evaluation Boards - Embedded - MCU, DSP
- Evaluation Boards - Expansion Boards, Daughter Cards
- Evaluation Boards - LED Drivers
- Evaluation Boards - Op Amps
- Evaluation Boards - Sensors
- Programmers, Emulators, and Debuggers
- Diodes - Bridge Rectifiers
- Diodes - Rectifiers - Arrays
- Diodes - Rectifiers - Single
- Diodes - RF
- Diodes - Zener - Single
- Thyristors - SCRs
- Thyristors - TRIACs
- Transistors - Bipolar (BJT) - Arrays
- Transistors - Bipolar (BJT) - RF
- Transistors - Bipolar (BJT) Single
- Transistors - FETs, MOSFETs - Arrays
- Transistors - FETs, MOSFETs - Single
- Transistors - IGBTs - Single
- Transistors - JFETs
- Interface Boards
- Single Board Computers (SBCs)
- Audio Special Purpose
- Clock/Timing
- Data Acquisition
- Specialized ICs
- Digital Isolators
- Isolators - Gate Drivers
- Optoisolators - Logic Output
- Optoisolators - Transistor, Photovoltaic Output
- Optoisolators - Triac, SCR Output
- Special Purpose
- Current Sensors
- Humidity, Moisture Sensors
- Image Sensors, Camera
- Magnetic Sensors - Linear, Compass (ICs)
- Motion Sensors - Accelerometers
- Optical Sensors - Ambient Light, IR, UV Sensors
- Optical Sensors - Photodiodes
- Position Sensors - Angle, Linear Position Measuring
- Pressure Sensors, Transducers
- Temperature Sensors - Analog and Digital Output
- Temperature Sensors - NTC Thermistors
- Equipment - Multimeters
- Equipment - Oscilloscopes
- Equipment - Power Supplies (Test, Bench)
- Equipment - Specialty
- Test Clips - Alligator, Crocodile, Heavy Duty
- Test Clips - Grabbers, Hooks
- Test Leads - Banana, Meter Interface
- Test Leads - BNC Interface
- Test Leads - Jumper, Specialty
- Test Leads - Oscilloscope Probes
- Test Points
- Test Probe Tips
- Crimpers - Crimp Heads, Die Sets
- Crimpers, Applicators, Presses
- Excavators, Hooks, Picks, Probes, Tuning Tools
- Insertion, Extraction
- Arms, Mounts, Stands
- Eyepieces, Lenses
- Illumination Sources
- Lamps - Magnifying, Task
- Loupes, Magnifiers
- Microscopes
- Video Inspection Systems
- Adapter, Breakout Boards
- Card Extenders
- Coating, Grease, Repair
- Drill Bits, End Mills
- Etching and Fabrication Equipment
- Jumper Wire
- PCB Routers, Milling Machines
- Prototype Boards Perforated
- Prototype Boards Unperforated
- Solderless Breadboards
- Screw and Nut Drivers
- Screw and Nut Drivers - Sets
- Desoldering Braid, Wick, Pumps
- Dispensers, Dispenser Tips
- Flux, Flux Remover
- Fume, Smoke Extraction
- Holders, Stands
- Solder Sponges, Tip Cleaners
- Solder Stencils, Templates
- Soldering Irons, Tweezers, Handles
- Soldering, Desoldering, Rework Stations
- Soldering, Desoldering, Rework Tips, Nozzles
- Clean Room Swabs and Brushes
- Clean Room Treatments, Cleaners, Wipes
- Ionizer Equipment
- Monitors, Testers
- Static Control Clothing
- Static Control Device Containers
- Static Control Grounding Cords, Straps
- Static Control Grounding Mats
- Static Control Shielding Bags, Materials
- Specialized Tools
- Wire Cutters
- Wire Strippers and Accessories
- Featured Brands
- Cable Assemblies
- Cables, Wires
- Cables, Wires - Management
- Circuit Protection
- Connectors, Interconnects
- Potentiometers, Variable Resistors
- Sensors, Transducers
- Uncategorized
- Integrated Circuits (ICs)
- Optoelectronics
- Power Supplies - Board Mount
- Transformers
- Development Boards, Kits, Programmers
- Discrete Semiconductor Products
- RF/IF and RFID
- Crystals, Oscillators, Resonators
- Maker/DIY, Educational
- Test and Measurement
- Automation and Controls
- Audio Products
- Inductors, Coils, Chokes
- Integrated Circuits
- Boxes, Enclosures, Racks
- Industrial Automation and Controls
- Power Supplies - External/Internal (Off-Board)
- Line Protection, Distribution, Backups
- Motors, Actuators, Solenoids and Drivers
- Battery Products

- Applications & Technologies
- Product Training Modules
- Video Library
- Conversion Calculators
- Cross Reference
- EDA & Design Tools
- PCB Builder
- Reference Design Library
- Programs & Services
- Academic Program
- Automation & Control
- Design & Integration Services
- Digital Solutions
- IoT Solutions
- Marketplace
- Part Tracing
- Product Services

- Quote Manager
- Manufacturers
- New Products

Digi-Key customers in the United States can select from a range of delivery options, including Ground shipping at $6.99 and 2-Day at $12.99

Credit account for qualified institutions and businesses
Payment in Advance by Wire Transfer

More Products From Fully Authorized Partners
Average Time to Ship 1-3 Days . Please see product page, cart, and checkout for actual ship speed.
Extra Ship Charges May Apply
For more information visit Help & Support

Getting Started with the NVIDIA Jetson Nano - Part 1: Setup
By shawnhymel.

In June, 2019, NVIDIA released its latest addition to the Jetson line: the Nano. The Nano is a single-board computer with a Tegra X1 SOC. Essentially, it is a tiny computer with a tiny graphics card. The Nano is capable of running CUDA, NVIDIA’s programming language for general purpose computing on graphics processor units (GPUs). With CUDA, we can run a host of machine learning algorithms that have been optimized for GPUs.
Remember that the Jetson Nano is an embedded device, which means it will likely be slower than any modern desktop or laptop computer you might encounter. As a result, it’s not intended to be used as a development system to train new machine learning models. We recommend investing in a newer graphics card or rent time from a cloud-based GPU server if you wish to train deep models from scratch.
That being said, it can be useful to deploy a model to the Nano if you wish to predict or classify things like images, sounds, etc. As the Nano is an embedded device, it can be easily integrated into other devices, such as a robotic chassis.
Here is a video if you would like to watch the setup:
Required Accessories
While the Jetson Nano packs some amazing hardware in a small package, it does not contain everything you need to get started. You will need a few accessories:
- Power Supply - NVIDIA recommends a 5V, 2A USB power supply. This will quickly fail if you do any real processing, so I recommend a 5V, 4A power supply with a barrel jack.
- You will need a jumper if you’re using a power supply with a barrel jack.
- MicroSD Card - The minimum size is 16 GB. If you plan to download training data or more than a couple of models, you’ll find that you run out of space very quickly. Therefore, I recommend a 32 GB (or more) microSD card with at least a UHS-1 speed rating.
- WiFi adapter - The Nano does not have onboard WiFi or Bluetooth. As a result, you will need to provide your own network card. There is an M.2 (Key-E) slot under the Nano itself, so something like the Intel Dual Band Wireless-Ac 8265 W/Bt (Intel 8265NGW) is reported to work. I happen to have an old Edimax EW-7811Un lying around, so I’ll be using that instead.
- Like the Raspberry Pi, you will need a monitor, keyboard, and mouse (at least for the initial setup).
- A webcam (I’m using a Logitech c920) or CSI camera (the Raspberry Pi Camera Module V2 supposedly works) is necessary if you wish to capture or own images or play with the demos.
- I recommend getting a 5V 40x40 mm fan to mount on top of the heatsink if you plan to really push the Nano. Something with a 4-pin connector will work the best (as these will offer PWM control, which means the Nano can control the speed when needed).
Download and Burn Image
Download the latest Jetson Nano Ubuntu image from here: https://developer.nvidia.com/embedded/learn/get-started-jetson-nano-devkit#write . At the time of this writing, the latest image was r3223 (based on Ubuntu 18.04).
Use a program like balenaEtcher to write the image file to your microSD card.
Connect Accessories
Insert the microSD card into the SD card slot found just underneath the Jetson Nano main card (not the motherboard).
If you are using a power supply with a barrel jack adapter, you will need to put a jumper on the J48 header.
Connect the rest of the accessories to your Jetson Nano:
A Note About NVIDIA’s Online Course
NVIDIA has a free online course that covers the basic of the Jetson Nano. You can sign up for it here: https://courses.nvidia.com/courses/course-v1:DLI+C-RX-02+V1/about . Note that it has you download a different Ubuntu image for the Nano, which comes pre-installed with a number of tools for using and training machine learning models.
Configure Ubuntu
Once the Nano boots, you should be presented with Ubuntu’s configuration program. Walk through the steps to set up your username, password, timezone, WiFi, etc.
Once you’ve logged in to Ubuntu, you need to perform a few more steps.
If you’re using an Edimax EW-7811Un like I am (or any other wireless card based on the Realtek 8192 chipset), you’ll need to add it to the blacklist file, as there’s a bug in the Ubuntu kernel we need to work around. This should prevent any dropped connections during an remote desktop or SSH session.
Open the blacklist.conf file with vi:
Scroll to the bottom of the file and press ‘o’ to insert a new line and edit. Add the following line:
Press ‘esc’ to exit insert mode, and type ‘:wq’ to write the file and exit. Sometimes, it can also help to disable power saving mode to the WiFi card:
You will want to get the IP address of your Nano, too (write this down, as you’ll need it for RDP and SSH):
Finally, install the Remote Desktop Protocol (RDP) server. I know that RDP is a proprietary protocol by Microsoft, but it seems to work better than VNC on the Nano.
Follow this with a reboot:
Log in via RDP
If you are on Mac or Linux, you will need to download and install the RDP client of your choice.
On Windows, start the Remote Desktop application. Enter your username and IP address of the Nano. In the Display tab, change the resolution to 1280x1024 and change the Color depth to 16-bit . These will help the RDP session run more smoothly.
In the Experience tab, change the Performance setting to Modem (56 kbps) and de-select the Persistent bitmap caching option. Supposedly, these help optimize the RDP connection for speed over nice visuals.
Connect, and you should be presented with the Nano’s login screen. Enter your password (maybe twice) to get access to the desktop. From there, click the Activities button in the top-left to get the launcher to appear. You should then be able to open a file browser and terminal to begin developing on your remote desktop.
By default, the Jetson Nano should be running an SSH server. Just use your favorite SSH client (e.g. PuTTY on Windows) to connect to the Jetson Nano to get a remote terminal.
Using SSHFS
If you would like a graphical interface to copy files between your host computer and the Nano, you can use SSHFS. This will let you mount a network drive on your host computer.
For Mac and Linux, follow the instructions here to install an SSHFS client: https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh
On Windows, you’ll need to perform a few more steps:
- Download and install the latest release of winfsp from this site: https://github.com/billziss-gh/winfsp/releases
- Download and install the latest release of SSHFS-Win from this site: https://github.com/billziss-gh/sshfs-win/releases (you will likely need to reboot after this step)
- Open a file explorer window, right-click on This PC , and select Add a Network Location . Enter the following, replacing <username> with the username on your Nano and <IP address> with the IP address (or hostname) of the Nano: \\sshfs\<username>@<IP address>
Once you connect via SSHFS, you should be presented with the directory structure located at /home/<username/ of your Nano. Now, you can enter commands via terminal and work with files using a graphical interface!
Alias Python 3
The Jetson Nano image comes installed with Python 2 and Python 3. However, Python 2 is configured as the default version. If you’re like me and trying to move all your work to Python 3, I recommend setting an alias in your .bashrc file:
Scroll to the bottom of the file and press ‘o’ to insert a new line and edit. Enter the following line:
Exit by pressing ‘esc.’ Type ‘:wq’ to exit and enter the following on the command line to run the .bashrc file:
Install Packages
In preparation for the next tutorial, you will need to install some packages and source code from NVIDIA. This will allow us to play with prepared demos and train a model for classifying images. Start by installing the following packages:
When that’s done, clone the jetson-inference repository:
Create a build folder in the jetson-inference directory and execute cmake:
This will take some time. Throughout the build process, you will be asked for your password, and at some point, you will be asked to download pre-trained models. Leave the default GoogleNet and ResNet-18 models selected and press ‘enter’ to continue.
You’ll also be asked to install PyTorch. If you switched over to using Python 3 earlier, you will want to de-select PyTorch for Python 2 and select PyTorch for Python 3 using the spacebar.
Once that’s done, build and install the tools:
Going Further
In the next tutorial, I’ll show you how to run the demos in the jetson-inference repository and use transfer learning to train a model. Feel free to read through the READMEs in the jetson-inference repository to see the demos: https://github.com/dusty-nv/jetson-inference
In addition to the online course, NVIDIA also has a set of tutorials showing you how to train a deep neural network from scratch using the DIGITS system: https://github.com/dusty-nv/jetson-inference/blob/master/docs/digits-workflow.md . Note that you will need access to a powerful graphics card (on your personal computer or cloud-based server) to use DIGITS.
Key Parts and Components
Seeed Technology Co., Ltd

Phihong USA

Panasonic Electronic Components
Raspberry Pi
- 1597-1732-ND
- 993-1343-ND
- 2648-913-2664-ND

Have questions or comments? Continue the conversation on TechForum , Digi-Key's online community and technical resource.
Project Details
- Attribution

Get Involved
By using the Co-Browse feature, you are agreeing to allow a support representative from Digi-Key to view your browser remotely. When the Co-Browse window opens, give the session ID that is located in the toolbar to the representative.
Digi-Key respects your right to privacy. For more information please see our Privacy Notice and Cookie Notice .
Get fast and accurate answers from Digi-Key's Technicians and Experienced Engineers on our TechForum.
Email: [email protected]
Call: 1-800-344-4539, how can i quickly find answers to my questions.
Please visit the Help & Support area of our website to find information regarding ordering, shipping, delivery and more.
What is my Order Status?
Registered users can track orders from their account dropdown, or click here . *Order Status may take 12 hours to update after initial order is placed.
How do I return product?
Users can begin the returns process by starting with our Returns Page .
How do I find price and availability?
Quotes can be created by registered users in myLists .
How do I create a 'myDIGIKEY' Account?
Visit the Registration Page and enter the required information. You will receive an email confirmation when your registration is complete.
Keep an eye on your inbox for news and updates from Digi-Key!
Please enter an email address
INFORMATION

Do Not Sell / Do Not Share My Personal Information
- Network Time Protocol
Connect Create® 3 to NVIDIA® Jetson™ and set up ROS 2 Galactic
This is community-submitted content. Please feel welcome to submit PRs for additions or corrections.
Before you start
These directions are written for someone with experience with embedded Linux and basic embedded computers.
It is highly recommended to read through the getting started document for your NVIDIA® Jetson™ developer kit before beginning:
- Getting Started With Jetson Xavier NX Developer Kit
- Getting Started with Jetson Nano Developer Kit
- Getting Started with Jetson Nano 2GB Developer Kit
Step-by-step
Getting started guide portion.
Download the SD card image for your Jetson platform and write onto a microSD card.
Complete the getting started guide (listed above) until you complete the initial setup.
Alter "USB Device Mode" to apply static IP
To alter the Jetson's "USB Device Mode" feature (specifically, disabling DHCP server and self-assign a static IP address);
First, create a flag file to store IP address for Jetson to be used with Create3.
Then, modify the "nv-l4t-device-mode-runtime" service script ( /opt/nvidia/l4t-usb-device-mode/nv-l4t-usb-device-mode-runtime-start.sh ). The complete file is here .
Connect micro-B end of the USB cable from Create® 3 robot to the micro-B USB port of Jetson. Then check if the static IP address is set by issuing ifconfig command.
Be sure that the USB/BLE toggle on the robot's adapter board is set to the USB position.
If you ever want to stop using the Jetson device for Create® 3 and re-enable the original USB Device Mode feature (so that you can connect to your Windows PC in headless style), you can simply remove the flag file, or execute the following.
sudo mv /opt/nvidia/l4t-usb-device-mode/IP_ADDRESS_FOR_CREATE3_ROBOT.conf /opt/nvidia/l4t-usb-device-mode/IP_ADDRESS_FOR_CREATE3_ROBOT.conf.bak
Start ROS 2 Galactic container
The recommended way to run ROS2 on Jetson is to use pre-built Docker container images.
Enable NVIDIA Container Runtime with Docker integration, if this is the first time running containers on Jetson, to allow access to GPU from containers.
Edit /etc/docker/daemon.json to be the following.
Use jetson-containers ' script to simplify the invocation of docker run command.
Install additional ROS 2 packages
Set the default network interface by setting Cyclone DDS configuration.
If you are using CycloneDDS (Galactic default) and want the Jetson to talk to the robot over USB and a laptop via Wi-Fi, you will need to take extra steps to setup CycloneDDS to use multiple interfaces. You will need to create a CycloneDDS XML configuration file with both USB and Wi-Fi interfaces and then set the CYCLONEDDS_URI environment variable to its path. See CycloneDDS Multiple Network Interfaces . Note the differences in Jetson USB and Wi-Fi interface names from the documentation.
Check to ensure Create® 3 topics appear
You should get
Check if it read a message on a topic
You should see continuous repetition of output like following.
Jetson/Remote Access
- 1 Default Jetson TK1 login credentials
- 2 Easy method: Plugging the device into your router
- 3 Not-as-easy method: Internet Connection Sharing with NetworkManager
- 4.1 DHCP Server using the simple dnsmasq tool
- 4.2 To permanently set a name for the device on a Linux host PC
- 4.3 Enable NAT internet connection sharing so that the local network can access internet from the host computer's Wifi or Ethernet connection
- 4.4 Troubleshooting
- 5 Accessing the device from your PC
- 6 Using OpenGL and CUDA without a connected display
Default Jetson TK1 login credentials
Username: ubuntu
Password: ubuntu
Hostname: tegra-ubuntu
Easy method: Plugging the device into your router
To remotely access your device from your PC, first you need to get your PC and your device on the same local network. If you can plug your Jetson TK1 board directly into a wired ethernet router from the onboard ethernet port or plug a Wifi USB dongle / PCIe card, then this is all you need to do. The device will get a new IP address from the DHCP server in your router, and thus your PC should be able to access your device within 30 seconds or so, and the device should have access to both the PC and the internet such as to download extra software.
Not-as-easy method: Internet Connection Sharing with NetworkManager
If you are running Ubuntu on your PC, or if you use another operating system that has NetworkManager, then you can make your PC act as a router with just a few clicks in a graphical user interface. Just connect the Jetson board to the PC with an Ethernet cable (patch or crossover -- does not matter with modern Ethernet devices) and create an Internet Connection Sharing connection in 6 steps:
- Open the Network Menu on your panel (the menu where you usually select wireless connections) and select "Edit connections"
- Click on the "Add" button
- Select "Ethernet" from the drop-down menu (most likely already selected) and click "Create..."
- Give the connection a nice name, e.g. "Jetson"
- Open the IPv4 tab.
- In the "Method" box, select "Shared with other computers" and click the "Save..." button
Now whenever you plug in the Ethernet cable, both your PC and Jetson will be waiting for a router. You then need to select the "Jetson" connection so that your PC would act as a router for Jetson. Now you can log in as described in Accessing the device from your PC section.
Hard method: Manually setting up a DHCP server
If you can't plug your device into your router, then it becomes more complicated because you will need to setup a small LAN network between your PC and your device. This page describes how you can perform that. To do this, plug a single Ethernet crossover cable from your PC to your device's Ethernet port. By default, the device waits to be allocated a dynamic IP address from a DHCP server, and your PC Ethernet port probably does too. So you need to either set them both to use static IP addresses on the same subnet, or run a DHCP server on your PC to give a dynamic IP address to your device without necessarily modifying the device in any way. Running a DHCP server is harder than setting up a static IP network, but it doesn't require making any changes to your device, since it defaults to looking for a DHCP server, so let's see how to do that on your PC. There are many guides available on the web, showing how to setup a DHCP server on your Windows or Mac PC, but this page will show how to set it up on a Linux PC.
DHCP Server using the simple dnsmasq tool
Dnsmasq provides both a simple DNS name server and a simple DHCP server. To run both a DNS & DHCP server from a Linux host PC on ethernet using IP address 192.168.1.100, follow these steps (tested on Debian Wheezy KDE, Linux Mint 16 KDE and Ubuntu 12.04):
If you are using NetworkManager (that is enabled by default in many graphical desktop environments like GNOME, KDE or Unity), you probably need to turn it off for now so it doesn't interfere with your local network server:
Copy-paste this anywhere in the file such as at the top (note: Ctrl+V means PageDown in nano, so you might want to use Shift+Insert to paste instead):
Restart the dnsmasq service:
Bring up the local network using the first IP address:
Your local network should now be up & running! To see DHCP server error messages, or see when a new computer has grabbed an IP from this DHCP server:
Since dnsmasq is also a DNS server, you can access the device using its hostname "tegra-ubuntu" instead of the IP address "192.168.1.101". eg:
(If this doesn't work, perhaps it has been renamed to something like "tegra-ubuntu.local" instead. You can see the name using "sudo arp").
To permanently set a name for the device on a Linux host PC
Add a line such as "192.168.1.101 tegra-ubuntu" to your PC's "/etc/hosts" file using root permissions, and then dnsmasq will instantly allow you to use this hostname instead of the IP address:
1) Open a shell terminal (In Ubuntu Unity I think you can click the top-left icon and search for "terminal" then run it).
2) Open the "/etc/hosts" file in an editor, using root permissions. eg: "sudo nano /etc/hosts"
3) Type in your password. If you haven't changed from the default password, it would be "ubuntu".
4) Paste this line into that file, ideally as the line after the existing similar looking lines near the top of the file:
(You might need to change that IP address to whatever IP your board is currently using).
5) Click "Save" and close it. It should work instantly.
Enable NAT internet connection sharing so that the local network can access internet from the host computer's Wifi or Ethernet connection
Note: You might need to change "wlan0" (your network device that has internet) and "eth0" (you local network device that has the Jetson board) for your computer setup.
Put this into a new file named "share_my_internet.sh":
Then make that script an executable:
Now you can run it, passing first the name of your internet adapter (eg: wlan0) and your local network adapter (eg: eth0):
(You will need to execute this script again if you reboot your desktop computer, so you might want to add something like "~/share_my_internet.sh wlan0 eth0" to the bottom of your "~/.bashrc" login script so it gets executed automatically).
If you are using a graphical desktop environment and thus you killed NetworkManager earlier, now you should re-start NetworkManager to give you back your regular internet:
Now your device should have internet access!
Troubleshooting
If you reboot your device &/or desktop and can no longer access tegra-ubuntu or 192.168.1.100 or 192.168.1.101, you can bring up the local network again from your PC using the same command as earlier, eg:
If your device can't access internet but your desktop can then run the internet sharing command again:
If your desktop can't access internet then remember to re-enable your desktop's GUI network manager:
Accessing the device from your PC
First you should see if you can ping the device:
Assuming this works, log into your device from your PC:
Or if you want to use graphical apps on the device display it on your PC using "X forwarding":
You should now have full remote access to the device. The only remaining feature to test is if the device has internet access. Note: By default the device won't have ICMP ping service enabled, so instead of using "ping www.google.com", you can test internet access by running this on the device:
You can also get remote desktop access to your device such as by using a VNC or commercial SplashTop / TeamViewer solution, allowing you to run graphical apps easily without needing a HDMI monitor attached to your device. Beware though, that if you are trying to run graphical apps to their limits, some remote desktop solutions such as VNC are unlikely to give you the full performance or GPU acceleration.
Using OpenGL and CUDA without a connected display
Add the following line to the "Screen" section in xorg.conf to avoid detection of the external display.
It may also be possible to use Xvfb
Navigation menu
Personal tools.
- Request account
- View source
- View history
- Community portal
- Current events
- Recent changes
- Volunteering
Where else to find us
- Twitter (@elinux)
- #elinux on Libera.Chat
- Facebook (@elinux.org)
- Mailing Lists
- What links here
- Related changes
- Special pages
- Printable version
- Permanent link
- Page information
- This page was last edited on 16 April 2015, at 14:56.
- Content is available under a Creative Commons Attribution-ShareAlike 3.0 Unported License unless otherwise noted.
- Privacy policy
- About eLinux.org
- Disclaimers


IMAGES
VIDEO
COMMENTS
Set Static IP for the WiFi connection: sudo nmcli con mod "MySSID" ipv4.addr "192.168.2.203/24" gw4 "192.168.2.1" ipv4.dns "8.8.8.8,8.8.4.4" ipv4.method "manual" Reboot the Nano. After this, the IP was set to the static IP I set. 2 Likes philips.koshy March 19, 2021, 6:23am 11 The following worked for me. /etc/NetworkManager/system-connections
I want to set a static IP for a Jetson Nano in my local network. What I've tried: -- Changing the DHCP on the router. -- editing /etc/network/interfaces with the following: auto eth0 iface eth0 inet static address 192.168.1.80 netmask 255.255.255.0 gateway 192.168.1.1 Both this options doesn't seem to work. ubuntu nvidia-jetson-nano Share
I need to set static IP address on Jetson nano. I have edited /etc/network/interfaces auto eth0 iface eth0 inet static address 192.168.1.192 netmask 255.255.255.0 gateway 192.168.1.255 Currently eth0 is disabled: #cat /run/network/ifstate lo=lo But it fails to go up: #ifup eth0 RTNETLINK answers: File exists Failed to bring up eth0
How to set a Static IP on Jetson Nano Jetson Nano on JetPack 4.4 is a little different than a standard Ubuntu installation. This may work for versions of JetPack greater than 4.4. Installing Shinobi on Jetson Nano If you haven't done so already you may follow these steps here . Setting the IP via Terminal 1. Open the /etc/default/networking file.
Getting the IP Address. Obtain the IP address of Jetson Nano: 1. Connect a keyboard, mouse, and display, and boot the device as shown in the Setup and First Boot section of Getting Started with the Jetson Nano Developer Kit. At a terminal prompt, enter the following command:
You’ll need to know the IP address of your Jetson developer kit to connect from another computer. Run the ifconfig command on your developer kit and note down the IP address assigned to eth0 interface if using ethernet, wlan0 interface if using wireless, or l4tbr0 if using the USB device mode Ethernet connection.
In this tutorial, we cover the basics of setting up and configuring the Jetson Nano as a development platform. Getting Started with the NVIDIA Jetson Nano - Part 1: Setup Login orREGISTERHello, {0}Account & Lists Orders & Carts Lists Quotes LoginRegisterWhy Register? myDIGIKEY Orders & Carts Lists Quotes Logout Your item(s)0
Download the SD card image for your Jetson platform and write onto a microSD card. Complete the getting started guide (listed above) until you complete the initial setup. Alter "USB Device Mode" to apply static IP. To alter the Jetson's "USB Device Mode" feature (specifically, disabling DHCP server and self-assign a static IP address);
1) Open a shell terminal (In Ubuntu Unity I think you can click the top-left icon and search for "terminal" then run it). 2) Open the "/etc/hosts" file in an editor, using root permissions. eg: "sudo nano /etc/hosts" 3) Type in your password. If you haven't changed from the default password, it would be "ubuntu".