installing OS from SD to eMMC methods for flashing SD - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=111) +--- Forum: Linux on Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=114) +--- Thread: installing OS from SD to eMMC methods for flashing SD (/showthread.php?tid=12571) |
installing OS from SD to eMMC methods for flashing SD - PineHead7 - 12-20-2020 I run into few problems while trying installing e.g. 20.12 manjaro to eMMC on etched SD with osdn.net image. I had to go back to image 20.04 where image already contains script/way to select installation to eMMC. Later will edit this post, so this will be complete and universal guide to dd of any OS distro with emmc-installer. Please help with steps to be done on manjaro and ubuntu. thanks There are two methods:
RE: installing OS from SD to eMMC methods for flashing SD - jiyong - 12-20-2020 It should be possible to install recent Manjaro ARM releases from SD to eMMC by installing: manjaro-arm-flasher https://forum.manjaro.org/t/pinebook-pro-emmc-installer/19244 RE: installing OS from SD to eMMC methods for flashing SD - PineHead7 - 12-22-2020 unfortunetly it's still in development and not always works. In my case it doesn't work... Jiyong, do you know how to use the dd if command to copy image from sd to emmc? what script to add to make it automated install to emmc? RE: installing OS from SD to eMMC methods for flashing SD - jiyong - 12-22-2020 (12-22-2020, 02:38 PM)PineHead7 Wrote: unfortunetly it's still in development and not always works. In my case it doesn't work... Jiyong, do you know how to use the dd if command to copy image from sd to emmc? what script to add to make it automated install to emmc? Yes, I also think it was a bad move they stopped with the install image, before the script is stable. Anyway, when you install manjaro-arm-flasher with Pamac (the GUI package manager), you can also see where the script is installed. I installed it with manjaro-arm-emmc-flasher, but that is old and broken too. So I found the script here: /usr/share/manjaro-arm-emmc-flasher/ And this is the line to install: xzcat $XZIMG | dd of=$EMMC bs=4M status=progress $XZIMG should be replaced the name of the compressed image (ending with .xz). $EMMC should be replaced with /dev/mmcblk2 So it should look similar to this: xzcat Manjaro-ARM-kde-plasma-pbpro-20.12.img.xz | dd of=/dev/mmcblk2 bs=4M status=progress And sync just to be sure. |