How do I check hardware information in Manjaro?

Understanding the hardware components of your Manjaro system is crucial for various reasons, including troubleshooting, compatibility assessment, and performance optimisation. Manjaro, a user-friendly Arch Linux distribution, provides users with several tools to check hardware information. In this comprehensive guide, we’ll explore the methods and tools available in Manjaro to gather detailed insights into your system’s hardware configuration.

Checking Hardware Information Using Command Line Tools

1. lshw: Listing Hardware Details

  • The lshw command is a powerful tool that provides detailed information about various hardware components. Open a terminal and type:
sudo lshw
  • This command generates a comprehensive report on your hardware, including details about the CPU, memory, storage, and more.

2. inxi: A Comprehensive System Information Tool

  • Manjaro comes pre-installed with inxi, a versatile command-line tool for system information. To use it, run:
inxi -Fxz
  • This command provides a concise yet detailed overview of your system’s hardware, including CPU, GPU, RAM, storage, and more.

3. hwinfo: Query Hardware Information

  • The hwinfo command is another option for retrieving detailed hardware information. Execute the following command:
sudo hwinfo
  • This tool provides an extensive list of hardware details, organised by category.

Utilising Graphical Tools for Hardware Information

1. Manjaro Settings Manager: Hardware Detection

  • Manjaro Settings Manager includes a dedicated “Hardware Detection” tool. Access it through the application menu or run:
sudo mhwd -l
  • This tool provides a user-friendly interface for manageing hardware drivers and detecting installed hardware.

2. HardInfo: Graphical System Information Tool

  • Manjaro users can install the hardinfo package to access a graphical tool for hardware information. Install it using:
sudo pacman -S hardinfo
  • Run the tool by typing hardinfo in the terminal or finding it in the application menu.

Interpreting Hardware Information

1. Processor (CPU) Information:

  • Look for details about your CPU, including the model, architecture, clock speed, and number of cores.

2. Memory (RAM) Information:

  • Check the total installed RAM, as well as the type and speed of the memory modules.

3. Graphics (GPU) Information:

  • Identify your graphics card, including the manufacturer, model, and driver in use.

4. Storage Information:

  • Examine details about your storage devices, such as hard drives and solid-state drives, including capacity, partitions, and file systems.

5. Network Information:

  • View information about your network interfaces, including Ethernet and wireless connections.

6. Peripheral Devices:

  • Check for information about connected peripheral devices, such as printers, USB devices, and more.

Troubleshooting and Tips

1. Driver Information:

  • Hardware detection tools often provide information about installed drivers. Ensure that necessary drivers are installed for optimal hardware functionality.

2. Updating Hardware Information:

  • Periodically check hardware information, especially after making changes to your system, to ensure that the displayed details accurately reflect the current configuration.

3. Comparing with Documentation:

  • Refer to your hardware’s documentation or specifications to compare the reported information and verify the accuracy of the details.

4. Interpreting Codes and Abbreviations:

  • Hardware information tools may use codes or abbreviations. Consult the respective documentation or online resources to understand the meanings of these codes.

Conclusion

Effectively checking hardware information in Manjaro is a fundamental aspect of manageing and optimising your system. Whether you prefer command-line tools for their precision or graphical tools for their user-friendly interfaces, Manjaro offers a variety of options to cater to different user preferences. By regularly checking and understanding your hardware configuration, you empower yourself to make informed decisions regarding drivers, compatibility, and system performance on your Manjaro Linux system.

Scroll to Top