-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.hl
More file actions
19 lines (16 loc) · 844 Bytes
/
build.hl
File metadata and controls
19 lines (16 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// cargo
// libfuse3-dev
> cd source-code
> cargo build --release --features normal
! lub cargo build --release --no-default-features --features normal,zstd,lz4
! dla cybersec:
! cargo build --release --features cybersec
! cargo build --release --no-default-features --features cybersec,zstd,lz4
! uzywanie wersji normalnej: Tworzenie systemu plików (opcjonalne szyfrowanie)
! ./target/release/hfs mkfs --device /path/to/db --encryption false
! Montowanie (szyfrowanie opcjonalne)
! ./target/release/hfs mount --device /path/to/db --mountpoint /mnt/hfs --cybersecurity false
! uzywanie wersji cybersec: Tworzenie systemu plików (wymuszone szyfrowanie)
! ./target/release/hfs mkfs --device /path/to/db
! Montowanie (wymuszone szyfrowanie z kluczem)
! ./target/release/hfs mount --device /path/to/db --mountpoint /mnt/hfs --key-file key.txt