JetsonHacks

Developing on NVIDIA® Jetson™ for AI on the Edge

Jetson Orin Nano Tutorial: SSD Install, Boot, and JetPack Setup

The NVIDIA Jetson Orin Nano Developer Kit can boot from a Solid State Drive (SSD). You can set up your Orin Nano in under 45 minutes from the command line. Looky here:

Background

The Jetson Orin Nano Developer Kit has two M.2 Key M slots which allow installation of PCIe SSDs. You can boot the system from the SSD, bypassing the SD card. A SSD is much faster than the default storage medium of a SD card (5-10X in practice).

Previous Jetson production modules in the Nano/NX form factor use eMMC for their main drive storage. eMMC is a type of flash memory. The new Orin Nano and Orin NX forego the eMMC, and boot directly from a SSD attached via a M.2 Key M slot. This brings along a couple of changes. First, there is a small amount of flash memory, called QSPI, on the Jetson module which holds the bootloader and hardware configuration details. Here’s an article which speaks more in depth about that. QSPI is normally used in the SD card version of the previous generation Jetson Dev Kits. QSPI is present on all Orin Nano/NX modules.

The second change is the lack of eMMC on the production modules. With ever increasing storage demands for Deep Learning tasks, many users were running out of memory on their eMMC drives. Rather than offering ever larger eMMC, NVIDIA decided to simply use an external SSD. eMMC is expensive (and may be difficult to source), SSD is less so. Another advantage is that SSDs are available in a large range of sizes, 128GB to 1TB are available at consumer prices under $60 currently.

Selecting a SSD

Here are some things to keep in mind when buying a SSD for your Jetson Orin Nano Developer Kit. The first is that you must use a PCIe SSD. SSDs are available in two flavors, PCIe and SATA. Many PCs use SATA drives, so you have to be careful when buying. Typically SATA drives have two notches on their connector edge, while the PCIe drives have only one. The SATA drives no-worky on the Jetson.

The second thing to know is that the Orin Nano Devkit NVMe slot is PCIe Gen 3. Which means that you won’t get Gen 4 speeds if you are using a Gen 4 drive. Most Gen 4 drives are compatible with the Orin Nano, but you usually pay a premium for no added benefit.

The third thing to know is that you should probably know how much power the drive draws. In the video for example, we’re using a 1TB drive with a power draw of 2.5A at 3.3V. This is 8.25W. The Orin Nano Devkit board can provide 36 watts total to the system. Unlike a traditional desktop, you need to keep track of your power budget. Remember that the Orin Nano SoC itself can use 15W (you would add a little more for a safety buffer). If you add in another 8W, that means you have about another 8-10 for other peripherals give or take. Smaller capacity drives tend to use less power.

Also, remember you’re going to need backups. Right? So a larger drive is not always a blessing.

Some SSD Recommendations

Here’s a couple that have worked well over the years. This is one area where we’ve seen price decreases!

The drives are available in different sizes, find one that fits your needs. While you’re shopping, you may also want to pick up a jumper to put the Jetson into force recovery mode. You’ll also need a data capable USB-C cable to connect your Jetson to your host PC.

The Flashing Process

NVIDIA provides different ways of flashing the Jetson. You must have an x86 host machine, desktop or Linux. The requirements for the distribution are different depending on which method you choose. One way to set everything up is to use the official NVIDIA SDK Manager. This is the recommended way if you are new to the Jetson ecosystem. SDK Manager runs on different distributions and under Docker. There’s a video on the JetsonHacks YouTube channel that goes through the process here.

If you are a little more hard core, you can flash from the command line. I’ve written some convenience scripts to help with this. These scripts are derived from instructions directly from the NVIDIA Jetson Linux site and Jetson Linux Developer Guide Quick Start section.

To be clear, flashing from the command line is serious business. If you are a professional developer, you will need to learn the different flashing options. These options have to do with security, redundancy, and flashing multiple Jetson at once. All important in a production environment.

These scripts, on the other hand, take the most common use case and automates it.

The process takes ~ 45 minutes, depending on your host computer and network connection speeds. The JetsonHacks scripts provide guard code around the NVIDIA supplied flashing scripts. The JetsonHacks scripts verify that they are operating on the right machine and that the suitable Jetson is in recovery mode. Things like that.

