几天前,我安装了 Ubuntu 的 regolith Linux 补丁,但不喜欢它,所以决定使用命令将其删除:
sudo apt remove regolith-desktop
sudo add-apt-repository --remove ppa:kgilmer/regolith-stable
后来又使用
dconf reset -f /
现在桌面恢复正常,但我似乎无法通过终端安装任何其他软件
我在终端上收到错误消息
Do you want to continue? [Y/n] y
(Reading database ... 225536 files and directories currently installed.)
Removing regolith-gdm3-theme (1.03-1ubuntu1) ...
update-alternatives: error: alternative path /usr/share/gnome-shell/theme/ubuntu.css doesn't exist
dpkg: error processing package regolith-gdm3-theme (--remove):
installed regolith-gdm3-theme package post-removal script subprocess returned error exit status 2
Errors were encountered while processing:
regolith-gdm3-theme
E: Sub-process /usr/bin/dpkg returned an error code (1)
任何帮助,将不胜感激
答案1
很抱歉我的错误给您造成了困难,Param Deshpande。这个错误昨天已经修复了,所以如果您可以更新软件包并获取最新版本,那么您应该能够完全卸载所有 Regolith 软件包。如果这不起作用,并且您在 Hamish Downer 的建议之后仍然遇到问题,请告诉我(kgilmer@gmail.com),我将直接与您合作修复它,或者在此处提交问题:https://github.com/regolith-linux/regolith-desktop/issues
答案2
我不太清楚,但我最近读到这篇关于 regolith linux 的文章在“卸载 Regolith Desktop”部分中,它写道:
我测试了在 Ubuntu 19.04 上卸载桌面,基本上一切顺利。但我遇到了一个错误,GDM3 文件夹中缺少 ubuntu.css 文件。我通过克隆 gnome-shell.css 并将其重命名为 ubuntu.css 解决了这个问题。
我找到了这些文件,/usr/share/gnome-shell/theme/
因此我猜测在终端中修复的说明是:
cd /usr/share/gnome-shell/theme/
ls
这将显示是否有 的副本ubuntu.css
。如果没有,您可以执行以下操作:
sudo cp gnome-shell.css ubuntu.css
祝你好运。