我正在尝试使用 gnome tweak 安装主题,我需要安装gnome-shell-extensions-user-theme
,否则我将看不到 shell 扩展选项卡。但是,我无法安装 shell 扩展。我尝试通过添加以下内容的 PPA 进行安装:
sudo add-apt-repository ppa:webupd8team/gnome3
然后,
sudo apt-get update
最后,当我尝试安装时:
sudo apt-get install gnome-shell-extensions-user-theme
它给出了一个错误:
The following packages have unmet dependencies:
gnome-shell-extensions-user-theme : Depends: gnome-shell-extensions-common but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
我确信该软件包存在问题。因此我继续尝试从网站安装扩展: https://extensions.gnome.org/
但即使我使用的是 Firefox (15.0),我也看不到安装扩展的“开关”。可能是 Firefox 版本太新了。
您知道有什么解决方法吗?
(顺便说一下,我使用的是刚刚下载并安装的 Ubuntu 12.04。)
答案1
我知道有点晚了,但是如果你去 Ubuntu 软件中心并搜索 Gnome Shell 通用包(gnome-shell-common),它会安装这里所需的所有通用文件。
请注意:由于用户主题扩展的源文件是由 gnome-shell 安装所包含的源存储库之外的一方提供和修改的,因此无法保证兼容性。
答案2
首先通过以下方式将其完全删除 -
sudo add-apt-repository --remove ppa:webupd8team/gnome3
sudo apt-get purge gnome-shell-extensions-user-theme
尝试以下命令 -
sudo apt-get update
sudo apt-get dist-upgrade
看来问题出在你的下载损坏了,所以使用 -
sudo apt-get install -f
然后尝试gnome-shell-extensions-user-theme
再次安装
sudo add-apt-repository ppa:webupd8team/gnome3
sudo apt-get update
sudo apt-get install gnome-shell-extensions-user-theme
希望它能起作用。如果仍然有问题,请尝试按如下方式手动安装-
从这里下载 gnome-shell-extensions然后安装它。
或者使用这一行命令安装 gtk 3.8.3.10 -
cd ~ && mkdir -p .blumixinstall && cd .blumixinstall && wget https://github.com/rhoconlinux/Blumix/archive/master.zip && unzip master.zip && cd Blumix-master/ && sudo cp -a Blumix/ /usr/share/themes/ && gsettings set org.gnome.desktop.interface gtk-theme "Blumix" && gsettings set org.gnome.desktop.wm.preferences theme "Blumix" && rm -Rf ~/.blumixinstall && cd ~
答案3
添加 PPA 并更新存储库后,运行以下命令,
sudo aptitude install gnome-shell-extensions-user-theme