如何卸载并重新安装 GNOME 3.10?

如何卸载并重新安装 GNOME 3.10?

我安装了 GNOME 3.10。我之前用过 GNOME 3.8,非常喜欢。不幸的是,3.10 似乎出了点问题。所有背景都不起作用,注销和关机按钮也丢失了。

如何卸载并重新安装 GNOME 3.10?我正在运行 Ubuntu 13.04。

我最初是通过以下方式安装的:

sudo add-apt-repository ppa:ricotz/testing
sudo add-apt-repository ppa:gnome3-team/gnome3
sudo add-apt-repository ppa:gnome3-team/gnome3-staging
sudo apt-get update
sudo apt-get install gnome-shell

答案1

试试这个,只需按下键盘上的Ctrl+ Alt+T即可打开终端。打开后,运行以下命令:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:gnome3-team/gnome3-staging
sudo ppa-purge ppa:gnome3-team/gnome3-next

然后重新配置 GDM 或 LightDM,无论你喜欢哪一个

sudo dpkg-reconfigure gdm

或者

sudo dpkg-reconfigure lightdm

如果你没有得到 3.8,那么

sudo add-apt-repository ppa:gnome3-team/gnome3
sudo apt-get update

答案2

您可以通过等号安装软件包的特定版本:

apt-get install <package name>=<version>

但首先您必须通过以下方式找出可用的版本:

apt-cache madison <package name>

例如对于 binutils 包:

# apt-cache madison binutils
  binutils | 2.22-6ubuntu1.1 | http://ch.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
  binutils | 2.22-6ubuntu1.1 | http://security.ubuntu.com/ubuntu/ precise-security/main amd64 Packages
  binutils | 2.22-6ubuntu1 | http://ch.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
  binutils | 2.22-6ubuntu1 | http://ch.archive.ubuntu.com/ubuntu/ precise/main Sources
  binutils | 2.22-6ubuntu1.1 | http://ch.archive.ubuntu.com/ubuntu/ precise-updates/main Sources
  binutils | 2.22-6ubuntu1.1 | http://security.ubuntu.com/ubuntu/ precise-security/main Sources

然后用命令带上其中一个版本号apt-get install,例如:

apt-get install binutils=2.22-6ubuntu1.1

相关内容