linux/u*: add Korean translation (#14754)

This commit is contained in:
코드싸이
2024-11-09 23:24:15 +09:00
committed by GitHub
parent 350b0b5b92
commit 2a06ff02cc
40 changed files with 936 additions and 0 deletions

12
pages.ko/linux/unshare.md Normal file
View File

@@ -0,0 +1,12 @@
# unshare
> 사용자 정의 네임스페이스에서 명령을 실행합니다.
> 더 많은 정보: <https://www.kernel.org/doc/html/latest/userspace-api/unshare.html>.
- 연결된 네트워크에 대한 액세스를 공유하지 않고 명령 실행:
`unshare --net {{명령어}} {{명령어_인자들}}`
- 마운트, 프로세스, 네트워크를 공유하지 않고 자식 프로세스로 명령 실행:
`unshare --mount --pid --net --fork {{명령어}} {{명령어_인자들}}`