Gesamtbetrag:
zzgl. Mwst.
- Copy SD Card Image to an SD Card
- Copy Software to the Board via SSH and SCP
- Getting and Running the PHYTEC VM
- Install FTDI Driver on Windows
- Set Static IP Address in Ubuntu 20.04 LTS
- Setup a Second Network Interface in the Virtual Machine
- Setup qbee Device Management on phyBOARD-Polis
- Using phyLinux to build a yocto BSP with a build-container
- Using thingsboard.io to connect phyBOARD-Polis to the Cloud
Copy SD Card Image to an SD Card
Goal
Copy a created SD card image to an SD card for Windows.
Prerequisite
- You have an SD card image
- You have an SD card with at least 8GB storage space
Tutorial for Windows
- For this tutorial, we will use the Balena etcher (https://etcher.balena.io/) to flash the image to the SD card.
- If the etcher is installed correctly, you can use the program to flash the image to the SD card.
- When the flashing process is finished, you can remove the SD card from the host computer and use it on the board.
Tutorial for Linux
- We will use "dd" on the command line to flash the image to the SD card.Flash the image to sdcard
# find the sdcard on your /dev folder # then umount it sudo umount /dev/<sdcard device> sudo dd if=<path to sdcard image> of=/dev/<sdcard device> bs=1M conv=fsync status=progress
- When the command is finished, you can unplug the SD card and insert it into the board.