x0*,x11*,xauth,xbacklight,xclip,xcursor,xdg*,xdotool,xinput,xr*,xsel,xset,xsetwacom: add Korean translation (#14439)

This commit is contained in:
코드싸이
2024-10-29 15:16:48 +09:00
committed by GitHub
parent 03c68430fd
commit 5297ea5b15
21 changed files with 496 additions and 0 deletions

36
pages.ko/linux/xauth.md Normal file
View File

@@ -0,0 +1,36 @@
# xauth
> X 서버에 연결할 때 사용되는 인증 정보를 편집하고 표시.
> 더 많은 정보: <https://manned.org/xauth>.
- 특정 인증 파일로 대화형 모드 시작 (`~/.Xauthority`가 기본값):
`xauth -f {{경로/대상/파일}}`
- 인증 파일에 대한 정보 표시:
`xauth info`
- 모든 디스플레이에 대한 인증 항목 표시:
`xauth list`
- 특정 디스플레이에 대한 인증 추가:
`xauth add {{디스플레이_이름}} {{프로토콜_이름}} {{키}}`
- 특정 디스플레이에 대한 인증 제거:
`xauth remove {{디스플레이_이름}}`
- 현재 디스플레이에 대한 인증 항목을 `stdout`에 출력:
`xauth extract - $DISPLAY`
- 특정 파일에서 인증 항목을 인증 데이터베이스에 병합:
`cat {{경로/대상/파일}} | xauth merge -`
- 도움말 표시:
`xauth --help`