mirror of
https://github.com/ilyakooo0/xmrig-bash-scripts.git
synced 2024-11-22 21:51:59 +03:00
19 lines
529 B
Bash
Executable File
19 lines
529 B
Bash
Executable File
#!/bin/bash
|
|
echo "#################################"
|
|
echo " INSTALLING DEPENDENCIES "
|
|
echo "#################################"
|
|
|
|
# Install the software requirements
|
|
|
|
if [ $_APT_DEPENDS = 1 ]; then
|
|
|
|
sudo apt install -y cpuid jo screen software-properties-common git build-essential cmake libuv1-dev libssl-dev libmicrohttpd-dev gcc g++
|
|
|
|
else
|
|
echo "Depend install is set to NO ($_APT_DEPENDS) Skipping"
|
|
fi
|
|
|
|
echo "#################################"
|
|
echo " DEPENDENCIES INSTALLED "
|
|
echo "#################################"
|