https://github.com/fnuecke/sedna-cli
Simple command line interface for Sedna.
https://github.com/fnuecke/sedna-cli
cli risc-v sedna
Last synced: about 1 year ago
JSON representation
Simple command line interface for Sedna.
- Host: GitHub
- URL: https://github.com/fnuecke/sedna-cli
- Owner: fnuecke
- License: mit
- Created: 2020-09-26T18:01:22.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-06-26T17:19:32.000Z (about 4 years ago)
- Last Synced: 2025-04-19T15:53:36.037Z (about 1 year ago)
- Topics: cli, risc-v, sedna
- Language: Java
- Homepage:
- Size: 144 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Command line runner for Sedna
This serves as a simple command line runner for a Sedna VM and a small reference on how to set up and run a VM from
code.
To use the VirtIO file system that provides access to the host filesystem, you'll need to load the module and mount it
like so:
```shell
modprobe -a 9pnet_virtio
mkdir -p /tmp/host_fs
mount -t 9p -o trans=virtio,version=9p2000.L host_fs /tmp/host_fs
cd /tmp/host_fs
```
To terminate a session gracefully, inside the VM run
```shell
poweroff
```