ubuntu查看电脑配置信息

1、 查看电脑是32位还是64位:

getconf LONG_BIT

2、 查看系统信息(包括系统版本)

lsb_release -a

或者:
cat /etc/lsb-release

3、 查看系统架构

Uname

4、 获取ubuntu版本:

cat /etc/issue

5、 图形化界面查看硬件信息:cpu 、mem

安装:sudo apt-get install hardinfo
执行:hardinfo

6、 查看cpu信息:

cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

7、 查看cpu概要:

Lscpu

8、 显示GPU使用情况

nvidia-smi -l   (N卡查看)

9、 查看GPU型号

lspci | grep -i vga
    原文作者:思禾
    原文地址: https://blog.csdn.net/sinat_33909696/article/details/116201809
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