January 2012
2 posts
3 tags
Hyper-v 간 Ubuntu 네트워크 문제
Windows2008 R2 Hyper-v 에 Ubuntu 10.10을 설치함.
설치된 VM을 ‘내보내기’ 하여 다른 Hyper-v의 Host로 옮김.
VM의 OS는 제대로 구동 되는데 VM의 NIC(eth0)이 동작하지 않음.. ifup eth0을 해보니,
SIOCSIFADDR: No such device eth0: ERROR while getting interface flags: No such device Bind socket to interface: No such device Failed to bring up eth0.
이틀 간 개삽질 후 해결했다. 범인은 바로 zXX_persistent-net.rules!...
1 tag
Shell 비교 연산자
매번 까먹는다;;;
- 산술 비교 연산자
○ val1 -eq val2 : 변수 val1과 변수 val2 같은 경우 true
○ val1 -ne val2 : 변수 val1과 변수 val2 다른 경우 true
○ val1 -qt val2 : 변수 val1이 변수 val2 보다 큰 경우 true
○ val1 -lt val2 : 변수 val1이 변수 val2 보다 작은 경우 true
○ val1 -ge val2 : 변수 val1이 변수 val2 보다 크거나 같은 경우 true
○ val1 - le val2 : 변수 val1이 변수 val2 보다 작거나 가은 경우 true
- 파일 검사 연산자
○ -a : 파일이 존재한...
December 2011
2 posts
5 tags
Install Nginx, PHP5, PHP-FPM and MySQL on Ubuntu...
1. Install MySQL
sudo apt-get install mysql-server
2. Install nginx
(1) Add nginx ppa source in sources.list:
sudo vim /etc/apt/sources.list
deb http://ppa.launchpad.net/nginx/development/ubuntu maverick main
deb-src http://ppa.launchpad.net/nginx/development/ubuntu maverick main
(2) add key, and then update
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys C300EE8C sudo...
make web storage with AWS S3
소개
클라우드는 일부 작업 또는 서비스를 공동으로 처리하면서도 단일 엔터티인 것처럼 보이는 느슨하게 연결된 컴퓨터 그룹을 의미하는 추상적인 개념이다. 화면 뒤에 숨겨져 있는 아키텍처 또한 추상적이므로 각 클라우드 공급자는 필요에 따라 해당 오퍼링을 자유롭게 설계할 수 있다. SaaS(Software as a Service)는 클라우드가 일부 서비스를 사용자에게 제공한다는 점에서 관련된 개념이다. 클라우드 모델의 경우에는 소프트웨어 및 소프트웨어 실행에 필요한 하드웨어를 서비스 공급자가 이미 구입해 놓은 상태이므로 사용자가 따로 구입하지 않아도 되기 때문에 비용을 절감할 수 있다.
클라우드 컴퓨팅의 기원
클라우드 컴퓨팅이라는 용어는 새로운 용어가 아니지만(Amazon에서 2006년부터 클라우드...
November 2011
1 post
2 tags
Cydia 필수 소스&어플
Cydia 소스
cydia.hackulo.us
repo.biteyourapple.net
sinfuliphonerepo.com
cydia.xsellize.com
repo.insanelyi.com
repo.modyouri.com
Cydia 필수어플
appsync - 크랙 어플을 사용할 수 있게 해줌 installous4 - 크랙 어플 다운로드
winterboard - 아이폰 테마 변경
sbsettings - 아이폰의 각종 옵션과 설정을 제어
afc2add - 아이폰의 내부를 탐색할수 있음. iFunbox사용시 필수
MobileTerminal - root의 비밀번호를 변경하여 폰을 해킹이나 바이러스에서 보호
redsnow Down!!!
October 2011
1 post
June 2011
1 post
April 2011
7 posts
March 2011
19 posts
How-To Recover password under Ubuntu
If you forgot you password for your ubuntu system you can recover using the following steps
Turn your computer on.
Press ESC at the grub prompt.
Press e for edit.
Highlight the line that begins kernel xn—xn—xn—, press e
Go to the very end of the line, add rw init=/bin/bash
press enter, then press b to boot your system.
Your system will boot up to a passwordless root...
February 2011
10 posts
January 2011
8 posts
4 tags
OSX에서 Terminal 편하게 사용하기 (SIMBL, Visor, cdto) →
3 tags
Use Gmail-SMTP on mantis
는 Trac과 더불어 가장 많이 쓰이는 공개이슈트래킹시스템이다.
Trac, Mantis 둘다 사용해 봤는데 두개다 장단점이 있는 것 같다. 여력이 된다면 Attlasian Jira가 가장 좋은 선택이겠지만 공개툴 중에 고른다면 위의 두개나 ruby로 되어 있는 redmine을 써도 괜찮을 것이다. Mantis는 다국어처리가 거의 완벽하게 되어있고 통계도 비교적 괜찮게 나온다. Trac은 여러가지 플러그인을 깔아줘야 쓸만해지는 것 같다.
다음은 Mantis에서 기본 smtp를 지메일로 설정하여 이슈에 대한 변동사항을 이메일로 받아보는 방법이다. 1. config_inc.php파일에 다음 내용을 추가한다. $g_phpMailer_method = 2; ...
1 tag
My lovely vimrc
1 “vim:set fenc=utf-8 tw=0
2 “set nocp
3 set hi=1000
4 set bs=indent,eol,start
5 set ru
6 set sc
7 set nu
8 set nuw=5
9 set ts=4
10 set sw=4
11 set noet
12 set sts=0
13 set nowrap
14 set magic
15 set sel=exclusive
16 set sm
17 set hls
18 set ic
19 set scs
20 set ls=2