https://github.com/jbock-java/systemux
https://github.com/jbock-java/systemux
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jbock-java/systemux
- Owner: jbock-java
- Created: 2025-04-26T19:48:38.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2025-05-02T13:31:08.000Z (about 2 months ago)
- Last Synced: 2025-05-07T14:57:51.644Z (about 2 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# systemux
This can be used as a starting point to create a bootable liveimage with dracut.
The systemux img can be used as a dracut "stage2" which prints "Hello, World!" in a tmux window.### create live img
```sh
sudo dnf install dracut-live
sudo dracut -f --no-hostonly --add 'livenet' live-$(uname -r).img
```### Create systemux img
```sh
sudo ./build -f -i
```### Testing in qemu
In another terminal, start an http server (still in the same directory):
```sh
python3 -mhttp.server --bind $(hostname -I | sed -E 's/^(\S+).*/\1/') 3000
```Then start qemu:
```sh
sudo ./run
```### Network boot
TODO explain ipxe setup