linux/b*: add Korean translation (#14681)

This commit is contained in:
코드싸이
2024-11-08 15:53:25 +09:00
committed by GitHub
parent 53b2ce7e7f
commit 781a19fc2e
39 changed files with 909 additions and 0 deletions

24
pages.ko/linux/blkpr.md Normal file
View File

@@ -0,0 +1,24 @@
# blkpr
> Persistent Reservations를 지원하는 블록 장치에서 예약을 등록, 예약, 해제, 선점 및 지우기.
> 더 많은 정보: <https://manned.org/blkpr>.
- 주어진 장치에 주어진 키로 새로운 예약을 등록 (명령)하기:
`blkpr {{-c|--command}} register {{-k|--key}} {{예약_키}} {{경로/대상/장치}}`
- 기존 예약의 유형을 배타적 접근으로 설정:
`blkpr -c reserve {{-k|--key}} {{예약_키}} {{-t|--type}} exclusive-access {{경로/대상/장치}}`
- 주어진 키로 기존 예약을 선점하고 새로운 예약으로 교체:
`blkpr -c preempt {{-K|--oldkey}} {{이전_키}} {{-k|--key}} {{새로운_키}} {{-t|--type}} write-exclusive {{경로/대상/장치}}`
- 주어진 장치에서 주어진 키와 유형으로 예약 해제:
`blkpr -c release {{-k|--key}} {{예약_키}} {{-t|--type}} {{예약_유형}} {{경로/대상/장치}}`
- 주어진 장치에서 모든 예약 지우기:
`blkpr -c clear {{-k|--key}} {{키}} {{경로/대상/장치}}`