Check for Remi Repo
- yum repolist enabled
-- Not used

Confirm SELinux off
- Confirmed

Install gcc
Downloaded and Altinstalled Python 2.7.9 (Python 2.7.5 default)
- wget http://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
- yum install xz
- xz -d Python-2.7.9.tar.xz
- tar -xvf Python-2.7.9.tar
- cd Python-2.7.9
- ./configure --enable-shared
- make
- resolve dependencies (if any)
-- yum install sqlite-devel
-- yum install bzip2-devel
-- yum install zlib-devel
-- yum install openssl-devel
-- yum install ncurses-devel
-- yum install readline-devel
-- yum install gdbm-devel
--- yum install {sqlite,bzip2,zlib,openssl,ncurses,readline,gdbm}-devel
- make again to verify dependency resolution
-- Use http://rajaseelan.com/2012/01/28/installing-python-2-dot-7-2-on-centos-5-dot-2/ for reference
- make altinstall
Add User 'akkadianuser'
- adduser akkadianuser
- Configure CLI User Password
-- passwd akkadianuser
Add akkadianuser to Sudoers file
- sudo visudo
<after 'root 	ALL=(ALL)	ALL'>
...
akkadianuser	ALL=(ALL:ALL)	ALL
...
<after # %wheel        ALL=(ALL)       NOPASSWD: ALL>
akkadianuser ALL=(ALL:ALL)	NOPASSWD: ALL
...
- Save file
-- :wq

Update sudo to sudo 1.8.14p3 minumum
- Fixes known issue causing screen refresh
-- http://bugs.python.org/issue14476
-- http://bugzilla.sudo.ws/show_bug.cgi?id=464

