Syl*_*eau 6

使用ubuntu-drivers,可用命令描述如下:

usage: ubuntu-drivers [-h] [--package-list PATH] <command>

List/install driver packages for Ubuntu.

positional arguments:
  <command>            See below

optional arguments:
  -h, --help           show this help message and exit
  --package-list PATH  Create file with list of installed packages (in
                       autoinstall mode)

Available commands:
   debug: Print all available information and debug data about drivers.
   autoinstall: Install drivers that are appropriate for automatic installation.
   devices: Show all devices which need drivers, and which packages apply to them.
   list: Show all driver packages which apply to the current system.
Run Code Online (Sandbox Code Playgroud)

来源

因此,您可以使用 获取包名称列表,sudo ubuntu-drivers devices然后使用apt-get.

安装好你想使用的那个之后,你必须删除你不想使用的那个。这将强制 Ubuntu 使用您安装的那个(感谢 @ Ads20000

  • 好的,那么我如何实际选择我想要激活的驱动程序?或者有没有办法像在 Jockey 中那样做到这一点? (2认同)
  • @Ads20000 您使用`sudo ubuntu-drivers devices` 来获取软件包列表,然后使用`sudo apt-get install` 来安装您想要的特定软件包。 (2认同)