Copying sd card from vero 1 to vero2?

How can I tranfer all my settings from my Vero 1 to Vero 2 on the SD Card

If you mean all your Kodi settings you should be able to just copy the hidden directory /home/osmc/.kodi from the old SD card to the Vero 2.

Check first that that directory is less than about 5GB so that it will fit on the 8GB flash disk of the Vero2…

You can plug the SD into the Vero 2 with a micro SD adaptor (if required) and copy the files directly. Something like this:

sudo systemctl stop mediacenter
rm -rf /home/osmc/.kodi/
cp -av /media/4729357923497u9/home/osmc/.kodi/ /home/osmc/
sudo systemctl start mediacenter

This would stop Kodi, delete the existing .kodi directory (warning, any existing library or settings will be lost) then copy the .kodi directory from the SD card. Check in /media first to see the name of the mount point - it will be a big long string of numbers. The final line starts Kodi again.