mirror of https://github.com/CrimsonTome/tldr.git
17 lines
460 B
Markdown
17 lines
460 B
Markdown
|
# prctl
|
||
|
|
||
|
> 실행 중인 프로세스, 작업 및 프로젝트의 리소스 제어를 가져오거나 설정합니다.
|
||
|
> 더 많은 정보: <https://www.unix.com/man-page/sunos/1/prctl>.
|
||
|
|
||
|
- 프로세스 제한 및 권한 검사:
|
||
|
|
||
|
`prctl {{pid}}`
|
||
|
|
||
|
- 기계적 분석이 가능한 형식으로 프로세스 제한 및 권한 검사:
|
||
|
|
||
|
`prctl -P {{pid}}`
|
||
|
|
||
|
- 실행 중인 프로세스의 특정 제한 가져오기:
|
||
|
|
||
|
`prctl -n process.max-file-descriptor {{pid}}`
|