如何让 CPU-G 在 18.04 上运行

如何让 CPU-G 在 18.04 上运行

要让 CPU-G 在 18.04 上运行,需要什么?我已经执行了所有我能找到的必要步骤(请参阅这个帖子这个帖子) 并在互联网上进行了广泛搜索,但无济于事。

尝试使用 Super 键启动程序会弹出图标,但单击图标没有任何反应。同样,在 Alt-F2 窗口中输入 cpu-g 也没有任何效果。

我确信这一定是一些非常基本的东西,但我不知道要寻找什么。

谢谢。

答案1

我找不到有关 的最新信息cpu-g。与此同时,您可能想尝试hardinfo使用以下方法安装:

sudo apt install hardinfo

然后hardinfo在终端中输入或从 Dash ( Alt+ F2) 调用,GUI 将如下所示:

硬信息.png

您可以从中获得大部分(如果不是全部)您需要的信息cpu-g以及有关您的机器的更多信息。

答案2

让我们看看为什么它无法启动:

cd ~/Downloads
wget https://netix.dl.sourceforge.net/project/cpug/cpu-g-0.9.0.tar.gz
tar -xf cpu-g-0.9.0.tar.gz
cd cpu-g-0.9.0

启动它:

$ ./cpu-g
You need to have PyGTK 2.10.0, GTK.Glade and GTK+ 2.10.0 or higher             installed in your system in order to run CPU-G.

因此至少需要安装两个软件包

sudo apt-get install python-gtk2 python-glade2

然后它将启动:

sudo ./cpu-g

18.04 LTS 上的 CPU-G

(在虚拟机和真实硬件上测试)


关于来自 PPA 的软件包(ppa:atareao/atareao)我还发现它不是以以下内容开头:

$ /opt/extras.ubuntu.com/cpu-g/bin/cpu-g
[Errno 2] No translation file found for domain: 'cpu-g'
/opt/extras.ubuntu.com/cpu-g/share/cpu-g/distros/ubuntu.png
[Errno 2] No such file or directory: '/sys/class/power_supply/BAT0/charge_now'
[Errno 2] No such file or directory: '/sys/class/power_supply/BAT0/charge_now'
Traceback (most recent call last):
  File "/opt/extras.ubuntu.com/cpu-g/bin/cpu-g", line 42, in <module>
      cpug = CPUG()
  File "/opt/extras.ubuntu.com/cpu-g/share/cpu-g/cpug.py", line 999, in __init__
      self.update_info()
  File "/opt/extras.ubuntu.com/cpu-g/share/cpu-g/cpug.py", line 1318, in update_info
      self.start_battery_updater()
  File "/opt/extras.ubuntu.com/cpu-g/share/cpu-g/cpug.py", line 1346, in start_battery_updater
      self.get_battery_duration()
  File "/opt/extras.ubuntu.com/cpu-g/share/cpu-g/cpug.py", line 1079, in get_battery_duration
      inv.battery_info('charge-now')/1000000) + _(' Ah'))
TypeError: unsupported operand type(s) for /: 'str' and 'int'

答案3

另一种选择是 CPU-X

在 18.04 上,如果您想使用 app-image 而不是 apt,则可能必须使用版本 4.3.1

项目状态:


它看起来与 CPU-G 相似,但不知道是否有任何关系。

它还具有cursesdump模式。

GTK:

CPU-X GTK

终端:

CPU-X 诅咒

相关内容