Extracting Packages
You will receive a .tar.gz package, such as datafocus-2.1.0.tar.gz. Follow these steps to extract it:
Bash
mkdir datafocus
tar -xvzf datafocus-2.1.0.tar.gz -C path/to/your/datafocus
PowerShell
New-Item -ItemType Directory -Name "datafocus"
tar -xvzf datafocus-2.1.0.tar.gz -C path/to/your/datafocus
If you are using Windows, you can also create folder via UI and extract the package using Explorer.
Windows Server 2022 and higher releases includes tar built-in.