Changes between Version 26 and Version 27 of UfoServer
- Timestamp:
- Aug 24, 2012, 7:02:18 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UfoServer
v26 v27 6 6 * IPMI: http://141.52.111.203 7 7 * 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 9 16 * Interfaces: eth0 (10 GBit), eth1 (upper-right socket) 10 17 * eth0: dhcp … … 141 148 * openSUSE 12.1 142 149 * Due to [https://bugzilla.novell.com/show_bug.cgi?id=731230 Bug #731230], the systemd should be updated 150 * Additional kernel parameters: 143 151 * Desktop: Gnome 144 152 * 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 {{{ 161 options 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 {{{ 165 modprobe nvidia 166 nvidia-smi -pm 1 167 }}} 168 * Terminal on SOL console should be enabled in the ''/etc/inittab'' by adding: 169 {{{ 170 T0:2345:respawn:/usr/sbin/mgetty -s 115200 /dev/ttyS1 vt100 171 }}} 172 * Logins on /dev/ttyS1 should be allowed in the ''/etc/securetty'' 173 145 174 146 175 === Additional Packages === … … 208 237 }}} 209 238 * Currently installed 210 * Driver: 285.05.32211 * 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) 213 242 * SDK must be compiled 214 243 {{{ … … 269 298 * PyTango 7.2.2 270 299 300 == Maintenance == 301 * Reset failed GPU devices 302 {{{ 303 sudo /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 271 323 == Usage == 272 * Reset failed GPU devices273 {{{274 sudo /opt/cuda/sdk/C/bin/linux/release/deviceQuery275 }}}276 * Check system status277 {{{278 To be provided by Tomsk students...279 }}}280 324 * Run PyHST 281 325 {{{ … … 283 327 }}} 284 328 285