clevis
clevis copied to clipboard
clevis in void OS
Hi guys I'd like to install clevis in a custom built ZFSBootMenu which is void OS based. I didn't find clevis package in their repository. How to install it there manually?
Hello @rdmitry0911. clevis use meson+ninja commands, so you should follow next steps:
$ wget https://github.com/latchset/clevis/releases/download/v19/clevis-19.tar.xz
$ tar Jxvf clevis-19.tar.xz
$ cd clevis-19/
$ mkdir build
$ cd build
$ meson setup ..
$ ninja
$ sudo ninja install
We will add manual compilation steps to README.md to clarify it.
KR
Ok, thank you