...
- need to run it via RDP or VNC
- Not sure if the RPi's Bluetooth or WiFi is working
What you will need
...
:
- RPi 4 B- 8 GB is better, 4 GB will work, but it is slow. If you use 4 GB, you will need to lower the GB given to Windows below.
- This kit has everything that you need, minus the SD card
- 32GB SD card (at least), you will want a fast one for a camera, this one is 128 GB
Networking Cable(Native WiFi is working)- WiFi name (SSID) and password.
...
Don't you hate it when you try to do a tutorial and you get stuck or something isn't clear? We do too. Thus, if this happens, please visit us on our Slack channel LF Edge #eve-help and ask your question. Since we are a community, we just ask that if you see a question that you can answer, that you do that too.
And while you are there, go to #eve or #eve-rpi and tell us what you building.
...
- On your computer, navigate in your terminal application to the location where you would like place EVE and Eden
- Clone Eden's github
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- Set Configuration
There are a couple of ways that you could do this. Here are a couple of options. Let's start with WiFi
A. No WiFi
./eden config add default --devmodel
RPi4RPi4
B. With WiFi
./eden config add default --devmodel RPi4 --ssid <mywifinet>
//no quotation marks around the SSID unless there is a space in the SSID, the password will be asked for later
If you would like to run the Xen hypervisor instead of the default kvm, after doing one of the above, add this:
./eden config set default --key eve.hv --value xen
- Build the EVE image
./eden setup
This is the step that will ask you for the password to your WiFi.
When it is done, Eden will output information about the EVE certificates and the SSID and password that you entered. It will also give you the location of the live.img image that you will put on the SD card. - Start Eden
When you are ready, start Eden./eden start
Copy the Image to the SD Card
...