Yes, because that is being installed as part of the plugin.
You can’t resize in the PI, because the SD card IS already re-sized during the first boot.
We saw that and you can check as I mentioned above.
You could try to re-size the data partition before using the flashed SD in the PI.
- You need the SD card reader (which one do you use?) and insert it with the 2nd card into a USB slot.
- Boot
- Run
sudo fdisk -l
to make sure that the 2nd SD is/dev/sda
- Run
echo "$(sudo parted -s /dev/sda unit MB print free | tail -n 2 | grep Free | awk '{print $3}' | awk -F 'MB' '{print $1}')"
- Note the returned, it should be a number equal or higher than 1
- Run
echo "$(sudo parted -s /dev/sda unit MB print free | grep Free | tail -1 | awk '{print $2}' | grep -o '[0-9]\+')"
- Mark the returned value and use it in the re-size command instead of <END>
- Run
sudo parted -s /dev/sda resizepart 3 <END>
sudo e2fsck -fy /dev/sda3
sudo resize2fs /dev/sda3
Done, now boot from the 2nd card.
I doubt whether it makes a difference, but never say never until you know the source of your problem.