我的电脑安装了 Ubuntu 18.04。
它不想启动系统监视器。
这似乎是与操作系统相关的问题。我之前启动过它,它运行良好。可能是由于一些更新,它停止工作了。
我并不是在寻找解决方案。我只是想报告这个问题,并希望这个问题能很快通过更新得到解决。
我想知道其他人是否也遇到与 18.04 相同的问题。
更多信息:
我尝试通过以下方式启动它: Super+ A,打开系统监视器。没有错误。几秒钟后,“加载圆圈”试图让我相信有人试图启动它。但随后它消失了,什么也没发生。
我不确定这是否是从终端打开的命令,但是当我运行时
gnome-system-monitor
,它会告诉我:
/snap/gnome-system-monitor/41/bin/desktop-launch: line 23: /home/sandu/.config/user-dirs.dirs: Permission denied You need to connect this snap to the gnome platform snap. You can do this with those commands: snap install gnome-3-26-1604 snap connect gnome-system-monitor:gnome-3-26-1604 gnome-3-26-1604 (the '3-26-1604' number defines the platform version and might change)
答案1
正如评论所建议的:
snap remove gnome-system-monitor
sudo apt install gnome-system-monitor
对我有用。
答案2
我遇到了同样的问题。gnome-system-monitor
现在可以通过 snap 进行更新,但更新似乎破坏了某些功能,或者没有正确更改所有内容(我真的不知道它为什么停止工作)。
解决方案是重新安装 snap 程序(使用snap
,而不是apt
),如下所示:
snap remove gnome-system-monitor
snap install gnome-system-monitor
这样做将正确安装/连接系统监视器,并且它将再次从图标和终端工作。
答案3
如果sudo snap get gnome-system-monitor
出现错误,则可能是升级过程中出现了问题,因此只需执行以下操作:
sudo apt install --reinstall gnome-system-monitor
然后重新启动。
答案4
某些软件包依赖性问题是否未解决?对于系统监视器,需要软件包 rsyslog(或 rsyslogd?)。
你应该使用以下命令安装它:
sudo apt-get install --reinstall rsyslog
我不确定这现在是否正确,因为这是不久前才需要的。您可以在此处检查进一步的依赖关系:
https://launchpad.net/ubuntu/bionic/+source/gnome-system-monitor
也许有sudo apt-get install --reinstall <package>
帮助,然后重新启动您的机器。