
검게 변한 wikipedia 영문판 홈페이지
Posted on 2012/01/19 00:41
Filed Under 분류없음

검게 변한 wikipedia 영문판 홈페이지
Posted on 2012/01/17 10:05
Filed Under 분류없음
$ sudo apt-get install openvpn
Posted on 2012/01/09 18:00
Filed Under 분류없음
Posted on 2012/01/08 21:20
Filed Under 분류없음
Posted on 2012/01/08 20:46
Filed Under 분류없음
$ wget https://github.com/downloads/tiwilliam/istatd/istatd-0.5.8.tar.gz
$ tar -xfv istatd-0.5.8.tar.gz
$ ./configure --prefix=/ --sysconfdir=/etc
$ make
$ sudo make install
$ sudo useradd istat
$ sudo mkdir -p /var/{run,cache}/istat
$ sudo chown istat.istat /var/{run,cache}/istat
$ sudo vim /etc/istat.conf
$ /bin/istatd -d
Posted on 2012/01/08 11:42
Filed Under 분류없음
wondoui-MacBook-Air:android yarang$ sudo port selfupdate ---> Updating MacPorts base sources using rsync MacPorts base version 2.0.3 installed, MacPorts base version 2.0.3 downloaded. ---> Updating the ports tree ---> MacPorts base is already the latest version The ports tree has been updated. To upgrade your installed ports, you should run port upgrade outdated wondoui-MacBook-Air:android yarang$
wondoui-MacBook-Air:android yarang$ sudo port sync
Posted on 2012/01/07 08:54
Filed Under 분류없음
Posted on 2012/01/07 08:47
Filed Under 분류없음
wondoui-MacBook-Air:ns3 yarang$ hg clone http://code.nsnam.org/ns-3-allinone destination directory: ns-3-allinone requesting all changes adding changesets adding manifests adding file changes added 49 changesets with 69 changes to 7 files updating to branch default 7 files updated, 0 files merged, 0 files removed, 0 files unresolved wondoui-MacBook-Air:ns3 yarang$
기본 저장소에서 ns-3를 다운로드받은 후에 전체 파일의 다운로드를 실행한다.wondoui-MacBook-Air:ns-3-allinone yarang$ ls README constants.py download.py build.py dist.py util.py wondoui-MacBook-Air:ns-3-allinone yarang$ ./download.py # # Get NS-3 # Cloning ns-3 branch => hg clone http://code.nsnam.org/ns-3-dev ns-3-dev requesting all changes adding changesets adding manifests adding file changes added 7678 changesets with 35905 changes to 6040 files updating to branch default 2086 files updated, 0 files merged, 0 files removed, 0 files unresolved # # Get PyBindGen # Required pybindgen version: 0.15.0.795 Trying to fetch pybindgen; this will fail if no network connection is available. Hit Ctrl-C to skip. => bzr checkout -rrevno:795 https://launchpad.net/pybindgen pybindgen *** Did not fetch pybindgen; python bindings will not be available. # # Get NSC # Architecture (darwin) does not support NSC... skipping *** Did not fetch NSC; NSC will not be available. wondoui-MacBook-Air:ns-3-allinone yarang$
다운로드받은 파일을 확인하는 것은 ls명령으로 확인한다. 실제 ns-3용 소스들은 ns-3-dev 디렉토리에 다운로드가 완료되어있다.wondoui-MacBook-Air:ns-3-allinone yarang$ ls README constants.py dist.py ns-3-dev util.pyc build.py constants.pyc download.py util.py wondoui-MacBook-Air:ns-3-allinone yarang$ ls ns-3-dev/ AUTHORS VERSION scratch utils.py wutils.py CHANGES.html bindings src waf LICENSE doc test.py waf-tools README examples testpy.supp waf.bat RELEASE_NOTES ns3 utils wscript wondoui-MacBook-Air:ns-3-allinone yarang$
Posted on 2012/01/05 00:27
Filed Under 분류없음
iPad에서 blogger+를 이용하여 블로그 작성 테스트중입니다.
Posted on 2012/01/04 18:50
Filed Under 분류없음
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > repo $ chmod +x repo$ ./repo init -u https://android.googlesource.com/platform/manifest ... <생략> ... Your Name [______]: <== 이름 입력 Your Email [yarang@local]: <== Email입력 Your identity is: ______ <________> is this correct [y/N]? y <== 확인 끝나면 y/다시하려면 n 입력 Testing colorized output (for 'repo diff', 'repo status'): black red green yellow blue magenta cyan white bold dim ul reverse Enable color display in this user account (y/N)? y repo initialized in /Users/yarang/repos $ ./repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
자신이 원하는 버전에 따라서 branch 이름을 바꿀 수 있다. 위 작업이 끝나면 저장소를 초기화하는 작업이 끝나고 다운로드를 받기 위해서는 다음의 명령으로 다운로드를 시작한다.$ ./repo sync
Android의 소스크기가 상당히 크기 때문에 전부 다운로드받는 시간은 상당히 오래 걸린다는 것을 염두에 두자.