Changes between Version 7 and Version 8 of ZeroEmissionHeating


Ignore:
Timestamp:
12/31/18 12:47:26 (6 years ago)
Author:
Rick van der Zwet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ZeroEmissionHeating

    v7 v8  
    4646= Similar projects =
    4747* Start-up [https://www.nerdalize.com/ Nerdalize] is using computing power to heat tap-water.
     48
     49= Test Setup 1 =
     50
     51 # Install Ubuntu 16.04 Server LTS amd64:
     52   <Out-Of-Scope>
     53
     54 
     55 # Update system to latest version:
     56   $ sudo apt-get update
     57   $ sudo apt-get dist-upgrade
     58   $ sudo reboot
     59
     60
     61 # Unload nouveau driver (causes trouble during NVIDIA install):
     62   $ sudo rmmod nouveau
     63
     64
     65 # Install NVIDIA drivers legacy 390.87 drivers:
     66   $ sudo apt-get install build-essential
     67   $ chmod 755 NVIDIA-Linux-x86_64-390.87.run
     68   $ sudo ./NVIDIA-Linux-x86_64-390.87.run
     69   $ sudo update-initramfs -u
     70   $ sudo reboot
     71
     72
     73 # Install helper software for GPU testing:
     74   $ sudo apt-get install clinfo opencl-headers git
     75   $ git clone https://github.com/ihaque/memtestCL.git
     76   $ cd memtestCL/
     77   $ make -f Makefiles/Makefile.linux64
     78
     79
     80 # GPU testing and status utilities:
     81   $ ./memtestCL
     82   $ clinfo
     83   $ nvidia-smi
     84
     85
     86 # Install BOINC software:
     87   $ sudo apt-get install boinc-client boinctui
     88   $ sudo systemctl start boinc-client
     89
     90
     91 # Configure BOINC software:
     92   $ boinccmd --project_attach http://einstein.phys.uwm.edu/ <account_id>
     93
     94 # Monitor BOINC software:
     95   $ boinctui
     96