Install Edera
Install Edera
The installer sets up the Edera runtime and configures your system. Your machine will reboot when it completes.
đĢ
Disposable infrastructure only. Edera modifies your bootloader and there is no automated uninstall. Only install on instances or VMs you can terminate and recreate.
Run the installer
âšī¸
The installer defaults to Xen. KVM support is coming soon â Xen is the current path for EderaON.
EDERA_LICENSE_KEY=<your-key> /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/edera-dev/learn/main/getting-started/edera-on-installer/scripts/install.sh)"
â ī¸
KVM support is coming soon. KVM is not yet available for EderaON. Use Xen for now â it is the default and the recommended path.
Verify the installation
After reboot, SSH back in and verify:
# Check the daemon is running
sudo systemctl is-active protect-daemon
# Expected: active
# Confirm KVM device is present
ls /dev/kvm
# Expected: /dev/kvm# Check you're running the Edera/Xen kernel
uname -r
# Expected: 6.x.y-edera
# Confirm Xen is present
ls /proc/xen
# Expected: capabilities privcmd xenbus
# Check the daemon is running
sudo systemctl is-active protect-daemon
# Expected: activeâ ī¸
activating is not the same as active. The daemon should become active within a few seconds. If it stays in activating, it failed to start â a missing or invalid license key is a common cause. Check logs with sudo journalctl -u protect-daemon -n 50.Last updated on