linux/man: update Korean translation, linux/m*: add Korean translation (#14709)

* linux/man: update Korean translation

* linux/m*: add Korean translation
This commit is contained in:
코드싸이
2024-11-09 13:27:56 +09:00
committed by GitHub
parent 340dd5cc12
commit c369e30f73
56 changed files with 1134 additions and 9 deletions

20
pages.ko/linux/mknod.md Normal file
View File

@@ -0,0 +1,20 @@
# mknod
> 블록 또는 문자 장치 특수 파일 생성.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/mknod>.
- 블록 장치 생성:
`sudo mknod {{경로/대상/장치_파일}} b {{주_장치_번호}} {{부_장치_번호}}`
- 문자 장치 생성:
`sudo mknod {{경로/대상/장치_파일}} c {{주_장치_번호}} {{부_장치_번호}}`
- FIFO(큐) 장치 생성:
`sudo mknod {{경로/대상/장치_파일}} p`
- 기본 SELinux 보안 컨텍스트로 장치 파일 생성:
`sudo mknod -Z {{경로/대상/장치_파일}} {{유형}} {{주_장치_번호}} {{부_장치_번호}}`