Difference between revisions of "Jetson/AGX Xavier Alternative II For Cloning"
< Jetson
(text formatting) |
(text formatting) |
||
Line 3: | Line 3: | ||
echo u > /proc/sysrq-trigger | echo u > /proc/sysrq-trigger | ||
− | '''Second,take raw image:''' | + | '''Second, take raw image:''' |
dd if=/dev/mmcblk0p1 of=testimage.raw | dd if=/dev/mmcblk0p1 of=testimage.raw | ||
Line 20: | Line 20: | ||
./mksparse -v --fillpattern=0 ~/testimage.raw system.img | ./mksparse -v --fillpattern=0 ~/testimage.raw system.img | ||
− | '''Fourth | + | '''Fourth, deploy the sparse image to other devices:''' |
sudo ./flash.sh -r jetson-Xavier mmcblk0p1 | sudo ./flash.sh -r jetson-Xavier mmcblk0p1 |
Revision as of 16:20, 18 May 2019
First, stop disk at Xavier:
echo u > /proc/sysrq-trigger
Second, take raw image:
dd if=/dev/mmcblk0p1 of=testimage.raw
Moreover, the image could be taken over the network e.g. using one of two methods below:''
dd if=/dev/mmcblk0p1 | ssh user@hostpc dd of=/data/image.raw
sender: sudo dd if=/dev/mmcblk0p1 | netcat <ip_address> <port>
reciever: etcat -l -p <port> > your_image_file
Third, make sparseimage [at Host PC]
./mksparse -v --fillpattern=0 ~/testimage.raw system.img
Fourth, deploy the sparse image to other devices:
sudo ./flash.sh -r jetson-Xavier mmcblk0p1