Обзор Manjaro HardWare Detection
Обзор
Команда Manjaro HardWare Detection (mhwd) является уникальной функциональностью Manjaro. В настоящее время существует два типа команды mhwd:
1. mhwd: Позволяет автоматически определять и настраивать аппаратное обеспечение компьютера, на котором работает система. Сюда входит как оборудование, подключенное внутри через PCI (например, видеокарты), так и подключенное снаружи через USB (например, флэш-накопители). Примечание: Команда mhwd все еще находится в стадии разработки и в настоящее время способна устанавливать драйверы только для видеокарт, подключенных через pci.
2. mhwd-kernel: Позволяет устанавливать и легко управлять несколькими ядрами в вашей системе.
mhwd
Запускается автоматически в процессе установки и позволяет Manjaro полноценно работать в вашей системе "прямо из коробки", без необходимости вручную определять и устанавливать необходимые драйверы или вручную редактировать соответствующие конфигурационные файлы. Команда mhwd также может быть использована через терминал после установки, ее возможности включают:
- The choice of free (i.e. open-source) or non-free (i.e. proprietary) drivers
- Identification and listing (general or detailed) of your system's hardware
- Identification and listing (general or detailed) of installed drivers
- Listing of available drivers for installation (free and proprietary)
- Support of hybrid graphics cards (e.g. Nvidia Optimus)
- Easy removal and installation of drivers (selected automatically, or you can identify and choose your own)
Команды mhwd
All mhwd commands are undertaken using the terminal. The syntax of a mhwd command is:
mhwd [option(s)] <config(s)>
The mhwd options available are:
Option Explanation --pci list only pci devices and driver configs --usb list only usb devices and driver configs -h/--help show help -f/--force force reinstallation -d/--detail show detailed info for -l/-li/-lh -l/--list list available configs for devices -la/--listall list all driver configs -li/--listinstalled list installed driver configs -lh/--listhardware list hardware information -i/--install <usb/pci> <config(s)> install driver config(s) -ic/--installcustom <usb/pci> <path> install custom config(s) -r/--remove <usb/pci> <config(s)> remove driver config(s) -a/--auto <usb/pci> <free/nonfree> <classid> auto install configs for classid --pmcachedir <path> set package manager cache path --pmconfig <path> set package manager config --pmroot <path> set package manager root
Listing Hardware Information
To identify and list your computer's hardware, the syntax is:
mhwd -lh [optional: detailed view] [optional: pci or usb devices only]
For example, a detailed list of your hardware can be obtained by entering:
mhwd -lh -d
It is also possible to filter your list by devices connected via pci or usb. In this instance, a detailed list will be generated only of hardware with a PCI connection:
mhwd -lh -d --pci
Listing Installed Driver Information
To identify and list Manjaro's installed drivers, the syntax is:
mhwd -li [optional: detailed view] [optional: pci or usb devices only]
For example, a detailed list of your installed drivers can be obtained by entering:
mhwd -li -d
It is also possible to filter your list of installed drivers by whether they are used on hardware connected via pci or usb. In this instance, a detailed list will be generated only for installed drivers used on hardware with a PCI connection:
mhwd -li -d --pci
Listing Available Drivers
To list all the drivers that are available (whether appropriate for your system or not), the basic syntax is:
mhwd -la [optional: pci or usb]
For example, a list of all drivers available for just USB devices (and not just those connected to your system) can be obtained by entering:
mhwd -la --usb
To list only the appropriate drivers that are available for your system, the basic syntax is:
mhwd -l [optional: pci or usb]
For example, a list of all available drivers specifically for devices connected via pci on your system can be obtained by entering:
mhwd -l --pci
Смотрите также
- A guide to using the mwhd command to identify, install or remove graphics drivers can be found in the Configure Graphics Cards page.
- A guide to using the mhwd-kernel command can be found in the Manjaro Kernels page.