I did in these process…
- Formatting my sd card in ExFAT type.
- Writing Jetson nano image file(official one) to sd card using ‘Etcher’ app.
- after the work, sd card does not mount well on MacOS and it is divided in 12 partitions with GUID partition map. When I mount the sdcard on Windows, so many pop-ups (maybe the number of them is 12) come out and I can’t do anything with this sd card.
I did same things with many sd cards(128GB, 32GB etc). regardless of whether cards have mounted at Jetson nano board.
so I think there are some collisions between the formatting process and writing Jetpack img process…
is there any recommended preprocessing of sd card to write Jetpack img?
this is the screenshot of disk utility. → https://i.stack.imgur.com/aAi6n.png
Embedded systems don’t have a BIOS/UEFI, and so this is done in custom software. You’ll find a lot of partitions which are required during boot. None of those partitions are mountable…they are binary data and operating systems cannot mount those partitions. Only the rootfs can be mounted, and the operating system mounting this requires the ability to mount ext4 filesystem type.
Unless you are flashing from Ubuntu I don’t know of any other options.
Many partitions are normal. The rootfs partition will expand to fit the extents of the disk on first boot, so don’t worry if it doesn’t fill the disk initially.
As others have mentioned, it is normal to have multiple partitions. See here for an overview of the different partitions used:
[url]https://docs.nvidia.com/jetson/l4t/Tegra%20Linux%20Driver%20Package%20Development%20Guide/part_config.html#wwpID0EIHA[/url]
haha… I got it! Thank you so much everyone :)