In overview, the scripts do the following:

  • Download the Board Support Package (BSP, flashing tools, bootloader, hardware definition, etc)
  • Download the rootfs (These are the system files that you usually see on a Linux system)
  • Assemble the BSP and rootfs
  • Copy NVIDIA user space libraries to the rootfs (apply_binaries)
  • Install prerequisites on the host used for flashing
  • Flash the Jetson
    • Updates the QSPI
    • Flashes the SSD

To download the helper scripts and setup the flashing environment:

$ git clone https://github.com/jetsonhacks/bootFromExternalStorage.git

$ cd bootFromExternalStorage

$ ./get_jetson_files.sh

Flashing the Jetson

Once the archives are expanded and put in the correct place, put the Jetson into Force Recovery mode. Follow the procedure in the video. Make sure the power is off, jumper pins 9 and 10 on the button header together, and apply power. With the USB-C cable attached to the Jetson and host, make sure that you can see the Jetson using the lsusb command.

You can then use the convenience script in the repository to flash the Jetson:

$ flash_jetson_external_storage.sh

It takes ~ 20 minutes to install Jetson Linux. After flashing, the Jetson will be in ‘oem-config’ mode, ready to be setup. At this point, we’re done on the host side.

Installing JetPack

Remove the power from the Jetson. Make sure that the jumper pin is removed from the button header. Connect your Jetson to the Internet. You can set up the Jetson headless, or as shown in the video connected to a monitor, keyboard and mouse. After going through the oem-config sequence, you will have a basic install of Jetson Linux. You can then install JetPack.

JetPack is in NVIDIA repositories, and can be installed via APT.

$ sudo apt update

$ sudo apt upgrade

$ sudo apt install nvidia-jetpack

After about 20 minutes (depending on your connection speed), all of the NVIDIA JetPack goodness will be installed.

Notes

  • In the video, the host is running Ubuntu 20.04
  • In the video, Jetson Linux version 35.3.1 is installed
  • JetPack 5.1.1 is shown being installed on the Jetson
  • Jtop is shown in use in the video
  • In the video, the SSD is unformatted before flashing
Facebook
Twitter
LinkedIn
Reddit
Email
Print

