我找到了我的 GPU,但
lspci | grep VGA
发现01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Oland XT [Radeon HD 8670 / R7 250]
我找不到我的 GPU 大小。有人能帮我解决吗?
答案1
打开终端并执行:
grep -i memory /var/log/Xorg.0.log
输出类似于:
[ 4.946] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 5.278] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[ 5.298] (==) NVIDIA(0): Disabling shared memory pixmaps
此示例来自具有 2 GB 专用内存的 NVIDIA GEFORCE GTX 860M 显卡。
答案2
首先安装实用程序:
$ sudo apt install mesa-utils
然后使用以下命令检查内存大小:
$ glxinfo | egrep -i 'device|memory'