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

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

@@ -0,0 +1,36 @@
# usbip
> 원격으로 USB 장치를 사용합니다.
> 더 많은 정보: <https://usbip.sourceforge.net>.
- 모든 로컬 USB 장치와 해당 버스 ID 나열:
`usbip list --local`
- 서버에서 `usbip` 데몬 시작:
`systemctl start usbipd`
- 서버에서 USB 장치를 `usbip`에 바인드:
`sudo usbip bind --busid={{버스_ID}}`
- 클라이언트에서 `usbip`에 필요한 커널 모듈 로드:
`sudo modprobe vhci-hcd`
- 클라이언트에서 `usbip` 장치에 연결(버스 ID는 서버와 동일합니다):
`sudo usbip attach -r {{IP_주소}} --busid={{버스_ID}}`
- 연결된 장치 나열:
`usbip port`
- 장치에서 분리:
`sudo usbip detach --port={{포트}}`
- 장치의 바인드 해제:
`usbip unbind --busid={{버스_ID}}`