61 Responses

  1. These “helper scripts” are dangerous and I don’t think should be used by most users. They are hard-coded to flash the first NVMe partition on the machine which, which may very well be the internal NVMe on your machine. The scripts also use root privileges to install software and enable systemd services, without prompting for confirmation or mentioning in the help text. I was shocked to see that such scripts are being distributed to potentially novice users without any warnings about these contents.

    1. Thank you for sharing your concerns. Since you are an expert, have read the scripts, and have a full understanding of the intended use case, you must have a much different development methodology. Perhaps you can share?
      For the rest of us:
      * The flash script checks to see if you’re on an x86 machine running Ubuntu, and that a Jetson is attached over USB.
      * You must physically place the Jetson into force recovery mode by going through a process which places a physical jumper over force recovery pins and powering the Jetson on.
      * systemd is running on the target device, not the host. The host NVMe cannot be reset using these scripts.

      For me, if a user unwittingly puts their Jetson target machine into force recovery mode using physical jumpers, plugs into their host machine with a USB cable, and then runs scripts on that host which flash the Jetson with an operating system during a 45 minute process, then there’s no amount of ‘help text’ that’s going to rectify that situation. In fact, the scripts mentioned here add extra guard code to ensure that you are running this in the correct environment. The flashing scripts themselves are provided by NVIDIA, these just wrap their process.

      Maybe that’s just me though, and it warrants not ever flashing the Jetson at all because of some perceived danger.

  2. I gave up trying to get Jetson Linux/Jetpack installed on NVMe via the SDK Manager. I could not get the device to flash successfully. The scripts / process flow here worked first time without any quirks. Nice job!

  3. I was SSD shopping for my Jetson Orin and almost blindly bought a Gen 4 NvMe SSD …hello…… Thank you, Jim for saving me $ 50 !!

  4. Excellent video and notes. I am working up the procedure to setup the jetson orin nano for a graduate class. I noticed after I ran the procedure, OpenCV 4.5.4 with Cuda was not installed. I saw on your video that it should have been in the nvidia-jetpack-dev install, but on your video it also was not installed. Do you know how to correct this?

    1. Thank you for the kind words. OpenCV from the NVIDIA repository does not have CUDA enabled. Here’s a video about how to build OpenCV with CUDA support on the Jetson: https://youtu.be/art0-99fFa8
      You should check to see if the algorithms you are using actually take advantage of CUDA before you start building. Thanks for watching!

  5. Hi, I got the Nvidia Orin Nano, and I have installed the SD Card flashing it from Windows 10. Now I want to install an SSD Drive, actually, I have installed and I can see from Ubuntu within the Jetson, and now I want to boot from the SSD and remove the SD Card, work only with the SSD, I have followed the instructions but when I run the script flash jetson external storage I’m receiving an error related to a directory, dtc is missed. I have searched it and I see that directory within the usr/bin directory.

    Do I need to add something to the PATH?

    Thank you for sharing your knowledge, very helpful

  6. At the end of the first paragraph of “The Flashing Process” section above I would advise adding something like,

    “Flashing with the sdkmanager is covered in our NVIDIA SDK Manager Tutorial: Installing Jetson Software Explained video.”

    My success with sdkmanager is largely due to that video. Highly recommended.

  7. Please delete my last message! I’ve found a few missing pre-requisites for the host that the scripts weren’t picking up. All is good in the world again 🙂

    Thanks for the great videos and content.

  8. It’s turned out more problematic that I first thought, mostly because of biological input error 🙂 I use 22.04 on my x86 host machine, I fought with it hard before realising it isn’t supported 😔

    The symptom was that I get all the way to the reboot of the Orin, and waiting for SSH to come live, it connects and then refuses to write. The missing packages are a herring, because of my host OS. I also wasted some time questioning my SSD compatibility (SN570 1TB WD Blue) the original that came with the Seeed Studio dev is a low quality cheap item (labelled FSB0C128G-C4C7299). My final debug step was repeat the same process with the original 128GB SSD, exact same symptom 😂 it’s at this point I noticed the clearly documented supported hosts.

    I’m preparing a live USB of 20.04 to go again.

    1. The only way I could get my Orin nano to flash was to build a physical x86 20.04 host. The latest versions of VirtualBox and VMware fail the flashing process when running 20.04 virtualised on Monterey. They seem unable to enumerate the USB connection fast enough/correctly between the host and target as it switches state. The SN570 1TB SSD worked and is a noticeable improvement.

  9. Great review, I appreciate it!

    On my Orin Nano, I’m having issues installing nvidia-jetpack; there seems to be a circle of broken dependencies preventing it from installing. I’m still digging through the error messages to figure out exactly what the problem is, but did you see anything like this when setting it up? I’ve poured through NVidias documentation and have run their troubleshooting commands, no dice.

    I think one of the packages updated with ‘apt update’ broke a dependency in jetpack, and trying to install jetpack fails because it’s refusing to downgrade that package.

    Unrelated, or maybe related, I installed the nVidia CUDA 11-8 compatibility package but the software I’m running isn’t seeing it (the nVidia CUDA 11-8 container). Maybe I need to use the CUDA 11-4 container and put the compatibility package on that? I’m just frustrated and feel at a dead end with this, any troubleshooting ideas are greatly appreciated.

    1. I haven’t seen any error messages on a normal install.
      When you talk about containers, what are you talking about? My current understanding is that the CUDA 11-8 compatibility package is for x86 machines, not arm64 machines like the Jetson.

      Each version of JetPack has an associated version of CUDA with it. On a direct install, the nvidia-jetpack repository should install the associated version of CUDA. You can use
      $ apt info
      to explore.
      For example:
      $ apt info nvidia-jetpack

      If you follow the dependencies, you should get to nvidia-cuda, which will report the coda-runtime version. It’s probably 11.4.
      You should flash the system, update and then apt install nvidia-jetpack.
      Hope this helps.
      Jim

      1. Jim,
        There are cuda-compat packages on the aarch64 apt repo, I installed it using apt install.

        By containers I mean I installed aarch64 docker and the nvidia container runtime. This allows for containerized docker workloads (such as the automatic1111 webui) but getting it to work with the required cuda 11-8 is tricky. I ended up finding a fantastic resource and was able to deploy gpu accelerated ML workloads via Docker on my Jetson Orin Nano using https://github.com/dusty-nv/jetson-containers/tree/master/packages/diffusion/stable-diffusion-webui
        Dusty-nv has several Jetson compatible containers available.
        My end goal is a 4 node Jetson Orin Nano cluster running K3S (probably with K3D as the k8s distro) with hw accelerated workloads. I’m almost there, I think.

  10. Jim, When I run ./flash_jetson_external_storage.sh on an orin, the error message says: Error: Reading board information dailed. Command tegrarcm_v2 –new_session –chip 0x23 0 –uid –download bct_br br_bct_BR.bct –download mb1 mb1_t234_prod_aligned_sigheader.bin.encrypt –download psc_bl1 psc_bl1_t234_prod_aligned_sigheader.bin.encrypt –download bct_mb1 mb1_bct_MB1_sigheader.bct.encrypt
    ERROR: Unsupported device.
    This method currently only works for the Jetson Xavier or Jetson Orin
    I’ve made sure the Orin is in Recovery mode and the device becomes pretty hot when I leave it powered on in the recovery mode. Any suggestions what went wrong?
    Thanks,
    Rosa

    1. A couple of questions. Which Orin are you using, AGX or Nano?
      What version of Ubuntu are you using on the host?
      Is this on a VM, or a native Ubuntu installation?

      NVIDIA has been trying to find this issue for quite some time. It has to do with instability of USB signals they are thinking. They suggest in order:

      $ sudo -s
      $ echo -1 > /sys/module/usbcore/parameters/autosuspend

      * Using a different USB cable
      * Using a different USB port
      * Finding a different host machine to flash
      * Ubuntu 18.04 on the host seems more reliable, 20.04 seems to work many times, 22.04 not supported

      I would try doing this using their SDK Manager instead of these scripts. These were written before the SDK Manager supported this functionality

      1. I experienced the same: When put in Recovery Mode, the Orin Nano becomes quite hot. I guess, it has something to do with the fan, which does not run in R.-Mode.
        The flashing process definitely does not work in a VM (which is stated on the related page, I have to admit). It starts with the addition of USB ports to the system and ends with connectivity issues.
        So, I set up a dual-boot system with Ubuntu and Windows. Unfortunately, with only 70 GB. Consequently, I ran out of disk space several times, when using first SDK manager and later your (excellent!) tutorial. I was able to install the software on the Jetson Orin Nano Nvme which I installed. It took an eternity, but worked very well. One small issue: I had to change the script run command from flash_jetson_external_storage.sh to ./flash_jetson_external_storage.sh to make it happen.
        As you state at the end of the tutorial: I ended up with: Ubuntu 20.04, JetPack 5.1.
        Next morning, I thought how to upgrade to JetPack 6.0? And that turned out to be extremely easy: I edited the get_jetson_files.sh to the upgraded packages and to my greatest surprise, it worked.
        Again, thank you so much for this tutorial. And the video really has a big addon value.

  11. Jim,
    Thanks for the info. The first two commands solve the problem.

    To answer your questions, the host computer is a native Linux (Ubuntu 20.04) on a Dell Precision. The device is a Jetson Orin Nano 8GB development kit. The SSD card is a Crucial P3 PCIe 3.0 M2 with 512 GB. I had previously tried SDK Manager and the error log showed similar error messages.

    On a side note, I think the physical USB-C plug may cause some problems. 1. it needs a big push to plug in securely on the Orin Nano. 2. I had prior experience that the USB-C to USB cable may need to rotate the orientation of the USB-C plug. This happened with the RealSense Stereo camera. If the computer can’t detect the camera, then rotate the USB-C 180 degrees on the RealSense and relaunch the program again. That would solve the problem. I did try switching cables, orientations, and ports yesterday and could not solve the problem. Anyway, the commands helped today.
    Thanks again for your wonderful work and videos.
    Rosa

    1. Thank you for the kind words. It is very disconcerting when you can’t trust your connections! I am glad you were able to get it to work, and thanks for reading!

  12. Hi! I have a problem that occurred also when I use sdkmanager, even I have 128GB NVMe SSD, I creates 14GB partition + set of other partitions 🙁 don’t know how to solve this, tried different things but no success.

      1. hey! sorry for late answer I didnt receive update on this comment, but answering your question: no there wasn’t such step. Not sure if it should be a part of nvsdkmanager_flash script?

  13. I just want to thank you for your work… I’ve been trying to flash my jetson orin nano to boot it from nvme and I’ve tried:
    – VM
    – WSL
    – Docker
    – Nvidia sdkmanager on a ubuntu 20.04
    Nothing worked … finally I gave a shot to your flashing scripts … and it works 😉
    Thanks

  14. We have had several problems in the installation on pendrive

    We have only been able to install it on a 256 GB flash drive although the operating system occupies much less. When we tried to install it on several 64 GB pendrives the process failed and gave us the following error message:

    Error: Invalid argument during seek for read on /dev/sda
    [ 9]: l4t_flash_from_kernel: Error: partprobe failed. This indicates that:

    the xml indicates the gpt is larger than the device storage
    the xml might be invalid
    the device might have a problem.
    Please make correction.
    Flash failure
    Cleaning up…

    The installed system is extremely slow to boot and use.

    These problems do not occur when we install the system on a 64 GB microSD.

  15. Is it possible to flash the Orin from Windows 10/WSL/Ubuntu 20.04?

    I’ve enabled the NVIDIA USB device through using usbipd but the NVIDIA device seems to disappear somewhere in the script before the actual transfer has begun.

    I don’t have a physical Linux system only a virtual one

    1. I tried to flash from WSL, I think because windows doesn’t have a proper driver for the Jetson connected as a device that it will auto disable that usb device and be unavailable to WSL.

      You’ll need to install a bare metal Ubuntu to properly flash the Jetson, unfortunately.

  16. Thanks for looking into this. I found an old PC and loaded Linux not it. Surprisingly the scripts didn’t work and Orin just came up with the (UEFI) bootloader. However the SDK manager did work – during the process I observed that the Jetson is disconnected and re-enumerates several times; the re-enumeration must lose the USBIPD mapping.

  17. Thanks for the install scripts. I’ve used the SDK manager to do the same thing but the script is actually easier to use.

    I’ve been trying, without luck, to install Jetpack 6 on my Orin Nano using the Nvidia SDK manager.
    I’ve tried installing to the SD card and the NVMe drive. Flashing the SD card with the Nvidia image. Nothing ever succeeds.

    WIll you create a script at some point to install Jetpack 6 (perhaps after it’s fully released)?

  18. This doesnt work. Just fails – so frustrating. I even built a x86 box with Ubuntu 20.04. Why cant this stuff just work, maybe take a note from the Raspberry Pi setup. I have never had any issues with that platform.

    Here is the bug issue I filed: https://github.com/jetsonhacks/bootFromExternalStorage/issues/43

    I am about ready to send my Jetson back (thanks Amazon) and just move forward using the Coral AI Edge TPU which does just work. Such as waste of my life and the past several days.

    1. You should probably return it, it doesn’t sound like it fits your needs. You should be using the SDK Manager to flash the Jetson. These scripts, while work on the machines I have, seem to have problems with different makes of PCs/USB connections.

  19. The script didn’t work for me either but the SDK did – I had to rework a PC to support Ubuntu 22 not Ubuntu 20. The SDK also successfully installed Jetpack 6.0DP.

    None the less the JetsonHacks video and script was very helpful in setting things up as the basic tools for Nvidia do seem to require quite a high degree of Linux knowledge – which isn’t my aim in getting the Orin Nano going.

    1. Thanks for sharing! JetPack 6 requires you to flash the QSPI on the Orin Nano, which requires the SDK. There are ways to use the NVIDIA scripts, but they seem to have issues frequently that are related to different host machine configurations/hardware. I’m not sure it’s a Linux expertise issue as much as there’s timing issues on the USB stacks on the Jetson and PC side.

  20. Yes, it’s very fussy about the USB host and driver. My experiments showed that the (re)-enumeration that happens as part of the programming process upsets many USB implementations. It needed a real PC running Ubuntu 22.04 to work and I think that the SDK needs 22.04 as well – it says it works on 20.04 but didn’t in my experience.

  21. I have a question. I have a jetson orin nano and I was wondering if I need linux to set it up. Can I download the SD card imager and flash it to the sd card? Or do i need to do the initial boot up through SDK manager through a linux system?

    1. You probably have to flash it using the SDK Manager. The QSPI flash memory on the Jetson module needs updating which can only be done using the SDK Manager. Then you can simply flash the SD card and use it using an imager. Thanks for reading!

  22. I have tried for 4 days all possibilities with the sdkmanager 1.x, 2.x with different packages, seeed online installation guide and some scripts. I have installed 18., 20 22 Ubuntu releases. I even tried ChatGPT Nothing works. After 4 days of struggling I found your short installation description and it worked right out of the box in a much shorter time. I have paid 800€ for my jetson-nano-orin-8Gb and I am deeply frustrated by Nvidia not to give an out of the box experience just to apply the OS. They make a lot of money and they should have a better support for their expensive products.

  23. I had many off the same issues flashing I even got as far as bootup using the SDK Manager GUI method but as soon as the ubuntu splash screen was about to pop up on the Jetson the monitor went to No Signal.

    But I finally was successful with these instructions.

    https://docs.nvidia.com/jetson/archives/r36.2/DeveloperGuide/IN/QuickStart.html#preparing-a-jetson-developer-kit-for-use

    The process when pretty quick at that point because I had already downloaded and installed the host components via the GUI. From the hardware standpoint I just needed to dual-boot my existing old (Core i5 Win7 era) Dell Inspiron laptop that was already running 22.04, to run ubuntu 20.04 along side the existing installation. I also needed to plug in to the USB 2.0 port (the USB 3 showed the device but failed the flash.) And finally run the flashing script in the above link. Just choose the script for your storage type.

    I tried a couple of times with virtualbox running a 20.04 and it failed but I’m curious whether changing the usb protocol to 2.0 instead of the default 3.0 in the settings might have produced different results??

    I might try flashing to an sd card and see.

  24. Hello! Thanks for this!
    You mentioned production setup at the beginning. But this process involves a lot of manual steps still (plugging in and out stuff). Is there a way to flash it easily to get it into a state where it will boot from the ssd by default? And then clone SSDs with everything set up for one specific hardware.
    I’m working on a camera system setup with a jetson orin nano, and was thinking how can this even be “mass” produced without needing me to manually spend a lot of time on each nano.

    Thanks!

    1. There are tools that NVIDIA provides to help with this. It’s beyond the scope of what I can cover here. Here’s part of the procedure: Jetson Linux Mass Flashing

      Typically you develop the disk image that you want to flash, then you need to decide how you want to distribute it. There are many things to take into consideration, including if you want to use secure boot or not and such. You can ask for help on the NVIDIA forums where there’s people who do this task routinely. Hope this helps, and thanks for reading!

  25. Thanks, this works for me. Currently I want to flash a large number of batches, is there a faster way (each process takes 45 minutes which seems a bit long), is there any way to clone the flashed image from one ssd to another ssd?

    1. Yes, there’s a way to do mass flashing. It’s beyond what I can explain here, the methods are covered in the JetPack manual. If you have questions or need help, please ask on the official NVIDIA Jetson forums where there are a large group of developers and NVIDIA engineers who deal with that issue on a daily basis. Thanks for reading!

  26. Hi hello sir.
    Thank you so much for this videos.
    Sir i have a problem of storage . İ done a total installation of the system on Jetson Xavier NX step by step, but when i need to install Nvidia-jetpack he tell me that there is not enough space to complete the download and install the Nvidia-jetpack, knowing that my SSD memory is 256 GB what is the solution for fixes this problem ?

  27. Does the method that you presented work for jetpack 6? I have an older jetson orin nano and I am having trouble updating the firmware. The sdk manager does not seem to be able to load directly to the SSD drive they way it did with the older version of jetpack. Please let me know if there is a way to do this via script.

  28. Thank you for the nice article, scripts, video and comments. Wondering if there is a way to make a bootable SSD without a host Ubuntu machine. On a Jetson Nano Orin running JetPack 6.x that is booted from SD card, can I install a 512 GB SSD and then use something like dd or rsync to copy OS and data. (Basically without having to use a host Ubuntu).

    1. While I’m sure someone sufficiently motivated might be able to accomplish that task, it’s not easily done. The way that the Jetson sets up the file system is as several different partitions. There’s the rootfs, and then many others which hold various specific bits and pieces of information. A while ago NVIDIA beefed up the security of the system, and added different signing and authorization methods. This makes it more difficult to just copy the SD over to the SSD and start running. You could probably ‘boot’ from the SD card and pivot the root to the SSD, but there’s issues with that also. I spent a lot of time trying to accomplish this task over the years, but it would work for several months and then NVIDIA would change some parameters here or there that would invalidate it.

      At the end of the day, you’re much better off biting the bullet and using the SDK Manager or the flashing tools from a PC. Thanks for reading!

Leave a Reply

Your email address will not be published. Required fields are marked *

Disclaimer

Some links here are affiliate links. If you purchase through these links I will receive a small commission at no additional cost to you. As an Amazon Associate, I earn from qualifying purchases.

Books, Ideas & Other Curiosities