This file contains hidden or 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
# 1. pip ์ค์น๋ฅผ ์ํ python-setuptools ๋ค์ด | |
wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg | |
# 2. pip ์ค์น๋ฅผ ์ํ python-setuptools ์ค์น | |
sh setuptools-0.6c11-py2.7.egg |
This file contains hidden or 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
# ํ์ ํจํค์ง๋ค ์ค์น | |
yum -y groupinstall 'Development Tools' | |
yum -y install openssl-devel* ncurses-devel* zlib*.x86_64 | |
yum -y install bzip2 bzip2-devel bzip2-libs | |
This file contains hidden or 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
sudo iptables -t nat -A PREROUTING -p tcp -d your_ip_address --dport 80 -j REDIRECT --to-port 3000 |
This file contains hidden or 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
char * space_remove(char *str) | |
{ | |
// change BUF_SIZE depending on the length of your string | |
char buf[BUF_SIZE]={0,}; | |
char *p; | |
p = strtok(str, "\r\n\t "); | |
strcat(buf, p); | |
while(p!=NULL){ | |
p = strtok(NULL, "\r\n\t "); | |
if(p!=NULL) { |
This file contains hidden or 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
[[local|localrc]] | |
DEST=/opt | |
# If git protocol is blocked in your testing environment | |
# GIT_BASE=${GIT_BASE:-https://git.openstack.org} | |
# Credentials | |
DATABASE_PASSWORD=openstack |
NewerOlder