일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Book
- agile
- France
- erlang
- Kuala Lumpur
- Software Engineering
- Spain
- comic agile
- Linux
- Java
- management
- Programming
- history
- Italy
- hadoop
- QT
- RFID
- leadership
- django
- Python
- web
- Malaysia
- UK
- psychology
- program
- Book review
- MySQL
- hbase
- ubuntu
- programming_book
- Today
- Total
목록Linux (10)
유닉스의 탄생을 읽고 나서 썼지만 유닉스/리눅스 운영체제는 문서화의 선구자였다. man 명령어를 사용하면 명령어 사용 방법, 옵션부터 관련 명령어와 간략한 역사까지 자세한 설명을 보여준다. 하지만 man page만으로는 때로 이해하기 어렵거나 설명이 부족한 경우도 있고(find 같은 경우도 예제가 있긴 하지만 기능이 워낙 강력하고 조금은 복잡해서 프로그래머들도 잘 모르는 경우가 종종 있다), 시각화라는 건 애초에 들어가기가 어렵기 때문에 여러가지 책들이 끊임없이 출간된다. 이 책은 제목에서 알 수 있듯이 ‘입문자’를 위한 명령어 ‘사전’이다. 시작하는 경우 대부분 그렇듯 익숙해진 후에는 별 거 아니어도 처음에는 굉장히 어렵고 이해가 잘 안 가는 부분이 많이 생긴다. 이 책은 챕터별로 명령어들을 우선 분류..
kickstart http://wiki.linuxstudy.pe.kr/wiki.php/kickstart#s-1.2 puttyCS http://aero.sarang.net/blog/2008/10/puttycs-putty.html ssh 서버로 동시에 많은 명령 내리기 http://aero.sarang.net/blog/2008/11/ssh.html Rex http://rexify.org/ ssh-copy-id로 암호없이 scp 사용 http://mytory.co.kr/archives/1144
https://geni-orca.renci.org/trac/wiki/centosSetup 1. add repository # cd /etc/yum.repos.d # wget http://www.jpackage.org/jpackage50.repo 2. install maven (2.0.7) # yum install maven2 http://www.cahilig.net/2011/03/24/how-install-oracle-java-runtime-environment-fedora-14-64-bit 3. change java package from openjdk into others (if necessary) # alternatives --config java # wget http://www.apache.org..
http://www.howtoforge.com/how-to-install-vmware-player-on-ubuntu-11.04-linux-mint-11 $ sudo apt-get install build-essential linux-headers-`uname -r` $ gksudo bash ./VMware-Player-4.0.1-528992.x86_64.bundle
Missing time synchronization, scm console cannot start properly. Because of time sync, I installed ntpdate like below; 2011/10/07 - [Programming] - CentOS: time syncronization in local network / setting timezone However time sync is broken after 2 months. So, to prohibit this problem, I wrote 'crontab' on every server. 0 0 * * * /sbin/ntpdate [ntp server] > /dev/null 2>&1
http://essayboard.com/2011/05/28/raising-ulimit-on-centos-server/ $ su - # vi /etc/sysctl.conf (add fs.file-max = [value] at the end of the file) # sysctl -p # vi /etc/security/limits.conf (add [type] - nofile [value] like below; hdfs - nofile [value] hbase - nofile [value] * - nofile [value] # ulimit -n [value] # ulimit -n
http://hook.tistory.com/entry/RHEL-CentOS%EC%97%90%EC%84%9C-ntp-%EC%84%9C%EB%B2%84-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0%EC%82%AC%EC%84%A4%EB%A7%9D-%EB%82%B4%EB%B6%80-%EC%84%9C%EB%B2%84%EB%93%A4%EC%9D%98-%EC%8B%9C%EA%B0%84-%EB%8F%99%EA%B8%B0%ED%99%94 server1: x.y.w.z1 server2: x.y.w.z2 server3: x.y.w.z3 all servers # yum install ntp -y server1 # vi /etc/ntp.conf # Permit time synchronization with..
1~6 출처: http://comblog.wo.tc/346 1. Xubuntu: http://www.xubuntu.org/ 2. Damn Small LInux: http://www.damnsmalllinux.org/ 3. Basic Linux: http://distro.ibiblio.org/pub/linux/distributions/baslinux/ 4. Puppy Linux: http://puppylinux.org/ 5. DeLi Linux: http://www.delilinux.de/ 6. Debian: http://debian.org/ 7. Lubuntu: http://lubuntu.net/ 8. U-lite: http://u-lite.org/ 9. FluxBox: http://www.fluxbox..
rsync는 daemon / ssh 방식 두 가지가 있는데, ssh의 경우 ssh public key를 추가해야 접속이 가능 ssh-keygen -y: read private key and print public key 참고: http://zakorea.tistory.com/24 rsync ssh 방식 접속 $ rsync -avz --rsh="ssh -l [id]" [ip]:[src path] [dst path] 참고: http://blueamor.tistory.com/190
2009/08/17 - [Programming] - diff, find, md5sum, patch 2009/08/17 - [Programming] - find, grep, ctags, cscope, global shared library compile -fpic: small & fast, maybe restricted according to the platform -fPIC: large & slow, platform independent -shared: shared library 생성 -W1: 링커에 대한 option. 여기서는 shared library의 이름을 libhello.so.1으로 지정 shared library의 path를 찾지 못하는 경우 발생하는 error. 시스템 호출 추적기인 stra..