Files
assets/README.md
√(noham)² 002f797635 push
2025-02-19 17:40:06 +01:00

13 lines
237 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Compression
Files are compressed using xz with the best flag and the extreme preset
```shell
tar -cvf archive.tar folder_or_file
xz -9e archive.tar
```
# Decompression
```shell
xz -d Nightly_aarch64.tar.xz
tar -xvf archive.tar
```