feat: add install instructions for arch & debian to readme
This commit is contained in:
parent
73e31db674
commit
00c4cb548c
1 changed files with 22 additions and 3 deletions
25
README.md
25
README.md
|
@ -1,5 +1,24 @@
|
|||
|
||||
![](https://git.xorycode.dev/xory/pasternakd/-/raw/improved-readme/demo.mp4)
|
||||
# pasternakd
|
||||
|
||||
![demo video](https://git.xorycode.dev/xory/pasternakd/-/raw/improved-readme/demo.mp4)
|
||||
|
||||
A daemon for the pasternak network-activated killswitch, intended to detach GPT & LUKS headers, making all LUKS encrypted data unrecoverable.
|
||||
|
||||
## Installation Instructions
|
||||
|
||||
### Arch Linux
|
||||
```
|
||||
sudo pacman -S rust cargo
|
||||
git clone https://git.xorycode.dev/xory/pasternakd
|
||||
cd pasternakd
|
||||
cargo build --release
|
||||
sudo cp ./target/release/pasternakd /bin/
|
||||
```
|
||||
|
||||
### Debian Linux & Permutations
|
||||
```
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
git clone https://git.xorycode.dev/xory/pasternakd
|
||||
cd pasternakd
|
||||
cargo build --release
|
||||
sudo cp ./target/release/pasternakd /bin/
|
||||
```
|
Loading…
Reference in a new issue