09-23-2020, 05:39 PM
(This post was last modified: 09-23-2020, 06:39 PM by Dendrocalamus64.)
If mmcblk2 is the SD, then mmcblk1 is the eMMC. According to df, only mmcblk1's two partitions are mounted, and you're running from those.
sudo mount /dev/mmcblk2p2 /mnt
and then see what df says.
lsblk isn't showing that it's full, it's showing that all the blocks are assigned to partitions.
Before attempting to edit the partition table of either disk or resize its filesystems, make sure you're booted & running from the other disk.
Also, how sure are you that mmcblk2 is the SD? When I boot Manjaro from SD, it ends up as mmcblk1 and the eMMC ends up as mmcblk2. Device name assignments for block devices aren't necessarily the same across reboots depending on things like kernel & where you booted from, which is why it's preferred to use UUIDs to specify what gets mounted where in /etc/fstab.
sudo mount /dev/mmcblk2p2 /mnt
and then see what df says.
lsblk isn't showing that it's full, it's showing that all the blocks are assigned to partitions.
Before attempting to edit the partition table of either disk or resize its filesystems, make sure you're booted & running from the other disk.
Also, how sure are you that mmcblk2 is the SD? When I boot Manjaro from SD, it ends up as mmcblk1 and the eMMC ends up as mmcblk2. Device name assignments for block devices aren't necessarily the same across reboots depending on things like kernel & where you booted from, which is why it's preferred to use UUIDs to specify what gets mounted where in /etc/fstab.