clevis icon indicating copy to clipboard operation
clevis copied to clipboard

clevis in void OS

Open rdmitry0911 opened this issue 2 years ago • 2 comments

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?

rdmitry0911 avatar Jul 02 '23 19:07 rdmitry0911

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

sarroutbi avatar Jul 03 '23 08:07 sarroutbi

Ok, thank you

rdmitry0911 avatar Jul 03 '23 13:07 rdmitry0911