After mounting a 64Gb sdcard (/dev/mmcblk1p1) to my embedded device that has topped out of its 16Gb emmc (/dev/mmcblk0p1) df -h
returns the following which looks correct:
Filesystem Size Used Avail Use% Mounted on
/dev/mmcblk0p1 14G 13G 509M 97% /
none 3.5G 0 3.5G 0% /dev
tmpfs 3.8G 4.0K 3.8G 1% /dev/shm
tmpfs 3.8G 30M 3.8G 1% /run
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs 3.8G 0 3.8G 0% /sys/fs/cgroup
/dev/mmcblk1p1 58G 52M 55G 1% /mnt/sdcard
tmpfs 778M 12K 778M 1% /run/user/120
tmpfs 778M 0 778M 0% /run/user/1000
However, now when I attempt to clone mediapipe I get the following out of space error:
fatal: write error: No space left on device70 MiB | 12.58 MiB/s
fatal: index-pack failed
I assume this is a high level question and I am not sure how to ask it, but how can I "link" additional storage from my sd into the application development space? I have things that I need for the application in /
so sd cant be fully independent. Would it just be easier to boot off the sdcard from the get go so that additional storage is there from the beginning?
Thanks !
/
all my development needs to be done where there is storage remaining ( in my case/mnt/sdcard
), but do you see any problems arising because alot of my dependencies remain in/
– wgthompson Jan 18 '23 at 14:48/mnt/sdcard
, use your program’s main data directory. You’re not limited to locations in/mnt
. – matigo Jan 18 '23 at 21:32