Currently, only x86_64
and aarch64
is supported for iso images.
ISO images can be downloaded from any accessable mirror in Download page of eweOS.
For auto redirection for optimized mirrors, https://os-repo-auto.ewe.moe/eweos-images/ is recommended.
Daily build images can be downloaded from GitHub Actions.
liveimage-desktop
: Live ISO image with desktop environment configured to provide out-of-box experiment.liveimage-minimal
: Live ISO image with cli tools only.tarball
: Tarball of eweOS minimal system.The following script can be used to boot eweOS, with hardware graphic acceleration.
#!/bin/bash
IMAGE=eweos-x86_64-liveimage-desktop.iso
# Adjust cpu and ram here!
VCPU=4
VRAM=4G
qemu-system-x86_64 \
-smp $VCPU -m $VRAM -cpu host \
-machine type=q35,accel=kvm \
-cdrom $IMAGE \
-device virtio-net,netdev=ewe -netdev user,id=ewe \
-drive if=pflash,format=raw,readonly=on,file=/usr/share/OVMF/OVMF_CODE.fd \
-device virtio-vga-gl -display gtk,gl=on \
-device virtio-sound-pci,audiodev=eweaudio -audiodev alsa,id=eweaudio \
-device qemu-xhci,id=xhci \
-device usb-tablet,bus=xhci.0 \
-device usb-kbd,bus=xhci.0
The default username and password for eweOS iso image is ewe:ewe
. For desktop mode ISO images, autologin is enabled.