PiKVM
Environment
- Raspberry Pi 4B
 - 16GB sd card (8GB is acceptable)
 - Video capture (HDMI to USB)
 - Signal split(Type C => Power + OTG)
 - PiKVM OS
 - If you are using USB HDMI capture, please download HDMI-to-USB dongle image
 
Setup flow
- Flash PiKVM image to SD card
 - Connect Pi 4 with a target machine
 - Boot your Pi 4
 - Open the browser and visit the URL assigned to PiKVM
- Default user name and password to login WEB is admin/admin
 
 
Mount virtual drive to the target machine
- Create a img file
 - Format the img file as vfat
 - Mount img to /mnt
 - Copy files to /mnt
 - Umount
 
$ dd if=/dev/zero of=disk.img bs=1M count=64
$ mkfs.vfat -F 32 ./disk.img
$ mount ./disk.img /mnt
$ cp -fr <your data> /mnt
$ umount /mnt