Update Linux packaging
* Update README: Names of binaries have changed, CLI interface as well, add instructions for installing tenders... * Install an empty log * Add assertion in albatross_log.service that the log file exists
This commit is contained in:
parent
3f36fe6382
commit
910c842448
|
@ -2,9 +2,10 @@
|
||||||
|
|
||||||
these are preliminary and just here to let people play with `solo5-spt`, the seccomp-enabled backend for [Solo5](https://github.com/Solo5/solo5) on Linux.
|
these are preliminary and just here to let people play with `solo5-spt`, the seccomp-enabled backend for [Solo5](https://github.com/Solo5/solo5) on Linux.
|
||||||
|
|
||||||
1) You need to build the `vmm` tooling in this repository
|
1) You need to build the `albatross` tooling in this repository
|
||||||
2) You need to build a `spt`-compatible binary to deploy.
|
2) To run unikernels, you need to build and install solo5-elftool and at least one of the tenders: solo5-hvt and solo5-spt. They can be installed somewhere in PATH or in /var/lib/albatross/.
|
||||||
|
2) You need to build a binary with one of the tenders (solo5-hvt, solo5-spt) to deploy.
|
||||||
3) See [`install.sh`](./install.sh) for commands required to deploy it.
|
3) See [`install.sh`](./install.sh) for commands required to deploy it.
|
||||||
4) `sudo journalctl -fu albatross'*'.service`
|
4) `sudo journalctl -fu albatross'*'.service`
|
||||||
5) ideally, once the services are up and running, you would be able to issue this command to deploy a unikernel:
|
5) ideally, once the services are up and running, you would be able to issue this command to deploy a unikernel:
|
||||||
`sudo vmmc_local.native -t spt-amd64 --compression0 helloworld /path/to/hello_world.spt`
|
`sudo albatross-client-local helloworld /path/to/hello_world.spt`
|
||||||
|
|
|
@ -9,8 +9,9 @@ Requires=albatross_console.service
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
User=albatross
|
User=albatross
|
||||||
|
AssertPathExists=/var/lib/albatross/albatross.log
|
||||||
ExecStart=/usr/local/sbin/albatross-log --logfile="/var/lib/albatross/albatross.log" --tmpdir="%t/albatross/" -vv
|
ExecStart=/usr/local/sbin/albatross-log --logfile="/var/lib/albatross/albatross.log" --tmpdir="%t/albatross/" -vv
|
||||||
#RuntimeDirectory=albatross albatross/util
|
RuntimeDirectory=albatross albatross/util
|
||||||
#RuntimeDirectoryPreserve=yes # avoid albatross.log being cleaned up
|
#RuntimeDirectoryPreserve=yes # avoid albatross.log being cleaned up
|
||||||
PIDFile=%t/albatross/log.pid
|
PIDFile=%t/albatross/log.pid
|
||||||
RestrictAddressFamilies=AF_UNIX
|
RestrictAddressFamilies=AF_UNIX
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
ALBATROSS_USER=albatross
|
||||||
|
|
||||||
sudo mkdir -m 0700 -p /var/lib/albatross/block
|
sudo mkdir -m 0700 -p /var/lib/albatross/block
|
||||||
|
sudo install -o "$ALBATROSS_USER" -- /dev/null /var/lib/albatross/albatross.log
|
||||||
|
|
||||||
sudo cp ../../_build/install/default/bin/* /usr/local/sbin/
|
sudo cp ../../_build/install/default/bin/* /usr/local/sbin/
|
||||||
sudo cp ./albatross_*.service /etc/systemd/system/
|
sudo cp ./albatross_*.service /etc/systemd/system/
|
||||||
|
|
Loading…
Reference in a new issue