Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
FalsePhilosopher authored Oct 3, 2024
1 parent e830e10 commit f7454f1
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
# Infosec-Cheatsheets

If you want to data horde the rabbit hole of knowledge this provides then `git clone --recursive --jobs 8 https://github.com/FalsePhilosopher/Infosec-Cheatsheets` it's about 12GB.<br>
To update them all `git submodule update --init --recursive --remote --rebase`
If you want to data horde the rabbit hole of knowledge this provides then
```
git clone --recursive --jobs 8 https://github.com/FalsePhilosopher/Infosec-Cheatsheets
```
it's about 12GB in total.

Alternatively for those on restricted data bandwidth and/or data limits, I have provided snapshot releases with a spilt zstd compressed archive that can be downloaded and extracted quickly on all cores providing a significant reduction in bandwidth(12GB with the .get folder, stripped/compressed to 2.4GB). It temporarily requires 9.5GB HD space for the archive+files ending with 6.9GB in total. The split archives can be pulled, reconstructed, extracted, and BLAKE2 checked with this one liner.
To update them all.
```
git submodule update --init --recursive --remote --rebase`
```
Alternatively for those on restricted data bandwidth and/or data limits, I have provided snapshot releases with a spilt zstd compressed archive that can be downloaded and extracted quickly on all cores providing a significant reduction in bandwidth(12GB with the .get folder, stripped/compressed to 2.4GB). It temporarily requires 9.5GB HD space for the archive+files ending with 6.9GB in total. The split archives can be pulled, reconstructed, extracted, and BLAKE2 checked with
```
cd /tmp/
gh release download -p 'Infosec-Cheatsheets.tar.zst*' -R FalsePhilosopher/Infosec-Cheatsheets
cat /tmp/Infosec-Cheatsheets.tar.zst* > /tmp/Infosec-Cheatsheets.tar.zst
rm Infosec-Cheatsheets.tar.zsta*
tar --use-compress-program "zstd -d -T0" -xvf "Infosec-Cheatsheets.tar.zst" --directory $HOME/Downloads
rm Infosec-Cheatsheets.tar.zst
cd $HOME/Downloads/Infosec-Cheatsheets/
b2sum -oRESULTS -c $HOME/Downloads/Infosec-Cheatsheets/BLAKE2SUMS && echo "ALL OK" || echo "WOW! Something fishy's going on"
```
Or use this one liner.
```
wget -q -O - https://raw.githubusercontent.com/FalsePhilosopher/Infosec-Cheatsheets/refs/heads/main/zst.sh | bash
```
Expand Down

0 comments on commit f7454f1

Please sign in to comment.