http://www.thegeekstuff.com/2009/10/unix-sed-tutorial-advanced-sed-substitution-examples/ This article is part of the on-goingUnix Sed Tips and Tricks series. In our previous sed articles we learned —…
- Category Archives 비공개
-
-
[scrap]50 Most Frequently Used UNIX / Linux Commands (With Examples)
http://www.thegeekstuff.com/2010/11/50-linux-commands/ This article provides practical examples for 50 most frequently used commands in Linux / UNIX. This is not a comprehensive list by any mea…
-
[scrap]Top 25 Best Linux Performance Monitoring and Debugging Tools
http://www.thegeekstuff.com/2011/12/linux-performance-monitoring-tools/ I’ve compiled 25 performance monitoring and debugging tools that will be helpful when you are working on Linux environment. This…
-
[scrap]50 UNIX / Linux Sysadmin Tutorials
http://www.thegeekstuff.com/2010/12/50-unix-linux-sysadmin-tutorials/ Merry Christmas and Happy Holidays to all TGS Readers. To wrap this year, I’ve collected 50 UNIX / Linux sysadmin related t…
-
[scrap]Step-by-Step Bugzilla Installation Guide for Linux
http://www.thegeekstuff.com/2010/05/install-bugzilla-on-linux/ Bugzilla is the best open source bug tracking system. Very simple to use with lot of features. Bugzilla allows you to track…
-
[scrap]자바 정규표현식 필터링 Pattern 사용법 예시
http://metalbird.tistory.com/entry/자바-정규표현식-필터링-Pattern-사용법-예시 public void checkRegularCharactor(String path, String method) throws Exception { String invalidString = “|\|:|”|\*|\?|…
-
[scrap] 작은 회사가 꼭 알아야 할 클라우드 기반 사내협업 시스템
요즘 같은 적시 타이임을 추구하는 비지니스 환경에 어울리는 협업 도구들에 대한 이야기. 일을 해야지 툴을 만드는 회사가 되지 말아야 하기 때문에 가급적 외부 서비스를 활용한다. 누군가 그랬다.. 돈은 시간을 줄이는데 사용 해야 한다고.. http://ppss.kr/archives/44606 1. 자료 공유: 컨플루언스 모든 자료는 컨플루언스에…
-
L(U)nix 에서 특정 문자열 위치 표시 및 구간 정보 보기
grep -n “패턴” 화일명 에서 처럼 -n 옵션을 사용하면 찾고자 하는 문자열이 포함이 되어 있는 line number를 표시 해 준다. sed -n ‘xxxx,xxxxp’ 화일명 이렇게 하면 화일에서 xxxx에서 xxxxp까지의 내용을 출력 해 준다. ( p는 뒤에만 붙…
-
[scrap]How to Monitor MySQL Replication?
Just setting up MySQL replication is not enough, you would need to periodically monitor your slaves to ensure they continue to work seamlessly. Here is a basic overview of the Slave variables to monit…
-
[scrap]Linux ssh 초기 보안 설정
http://simonshin.egloos.com/2247508 /bin/su File chattr -i /bin/su chown root.wheel /bin/su chmod 4750 /bin/su chattr +i /bin/su /etc/ssh/sshd_config File 파일을 열어서 아래 사항들이 활성화 될 수 있도록 수정 한다. Pe…