버전문제 때문에 설치할 수 없었던 cloud9이 업데이트가 되었다는 소식을 듣고
ubuntu 12.10에 설치
https://github.com/ajaxorg/cloud9 에 보면
로 설치하는데 잘 안된다. 의존성 문제인데
// Super important for Linux users!
If you are having issues with installing the o3/libxml dependency, be sure to check this issue for possible solutions: https://github.com/ajaxorg/node-libxml/issues/3
라고 언급해 놓았다.
sudo apt-get install libxml2-dev
를 실행하여 libxml2 를 설치하자.
어렵지 않게 설치가 가능했다.
로컬에서 쓸게 아니라 외부에서 들어올거라서 port와 IP를 변경해주고 작업경로를 지정했다.
보통이라면 ~/cloud9/bin/cloud9.sh & 하고 실행하겠지만
기왕 node.js 인거 forever 를 써서 깔끔하게 관리하고 싶었다.
forever start server.js -p 8123 -l 0.0.0.0 -w ~/workspace
아이 좋아 +_+
ubuntu 12.10에 설치
https://github.com/ajaxorg/cloud9 에 보면
# Be sure you have sourcemint installed:
npm install -g sm
# Then:
sm clone --dev https://github.com/ajaxorg/cloud9/tree/master cloud9
# or
git clone https://github.com/ajaxorg/cloud9.git cloud9
cd cloud9
sm install
로 설치하는데 잘 안된다. 의존성 문제인데
// Super important for Linux users!
If you are having issues with installing the o3/libxml dependency, be sure to check this issue for possible solutions: https://github.com/ajaxorg/node-libxml/issues/3
라고 언급해 놓았다.
sudo apt-get install libxml2-dev
를 실행하여 libxml2 를 설치하자.
어렵지 않게 설치가 가능했다.
로컬에서 쓸게 아니라 외부에서 들어올거라서 port와 IP를 변경해주고 작업경로를 지정했다.
보통이라면 ~/cloud9/bin/cloud9.sh & 하고 실행하겠지만
기왕 node.js 인거 forever 를 써서 깔끔하게 관리하고 싶었다.
forever start server.js -p 8123 -l 0.0.0.0 -w ~/workspace
아이 좋아 +_+
댓글
댓글 쓰기