当前位置: 代码迷 >> 综合 >> Ubuntu18.04安装indicator-sysmonitor显示CPU、网速(方法同时适用于x86、ARM电脑)
  详细解决方案

Ubuntu18.04安装indicator-sysmonitor显示CPU、网速(方法同时适用于x86、ARM电脑)

热度:92   发布时间:2023-10-18 03:28:09.0

方法一:apt-get安装

sudo add-apt-repository ppa:fossfreedom/indicator-sysmonitor
sudo apt-get update
sudo apt-get install -y indicator-sysmonitor

在应用程序中搜索sys,点击“System Monitor Indicator” 就启动了。

安装 indicator-sysmonitor 时会发现:E: 无法定位软件包 indicator-sysmonitor 的问题出现。
对此可以通过 Github 中的文件进行安装,
使用方法二。

方法二:编译安装

sudo apt-get install python3-psutil curl git gir1.2-appindicator3-0.1
git clone https://github.com/fossfreedom/indicator-sysmonitor.git

(假如git不到文件,请到indicator-sysmonitor 下载解压然后继续以下操作)

cd indicator-sysmonitor
sudo make install

后台运行 

nohup indicator-sysmonitor &

此时标题栏上应该已经显示有CPU及内存信息,右击此部分点击 ‘ preference ’ 可以更改设置
勾选 ‘Run On Startup’ ,开启开机启动功能

在 ‘Advanced’ 设置中可以向 ‘Customize output’ 选项中添加自定义网速部分,如下

cpu: {cpu} mem: {mem}net:{net}

可以通过软件提供的列表自定义添加其他状态显示

如果要 卸载Indicator-Sysmonitor

进入文件目录

cd indicator-sysmonitor

卸载软件

sudo make uninstall


 

  相关解决方案