Linux Commands Helper
💬 Your AI-powered Linux assistant
arch Command - Print Machine Architecture
The arch command displays the machine architecture (hardware name) of the system, such as x86_64 or i686.
Syntax
arch
Examples
arch
Show the current machine architecture.
uname -m
Alternative command to display machine hardware name.
Notes
- arch is equivalent to
uname -m
on most systems. - Useful for scripting and system diagnostics.