Skip to content

Instantly share code, notes, and snippets.

@Vesnica
Last active November 23, 2025 06:08
Show Gist options
  • Select an option

  • Save Vesnica/6a7a935e23dd83c0d02dcb48ae8154ab to your computer and use it in GitHub Desktop.

Select an option

Save Vesnica/6a7a935e23dd83c0d02dcb48ae8154ab to your computer and use it in GitHub Desktop.
WSL2中安装usbip
  • WSL2中使用的是微软的自定义内核,这导致内核版本和apt库中的内核版本基本不会匹配,进而使得系统认为某些和内核版本强关联的软件(如usbip)没有安装
  • 因此在安装了匹配内核版本的软件包后,需要使用某种机制让软件被调用时自动关联最新版本的二进制路径sudo update-alternatives --install /usr/local/bin/usbip usbip `ls /usr/lib/linux-tools/*/usbip | tail -n1` 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment