linux查看系统信息

Linux 查看系统信息工具推荐

1. neofetch

1
2
3
4
5
6
7
8
# Debian/Ubuntu
apt install neofetch
# RHEL/CentOS/Fedora
dnf install neofetch
# Arch
pacman -S neofetch
# 使用
neofetch

优点:高度自定义(配色、显示模块、Logo);
缺点:不再持续维护,但稳定可用。

2. fastfetch(neofetch 现代化替代品)

C 语言编写,启动极快,功能更强,活跃更新,完美兼容 neofetch 配置。

1
2
3
4
5
6
7
8
# Arch
pacman -S fastfetch
# Ubuntu 24.04+
apt install fastfetch
# Fedora
dnf install fastfetch
# 使用
fastfetch

3. hyfetch(二次元风格 fastfetch 分支)

喜欢动漫风格可以用,输出动漫图代替系统 ASCII 图标。

1
2
pip install hyfetch
hyfetch

4. screenfetch

比 neofetch 更早,部分老旧服务器源有收录

1
2
apt install screenfetch
screenfetch

5. inxi

1
2
3
4
5
apt install inxi
# 简洁概览
inxi -b
# 完整硬件信息(CPU/磁盘/网卡/显卡)
inxi -F

6. cpufetch

专门展示处理器参数、缓存、架构,带 ASCII 图形

1
2
apt install cpufetch
cpufetch

自带的

命令简易输出:

uname -a          # 内核信息
lsb_release -a    # 发行版
lscpu             # CPU
free -h           # 内存
df -h             # 磁盘
ip a              # 网络

linux查看系统信息
https://blog.computerqwq.top/2026/07/23/linux-cha-kan-xi-tong-xin-xi/
作者
计算机qwq
发布于
2026年7月23日
更新于
2026年7月23日
许可协议