This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget https://pyodbc.googlecode.com/files/pyodbc-3.0.7.zip | |
unzip pyodbc-3.0.7.zip | |
cd pyodbc-3.0.7 | |
sudo yum install -y python-devel unixODBC-devel | |
python setup.py build | |
sudo python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use Ctrl-o as prefix command | |
unbind C-b | |
set-option -g prefix C-o | |
bind-key C-o last-window | |
# Start numbering at 1 | |
set -g base-index 1 | |
# Set status bar | |
set -g status-bg "#585858" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
sudo rpm -Uvh epel-release-6*.rpm | |
#Cannot retrieve metalink for repository: epel | |
sudo sed -i "s/mirrorlist=https/mirrorlist=http/" /etc/yum.repos.d/epel.repo | |
sudo yum install -y tmux |