Boot Jetson AGX Xavier directly with configured SSD storage
I found after referencing online
One is to mount the SSD to the [/home] directory, and the other is to directly use a blank SSD to build the system from scratch. These are not what I want
I now have an SSD storage that has been configured, and I want to boot the host directly from the SSD, that is, put the SSD directly into the [/] root directory
In this way, the host directly reads the SSD when it starts up. How can I do this?
I installed ubuntu system on my laptop
I first installed the SSD in the card reader, then connected the computer
Find the device name of the SSD [/dev/sda1]
Use the [dd] command to compress and backup the configured system
sudo dd if=/dev/sda1 conv=sync,noerror bs=32M|gzip -c > nano_SSD_back.img.gz
The compressed file size is 80G
Burn after completion
Then connect the new SSD to the computer
Decompress and burn
gunzip -c nano_SSD_back.img.gz | dd of=/dev/sda bs=32M
When it was about to finish, there was an error warning [No space on device], I ignored him
Then the SSD can be recognized without being plugged into the computer
I followed the tutorial and it failed
GitHub - jetsonhacks/rootOnNVMe: Switch the rootfs to a NVMe SSD on the Jetson Xavier NX and Jetson AGX Xavier
the steps in it
【./copy-rootfs-ssd.sh】
In this case there should be a problem
The above content is all translated by me using google, because my English is very poor
If someone can solve it, I would be very grateful