[linux] shell command 정리 (2)

반디·2023년 4월 26일
0

개발기

목록 보기
4/16

기본 shell command 정리

명령어기능옵션 및 비고
ps현재 실행되고 있는 프로세스 출력-e: 모든 프로세스
-f: full format
curlrequest를 테스트할 수 있는 명령어ex) curl -X localhost:5000/{data}
df현재 사용중인 디스크 용량 확인-h: GB, MB 등의 단위로 출력
nohup백그라운드 실행permission이 755여야 함
kill -9 pid로 프로세스 kill
chmod파일의 권한 설정r:4, w:2, x:1

scp

명령어기능옵션 및 비고
scpssh를 이용해 연결된 호스트 간 파일을 주고 받음-r: 재귀적으로 복사
-P: ssh 포트 지정
-i: ssh 설정을 활용해 실행
  • local \rightarrow remote
scp local_path user@ip:remote_directory
  • remote \rightarrow local
scp user@ip:remote_directory local_path
  • remote \rightarrow remote
scp user@ip:remote_directory user2@ip2:target_remote_directory
profile
꾸준히!

0개의 댓글