Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- animation
- ConstraintLayout
- mongoose
- map
- CLASS
- docker-compose
- react native
- MINUS
- union
- list
- vuex
- Generic
- collection
- Filter
- class component
- Foreign Key
- ReactNative
- docker
- LiveData
- AWS
- 생명주기
- Kotlin
- elementAt
- Swift
- enum
- function
- Interface
- recyclerview
- lifecycle
- Service
Archives
- Today
- Total
개발 일기
ps 본문
현재 시스템에서 실행 중인 프로세스를 시각화 해서 보여줄 수 있습니다.
[옵션]
$ ps -e
모든 프로세스를 출력합니다.
$ ps -f
풀 포맷 형식으로 보여줍니다.
$ ps -l
긴 포맷으로 보여줍니다.
$ ps -p 10657
특정 PID 프로세스를 보여줍니다.
$ ps -u
특정 사용자의 프로세스를 보여줍니다.
$ ps -ef | grep sphinx
sphinx 들어가 있는 process 검색합니다.
'linux' 카테고리의 다른 글
systemctl ? (0) | 2020.04.11 |
---|---|
kill (0) | 2020.04.10 |
uname ? (0) | 2020.04.06 |
linux curl ? (0) | 2020.04.05 |
linux df , du ? (0) | 2020.04.05 |
Comments