Logo

Blog Grid 2 Column

Journal

Creative Collection

When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees.

2025년 04월 16일

서버에 접근하는 ip들 보기

netstat -ant | awk ‘{print $5}’ | cut -f 1 -d : | sort | uniq|wc -l 서버에 접근하는 ip들 보기

Continue Reading
2025년 04월 16일

내 linux 가 32bit 인지 64bit 인지 확인방법

#uname -a 하시면 됩니다. Linux kkamagi2 2.6.18-8.1.15.el5 #1 SMP Mon Oct 22 08:32:04 EDT 2007 i686 i686 i386 GNU/Linux 32bit시에 위와 같이 뜨고.. 64bit시에는....

Continue Reading
2025년 04월 16일

rm 으로 안지워질때 find 명령으로 삭제방법

$ find . -name “b*” -exec rm -rf {} \; 현재 디렉토리(.) 하부에 b로 시작하는 파일은 모두 삭제하라 $ find . -name “*” -exec rm -rf...

Continue Reading
2025년 04월 16일

vi 에서 색깔 설정하기

vi color vi로 파일을 열때 특정 option이 자동수행되게 하려면 ~/.vimrc에 option을 미리 지정하면 됩니다. 예를들어, 라인번호가 항상 나오게 하려면 set number 라는걸 ~/.vimrc에 넣어놓으면 됩니다. 색깔 지정하는걸 Syntax Highlighting이라 하는데 :syntax on 하여 색상이...

Continue Reading