Jetson tx2 disk space

After flashing with JetPack3.1, the disk space of Jetson tx2 is only available 57%. I didn’t have installed anything yet in Jetson. Is this normal?

Thanks for your input in advance.

The default flash size use of eMMC does not use all of the eMMC. You could use the rest by adding a partition, or you could flash using the full size. If you are on command line the “-S” parameter gives partition size to use. I’m not sure how JetPack sets this (I use Fedora, so I can’t use JetPack), but the maximum use of eMMC would be this command line flash:

sudo ./flash.sh -S 29318MiB jetson-tx2 mmcblk0p1

You can use “sudo gdisk /dev/mmcblk0” to edit the partitions, but be very careful to not hurt what is already there. “p” shows current partitions; “n” is to add a new partition, which you would pick the default, and size with defaults…this would use all that is left or available. “w” is to write and quit gdisk, control-c or “q” would exit without saving.

Thank you for your reply. I will try to gather the rest using the command you provided.

if you are experiencing lack of space you may also like to use disk of HostOS:

sshfs username@hostosaddress:/ /mountfolder

that will likely to mount the whole disk drive of the HostOS