|
I found from this page this instruction, has anyone tried it yet?
https://www.jeffgeerling.com/blo ... e-on-orange-pi-plus
To use the built-in 8GB of eMMC storage on the Orange Pi Plus as a writable volume in Linux, you need to delete the existing partitions (I think mine were formatted as FAT/WIN32), create a new partition, format the partition, then mount it:
Delete the existing partitions:
sudo fdisk /dev/mmcblk1
p to list all partitions, then d and a number to delete all existing partitions, then w to write the changes.
Create a new partition:
sudo fdisk /dev/mmcblk1
n to create a new partition, then use all the defaults, then w to write the changes.
Format the partition: sudo mkfs.ext4 -L "emmc" /dev/mmcblk1p1
Create a mount point: sudo mkdir /emmc
Mount the disk: mount /dev/mmcblk1p1 /emmc |
|