├── .gitignore ├── .gitmodules ├── 0cpuminer ├── 0miner ├── 1bash.template ├── 2unix ├── 3main ├── 5watchdog ├── 6tempcontrol ├── 7load_check ├── 7miner_restart ├── 7miner_schedule ├── 7reboot ├── 7telegram ├── 8wtm_auto_switch ├── 8wtm_profit_check ├── 9poolswitch ├── LICENSE ├── OhGodAnETHlargementPill-r2 ├── README.md ├── SRR ├── WTM_SWITCHER ├── clear_logs ├── foreman ├── miner-watch └── package.sh ├── helpers ├── coin_algo_mapping ├── disabled_gpu.sh └── generic_helper.sh ├── kk003_telegram ├── log_rotate ├── mph_switch ├── multiminer.html ├── nice_switch ├── nvOC ├── programatic_switch ├── screenrc-cpuminer ├── screenrc-main ├── screenrc-miner ├── screenrc-miner-cuda-8 ├── screenrc-tempcontrol ├── screenrc-watchdog ├── screenrc-wtm ├── sysrq_reboot.sh ├── telegram ├── upPASTE ├── www └── cgi-bin │ └── minerinfo └── xorg.conf.default /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /mocks 3 | /nvoc_logs 4 | 1bash 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/.gitmodules -------------------------------------------------------------------------------- /0cpuminer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/0cpuminer -------------------------------------------------------------------------------- /0miner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/0miner -------------------------------------------------------------------------------- /1bash.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/1bash.template -------------------------------------------------------------------------------- /2unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/2unix -------------------------------------------------------------------------------- /3main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/3main -------------------------------------------------------------------------------- /5watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/5watchdog -------------------------------------------------------------------------------- /6tempcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/6tempcontrol -------------------------------------------------------------------------------- /7load_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/7load_check -------------------------------------------------------------------------------- /7miner_restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/7miner_restart -------------------------------------------------------------------------------- /7miner_schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/7miner_schedule -------------------------------------------------------------------------------- /7reboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/7reboot -------------------------------------------------------------------------------- /7telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/7telegram -------------------------------------------------------------------------------- /8wtm_auto_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/8wtm_auto_switch -------------------------------------------------------------------------------- /8wtm_profit_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/8wtm_profit_check -------------------------------------------------------------------------------- /9poolswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/9poolswitch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/LICENSE -------------------------------------------------------------------------------- /OhGodAnETHlargementPill-r2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/OhGodAnETHlargementPill-r2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/README.md -------------------------------------------------------------------------------- /SRR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/SRR -------------------------------------------------------------------------------- /WTM_SWITCHER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/WTM_SWITCHER -------------------------------------------------------------------------------- /clear_logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/clear_logs -------------------------------------------------------------------------------- /foreman/miner-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/foreman/miner-watch -------------------------------------------------------------------------------- /foreman/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/foreman/package.sh -------------------------------------------------------------------------------- /helpers/coin_algo_mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/helpers/coin_algo_mapping -------------------------------------------------------------------------------- /helpers/disabled_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/helpers/disabled_gpu.sh -------------------------------------------------------------------------------- /helpers/generic_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/helpers/generic_helper.sh -------------------------------------------------------------------------------- /kk003_telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/kk003_telegram -------------------------------------------------------------------------------- /log_rotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/log_rotate -------------------------------------------------------------------------------- /mph_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/mph_switch -------------------------------------------------------------------------------- /multiminer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/multiminer.html -------------------------------------------------------------------------------- /nice_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/nice_switch -------------------------------------------------------------------------------- /nvOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/nvOC -------------------------------------------------------------------------------- /programatic_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/programatic_switch -------------------------------------------------------------------------------- /screenrc-cpuminer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-cpuminer -------------------------------------------------------------------------------- /screenrc-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-main -------------------------------------------------------------------------------- /screenrc-miner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-miner -------------------------------------------------------------------------------- /screenrc-miner-cuda-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-miner-cuda-8 -------------------------------------------------------------------------------- /screenrc-tempcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-tempcontrol -------------------------------------------------------------------------------- /screenrc-watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-watchdog -------------------------------------------------------------------------------- /screenrc-wtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/screenrc-wtm -------------------------------------------------------------------------------- /sysrq_reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/sysrq_reboot.sh -------------------------------------------------------------------------------- /telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/telegram -------------------------------------------------------------------------------- /upPASTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/upPASTE -------------------------------------------------------------------------------- /www/cgi-bin/minerinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/www/cgi-bin/minerinfo -------------------------------------------------------------------------------- /xorg.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/HEAD/xorg.conf.default --------------------------------------------------------------------------------