mirror of
https://github.com/ilyakooo0/xmrig-bash-scripts.git
synced 2024-11-21 17:02:37 +03:00
140 lines
2.7 KiB
Bash
Executable File
140 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "${_GREEN}LOADING DEFAULT SETTINGS${_RESET}"
|
|
|
|
_EMAIL="spam@iko.soy"
|
|
|
|
_RECEIVE_WALLET="44FADBDhNRvjJszF5mLS4VCwZ71mY7ftfUErEisPoT724hb5eYuvuFqWthniY8dGPBTcWuBoeLrLJVkxLHCb1Lsd4DdbZzZ"
|
|
|
|
_POOL_SERVER_URL="xmrpool.eu"
|
|
_POOL_SERVER_PORT="5555"
|
|
|
|
# Call function
|
|
show_settings
|
|
|
|
#######################################################################
|
|
# DO NOT CHANGE AFTER THIS POINT UNLESS YOU KNOW WHAT YOU ARE DOING #
|
|
#######################################################################
|
|
|
|
_API_ID='null'
|
|
_API_WORKER_ID="$HOSTNAME"
|
|
|
|
_AUTOSAVE="true"
|
|
|
|
_BACKGROUND="false"
|
|
|
|
_COLORS="true"
|
|
|
|
# call check_cpu
|
|
check_cpu
|
|
|
|
# call calc_threads
|
|
calc_threads
|
|
|
|
_CPU_ENABLED="true"
|
|
_CPU_HUGE_PAGES="true"
|
|
_CPU_HW_AES="$_AES_NI"
|
|
_CPU_PRIORITY='null'
|
|
_CPU_ASM="true"
|
|
_CPU_CN="$_ENV_CPU_THREAD_AFFINITY"
|
|
|
|
_CPU_CN_0="false"
|
|
_CPU_CN_LITE_0="false"
|
|
|
|
_OPENCL_ENABLED="false"
|
|
_OPENCL_CACHE="true"
|
|
_OPENCL_LOADER='null'
|
|
_OPENCL_PLATFORM="AMD"
|
|
|
|
_DONATE_LEVEL="0"
|
|
|
|
_DONATE_OVER_PROXY="1"
|
|
|
|
_HTTP_ENABLED="true"
|
|
_HTTP_HOST=$(hostname --all-ip-addresses | awk '{print $1}')
|
|
_HTTP_PORT="8080"
|
|
_HTTP_ACCESS_TOKEN='null'
|
|
_HTTP_RESTRICTED="false"
|
|
|
|
_LOG_FILE='null'
|
|
|
|
_POOLS_ALGO="cn/r"
|
|
_POOLS_URL="$_POOL_SERVER_URL:$_POOL_SERVER_PORT"
|
|
_POOLS_USER="$_RECEIVE_WALLET"
|
|
_POOLS_PASS="$HOSTNAME:$_EMAIL"
|
|
_POOLS_RIG_ID="$HOSTNAME"
|
|
_POOLS_NICEHASH="true"
|
|
_POOLS_KEEPALIVE="true"
|
|
_POOLS_ENABLED="true"
|
|
_POOLS_TLS='null'
|
|
_POOLS_TLS_FINDERPRINT='null'
|
|
_POOLS_DAEMON="false"
|
|
|
|
_PRINT_TIME="30"
|
|
|
|
_RETRIES="5"
|
|
_RETRIES_PAUSE="5"
|
|
|
|
_SYSLOG="false"
|
|
|
|
_USER_AGENT='null'
|
|
|
|
_WATCH="true"
|
|
|
|
# Set working directory
|
|
_WORK_DIR="$(pwd)"
|
|
cd $_WORK_DIR
|
|
|
|
# Set repository from which to get the source
|
|
_XMRIG_REPO="https://github.com/xmrig/xmrig.git"
|
|
|
|
# Set name of folder to create when cloning from REPO
|
|
_XMRIG_CLONE="xmrig-cpu"
|
|
|
|
# Set clone directory path
|
|
_XMRIG_CLONE_LOCATION="$_WORK_DIR/$_XMRIG_CLONE"
|
|
|
|
# Set branch from which to build
|
|
_XMRIG_BRANCH="master"
|
|
|
|
# Set build directory
|
|
_XMRIG_BUILD="build"
|
|
|
|
# Set build directory location
|
|
_XMRIG_BUILD_LOCATION="$_XMRIG_CLONE_LOCATION/$_XMRIG_BUILD"
|
|
|
|
# Set where to install binary
|
|
_XMRIG_TARGET_LOCATION="/usr/bin/"
|
|
|
|
# Set mysettings file
|
|
_MYSETTINGS_FILE="mysettings.sh"
|
|
|
|
# Set mysettings file location
|
|
_MYSETTINGS_FILE_LOCATION="$_WORK_DIR/$_MYSETTINGS_FILE"
|
|
|
|
# Set the config file name
|
|
_XMRIG_CONFIG="config.json"
|
|
|
|
# Set config location
|
|
_XMRIG_CONFIG_LOCATION="$_WORK_DIR/$_XMRIG_CONFIG"
|
|
|
|
# Set values for crontab
|
|
_USER_CRONSTART="17"
|
|
_USER_CRONSTOP="8"
|
|
_USER_CRONDAYS="1-5"
|
|
|
|
# Set the name of the screen created by start script
|
|
_XMRIG_SCREEN="xmrig-cpu"
|
|
|
|
# Run apt maintenance
|
|
# 1 = yes 0 = no
|
|
_APT_MAINETANCE="1"
|
|
|
|
# Run install of depends
|
|
# 1 = yes 0 = no
|
|
_APT_DEPENDS="1"
|
|
|
|
|
|
echo -e "${_CYAN}DEFAULT SETTINGS LOADED${_RESET}"
|
|
|