Jetson Nano links - shankar-roy/nano GitHub Wiki
- Setting up Jetson Nano: The Basics
- Installing OpenCV 3.4.6 on Jetson Nano
- Script to intsall Open CV 4.1.1 on Jetson nano
` Since memory (4GB) on the Jetson Nano is rather limited, I’d create and mount a swap file on the system. I referenced Create a Linux swap file for that. And I made a 8GB swap file on my Jetson Nano DevKit. (You could adjust the swap file size based on your own needs.)
$ sudo fallocate -l 8G /mnt/8GB.swap $ sudo mkswap /mnt/8GB.swap $ sudo swapon /mnt/8GB.swap
Once the above is working, add the following line into /etc/fstab and reboot the system. Make sure the swap space gets mounted automatically after reboot.
/mnt/8GB.swap none swap sw 0 0
`