http://www.crypt.gen.nz/selinux/disable_selinux.html In Fedora Core and RedHat Enterprise, edit /etc/selinux/config and change the SELINUX line to SELINUX=disabled:
Why do I see “cpu soft lockup” messages in Red Hat Enterprise Linux
https://access.redhat.com/kb/docs/DOC-17358 Recommended, affects current and next reboot value: sysctl -w kernel.softlockup_thresh=30 Add this line to /etc/sysctl.conf (takes effect on next reboot): kernel.softlockup_thresh=30
Recommended Reading List for Developers
http://www.intel.com/technology/rr/RRlist.pdf
[ICC] Specifies that the loop should never be vectorized.
http://software.intel.com/sites/products/documentation/studio/composer/en-us/2011/compiler_c/cref_cls/common/cppref_pragma_novector.htm loop: #pragma novector function: #pragma optimize(“”, off)
Intel® Technology Journal
http://www.intel.com/technology/itj/index.htm
Recover a closed Sticky Note in Widows 7?
http://superuser.com/questions/44079/recover-a-closed-sticky-note-in-widows-7 It is much too easy to delete the sticky notes. Here are two ways to recover: 1) There may be old information left in the file in the App Data directory: %AppData%MicrosoftSticky NotesStickyNotes.snt 2) If your Windows 7 version
How to add integers in bash
http://www.notesbit.com/index.php/scripts-unix/linux-unix-shell-script-how-to-add-integers-in-bash-sample/ c=$(($a+$b))
64-bit Programming Issues
http://www.ualberta.ca/CNS/RESEARCH/LinuxClusters/64-bit.html The -mcmodel flag selects the memory model or memory access modes for a program. Three memory models are supported by the compilers: small(text+data<2GB), medium (text<2GB, data>2GB), and large (text>2GB, data>2GB). Memory segments less than 2GB can be accessed with direct references, while larger segments require indirect or relative
Intel Non-Commercial Software Development
http://software.intel.com/en-us/articles/non-commercial-software-development/
The Rise of Worse is Better
http://dreamsongs.com/RiseOfWorseIsBetter.html
OpenCL performance portability
https://researcher.ibm.com/researcher/view_page.php?id=1835 http://www.hpcwire.com/hpcwire/2009-09-10/compilers_and_more_opencl_promises_and_potential.html http://indico.cern.ch/conferenceDisplay.py?confId=140118
Memory Limits for Windows Releases
http://msdn.microsoft.com/en-us/library/aa366778(VS.85).aspx
New to HPC?
http://www.microsoft.com/hpc/en/us/product/cluster-computing.aspx
Move Live Messenger Icon to the System Tray in Windows 7
http://www.howtogeek.com/howto/6354/make-live-messenger-icon-stay-in-the-system-tray-in-windows-7/ Windows Vista compatibility mode
Updating a symbolic link in Linux
http://javarevisited.blogspot.com/2011/04/symbolic-link-or-symlink-in-unix-linux.html $ ln -nsf src dst
NPB
http://en.wikipedia.org/wiki/NAS_Parallel_Benchmarks
ISO 3166 country codes
http://www.iso.org/iso/english_country_names_and_code_elements
Windows7 FTP service
http://snoopybox.co.kr/1442
How to change the hostname of a Linux system
http://www.ducea.com/2006/08/07/how-to-change-the-hostname-of-a-linux-system/
ld -wrap
http://www.linuxquestions.org/questions/programming-9/using-ld-wrap-function-to-instrument-790444/