1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/sysctl.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/shar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/sqfstar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 15:05:30 +09:00

24 lines
512 B
Markdown

# sysctl
> 커널 런타임 변수를 나열하고 변경합니다.
> 더 많은 정보: <https://manned.org/sysctl.8>.
- 사용 가능한 모든 변수와 그 값을 표시:
`sysctl -a`
- 변경 가능한 커널 상태 변수를 설정:
`sysctl -w {{섹션.조정가능}}={{값}}`
- 현재 열려 있는 파일 핸들러 수를 확인:
`sysctl fs.file-nr`
- 동시에 열 수 있는 파일의 제한을 확인:
`sysctl fs.file-max`
- `/etc/sysctl.conf` 파일의 변경 사항을 적용:
`sysctl -p`