Changes between Version 12 and Version 13 of ZeroEmissionHeating


Ignore:
Timestamp:
Dec 31, 2018, 1:03:31 PM (6 years ago)
Author:
Rick van der Zwet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ZeroEmissionHeating

    v12 v13  
    105105   $ boinctui
    106106}}}
     107
     108= Test Setup 2 =
     109Hardware Setup:
     110* 2 x Radeon HD7870
     111* 550W Power Supply
     112* Dual-PCIe motherboard
     113
     114{{{
     115  # Install standard Ubuntu 14.04.05 LTS amd64 Server edition:
     116    <Out-Of-Scope>
     117
     118  # Download fglrx binaries from:
     119    https://www.amd.com/en/support/graphics/amd-radeon-hd/ati-radeon-hd-5000-series/ati-radeon-hd-5770
     120
     121  # Make system up2date:
     122    $ sudo apt-get dist-upgrade
     123
     124  # Install and load compatible kernel:
     125    $ sudo apt-get install linux-headers-3.19.0-80-generic linux-image-3.19.0-80-generic linux-image-extra-3.19.0-80-generic linux-tools-3.19.0-80-generic
     126    $ sudo apt-get remove linux-headers-4.4* linux-image-4.4* linux-image-extra-4.4* linux-tools-4.4*
     127    $ sudo reboot
     128
     129  # Install fglrx (headless) drivers:
     130    $ sudo dpkg -i fglrx-core_15.201-0ubuntu1_amd64_UB_14.01.deb
     131    $ sudo apt-get install -f  ls
     132
     133
     134  # Fix missing OpenCL symlink:
     135    $  cd /usr/lib
     136    $  sudo ln -s libOpenCL.so.1 libOpenCL.so
     137
     138
     139  # Fix for segfault for e.g. on 2nd invocation of clinfo:
     140    $ ar p fglrx_15.201-0ubuntu1_amd64_UB_14.01.deb data.tar.gz | sudo tar -C / -xzf - ./etc/ati/amdpcsdb.default
     141
     142 # Install helper software for GPU testing:
     143   $ sudo apt-get install clinfo opencl-headers git
     144   $ git clone https://github.com/ihaque/memtestCL.git
     145   $ cd memtestCL/
     146   $ make -f Makefiles/Makefile.linux64
     147
     148
     149 # GPU testing and status utilities:
     150   $ ./memtestCL
     151   $ clinfo
     152   $ nvidia-smi
     153
     154
     155 # Install BOINC software:
     156   $ sudo apt-get install boinc-client boinctui
     157   $ sudo systemctl start boinc-client
     158
     159
     160 # Configure BOINC software:
     161   $ boinccmd --project_attach http://einstein.phys.uwm.edu/ <account_id>
     162
     163 # Monitor BOINC software:
     164   $ boinctui
     165}}}