Comment on [Question] Anyone know if those Miscro sd cards work well on the Steam Deck?
NoXPhasma@lemmy.world 11 months agoAdditionally, to what was already said, the size of storage is giving in Decimal (1000B based) while after formatting it is often shown in Binary (1024B based), which makes the storage look smaller, which it isn’t.
SuperIce@lemmy.world 11 months ago
It should be noted that the way you listed the partitions misses the dual (A/B) install method that the deck uses. There are 2 identical size partitions for root, var, and EFI. When an update occurs. The system installs the new update on the inactive set of partitions and then tells the UEFI to use the other set on the next boot. That doesn’t matter too much for 512GB models like your’s, but the extra ~5.5GB for the redundant partition layout can be significant for 64GB models.
NoXPhasma@lemmy.world 11 months ago
I’ve used
df -h
and that showed only this three partitions. I’ve only skipped the tmpfs mounts.SuperIce@lemmy.world 11 months ago
The
df
command only shows mounted devices and filesystems. You can uselsblk
to show all block devices and their partitions. To format it more nicely to show the labels for each partition, you can use these options:lsblk -o name,mountpoint,partlabel,size
.