To get Windows 10 running on a Raspberry Pi is actually quite easy, but right now there are a couple of limitations that we know of, and probably a couple more that we don't know about yet. But we wanted to get this out there so our community could start playing with it and help us improve upon what we already have.
The first thing that you need to do is to format your SD card. The easiest way is just to go and get the SD Card Formatter app.
Once you have formatted your disk, lets get it ready for EVE.
diskutil list
diskutil unmountDisk /dev/ //mine is diskutil unmountDisk /dev/disk2
sudo dd if=/dev/zero of=/dev/ bs=1m count=1000 //mine is sudo dd if=/dev/zero of=/dev/disk2 bs=1m count=1000
The above step can take a couple of minutes with out feedback from the command line (mine took just over one minute)
EVE will act as the OS for the RPi. You then can add your own containerized OS and application(s) on top of it.
git clone https://github.com/lf-edge/eden.git
cd eden
Build Eden
make clean <--This cleans up if you have already built something and does nothing if you haven't
make build
./eden config add default --devmodel RPi4
Add the xen flag if you want to use Xen as your hypervisor, ignore if you want to use kvm
./eden config add second --devmodel RPi4
./eden config set default --key eve.hv --value=xen
./eden setup
./eden start
The output of 'setup' will produce the file 'live.img, which is the image file that you will put on the RPi's SD card
MacOS:
diskutil list
diskutil unmountDisk /dev/<your_disk_name> <--your disk might be unmounted already if you haven't removed after step 0
sudo dd bs=1m if=fullpath_of_your_image.img of=/dev/<your_disk_name; sync
sudo diskutil eject /dev/<your_disk_name
./eden eve onboard
./eden pod deploy -p 8028:80 docker://nginx
./eden status
The final part is to push Windows from Eden to EVE on your RPi.
./eden pod deploy docker://itmoeve/eci-windows:2004-compressed-arm64 --vnc-display=1 --memory=6GB --cpus=2
The memory = 6 GB flag means that you are telling EVE to give Windows 6 GB of RAM, thus if you are running on a 4 GB RPi, you will want to reduce this to 3 GB. The more memory that you give to Windows, the better it will perform, but you will want to save 1 GB for EVE. EVE only needs a little less than 500 MB, but save 1 GB. Also, remember if you are going to put other applications on EVE, you will need to save memory for them.
Deploying Windows to EVE will take a while. To check on the progress use the pod ps command.
./eden pod ps
The results will start with the percent downloaded, then loading, creating volume, and finally running
You will need to download VNC to your laptop. Then the use the IP address of your Pi, plus the port of 5901→ 192.123.1.14:5901
You now have Windows running on a Raspberry Pi! Pretty cool, eh? Please visit us on slack to tell us what you have done.
This was mostly done as a PoC, so we are really looking for help from the community to improve this project. Here are some ideas from us:
Limitations/things we haven't tested as of Nov 25, 2020