04-27-2021, 07:54 PM
(04-26-2021, 12:38 PM)jersdayoff Wrote: No I don't remember the separate root password unfortunately. You have a link to the guide for reflashing Manjaro to the Pinebook? Also thanks for the replies
So, you'll need:
1. A microSD card (probably at least 16GB, I've used 32 and up)
2. A working computer to burn the OS to the SD card on
3. One of the OS's that works on the Pinebook Pro: https://wiki.pine64.org/wiki/Pinebook_Pr...Pro_images
Then it depends. If you're on a computer that can run Balena Etcher, just select the image that you want and write it to the SD card. Pop it into the Pinebook Pro, turn it on and double-check that it's what you want.
To get Manjaro back on the Emmc, you'll need to boot to the SD card and download the os that you want. Then, you'll need to writethe OS to the Emmc. It's SUPER IMPORTANT that you are careful on this step, as you can render the Pinebook Pro unbootable.
We can't use Etcher on the Pinebook family, so we need to do it manually. It's not that hard as long as you're really careful.
First, uncompress the image. If you're using Manjaro, the command is:
Code:
unxz <the name of the file>
Then, we need to see what the system calls the EMMC. To do that, run:
Code:
lsblk
You should get something like
Code:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
mmcblk2 179:0 0 58.2G 0 disk
├─mmcblk2p1 179:1 0 213.6M 0 part /boot
└─mmcblk2p2 179:2 0 58G 0 part /
mmcblk2boot0 179:32 0 4M 1 disk
mmcblk2boot1 179:64 0 4M 1 disk
zram0 252:0 0 5.7G 0 disk [SWAP]
If you are booted from the SD card, that will be the one with the root under MOUNTPOINT (/). You want the other one!!!! I'm running off my eMMC, so I don't have two different ones.
Then, enter this:
Code:
sudo dd if=<path to your image file> of=/dev/<device> bs=4M conv=fsync status=progress
<device> is the whole drive (should be something like mmcblk1 or mmcblk2)
Wait a while, turn your machine OFF, and pop out the card. It should reboot into the setup for whatever OS you chose.