특정 파일 찾는 명령어
find ./|grep TEST
디렉토리 이동하는 명령어
cd ./common/downloadFiles/
파일이동하는 명령어
mv /home/centos/SAMPLE.xls ./
mv /home/centos/win.jpg ./
파일권한 변경 명령어
chmod 644 SAMPLE.xls
파일 유저/그룹명 변경 명령어
chown testuser:testuser SAMPLE.xls
현재 서비스 포트 확인
netstat -an | grep 10000
현재 실행중인 프로세스 찾기
ps -ef | grep project
[pid]
project 172981 168912 0 16:57 pts/16
현재 실행중인 프로세스 죽이기
kill -9 [pid]