11-23-2021, 01:36 AM
As Danct12 points out, you need to use the base partition of your target drive, which according to you is /dev/sda.
As in:
dd if=archlinux-pinephone-phosh-20211022.img of=/dev/sda bs=1M status=progress conv=fsync
Then, before rebooting don't forget to resize the resulting 2nd partition:
(with jumpdrive still operating, and issuing command from host linux computer):
parted /dev/sda
(parted) resizepart 2 100%
(parted) quit
Otherwise you won't have access to the full available disk space on the emmc drive. Strange, the Mobian system takes care of this by automatically resizing on first boot, but Arch and Manjaro seem to leave it up to the user.
As in:
dd if=archlinux-pinephone-phosh-20211022.img of=/dev/sda bs=1M status=progress conv=fsync
Then, before rebooting don't forget to resize the resulting 2nd partition:
(with jumpdrive still operating, and issuing command from host linux computer):
parted /dev/sda
(parted) resizepart 2 100%
(parted) quit
Otherwise you won't have access to the full available disk space on the emmc drive. Strange, the Mobian system takes care of this by automatically resizing on first boot, but Arch and Manjaro seem to leave it up to the user.