Changes between Version 26 and Version 27 of UfoServer


Ignore:
Timestamp:
Aug 24, 2012, 7:02:18 PM (12 years ago)
Author:
Suren A. Chilingaryan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UfoServer

    v26 v27  
    66 * IPMI: http://141.52.111.203
    77  * User name: ADMIN, Password: ''Ask Suren''
    8   * Video output should be configured to integrated GPU
     8  * Video output should be configured to graphics card integrated into the motherboard
     9  * Services
     10   * Temperature, Voltage, and Fan sensors
     11   * Remote power management: power-off, power-on, reboot
     12   * Java-based remote console
     13   * SOL-based remote console
     14    * To connect run: '''ipmiconsole -h 141.52.111.203 -u ADMIN -p <password>'''
     15    * ipmiconsole application is provided by freeipmi package
    916 * Interfaces: eth0 (10 GBit), eth1 (upper-right socket)
    1017   * eth0: dhcp
     
    141148 * openSUSE 12.1
    142149  * Due to [https://bugzilla.novell.com/show_bug.cgi?id=731230 Bug #731230], the systemd should be updated
     150  * Additional kernel parameters:
    143151 * Desktop: Gnome
    144152 * Development: Kernel, GNOME, Python
     153
     154=== System Configuration ===
     155 * Additional kernel parameters to be added into the ''/boot/grub/menu.lst'': '''vga=3 console=ttyS1,115200 earlyprint=serial,ttyS1,115200 pcie_aspm=off'''
     156  * ''vga'' - configure standard text mode console
     157  * ''console'' and ''earlyprint'' - enable remote SOL console
     158  * ''pcie_aspm'' - prevent errors on PCIe bus
     159 * NVIDIA driver should be instructed to use MSI interrupt using '''NVreg_EnableMSI=1''' parameter. ''/etc/modprobe.d/50-nvidia.conf'':
     160{{{
     161options nvidia NVreg_DeviceFileUID=0 NVreg_DeviceFileGID=33 NVreg_DeviceFileMode=0660 NVreg_EnableMSI=1
     162}}}
     163 * In ''/etc/init.d/boot.local'' nvidia module should loaded and enforced into the persistent mode:
     164{{{
     165modprobe nvidia
     166nvidia-smi -pm 1
     167}}}
     168 * Terminal on SOL console should be enabled in the ''/etc/inittab'' by adding:
     169{{{
     170T0:2345:respawn:/usr/sbin/mgetty -s 115200 /dev/ttyS1 vt100
     171}}}
     172 * Logins on /dev/ttyS1 should be allowed in the ''/etc/securetty''
     173
    145174
    146175=== Additional Packages ===
     
    208237}}}
    209238 * Currently installed
    210    * Driver: 285.05.32
    211    * Toolkit: 4.1 (installed into /opt/cuda)
    212    * SDK: 4.1 (installed into /opt/cuda/sdk)
     239   * Driver: 304.33
     240   * Toolkit: 4.2 (installed into /opt/cuda)
     241   * SDK: 4.2 (installed into /opt/cuda/sdk)
    213242   * SDK must be compiled
    214243{{{
     
    269298* PyTango 7.2.2
    270299
     300== Maintenance ==
     301 * Reset failed GPU devices
     302{{{
     303sudo /opt/cuda/sdk/C/bin/linux/release/deviceQuery
     304}}}
     305 * Usability tests:
     306  * Check if CUDA and OpenCL are usable
     307{{{
     308 /opt/scripts/nagios_opencl.sh
     309}}}
     310  * Check PyHST is usable
     311{{{
     312 /opt/scripts/nagios_pyhst.sh
     313}}}
     314  * Check UFO Framework is usable
     315{{{
     316 ... to be added ...
     317}}}
     318 * Check if cameras are usable
     319{{{
     320 ... to be added ...
     321}}}
     322
    271323== Usage ==
    272  * Reset failed GPU devices
    273 {{{
    274 sudo /opt/cuda/sdk/C/bin/linux/release/deviceQuery
    275 }}}
    276  * Check system status
    277 {{{
    278 To be provided by Tomsk students...
    279 }}}
    280324 * Run PyHST
    281325{{{
     
    283327}}}
    284328
    285