如何降级 Google Chrome?

如何降级 Google Chrome?

大概是更新后,Google Chrome 的页面渲染出现了非常严重的问题。我想降级它。(切换到,vmlinuz.oldinitrd.img.old没有帮助)。

$ apt-cache policy google-chrome-stable
google-chrome-stable:
  Installed: 35.0.1916.153-1
  Candidate: 35.0.1916.153-1
  Version table:
 *** 35.0.1916.153-1 0
        500 http://dl.google.com/linux/chrome/deb/ stable/main i386 Packages
        100 /var/lib/dpkg/status

在 Google Chrome 正常运行的计算机上:

$ apt-cache policy google-chrome-stable
google-chrome-stable:
  Installed: 34.0.1847.132-1
  Candidate: 35.0.1916.153-1
  Version table:
     35.0.1916.153-1 0
        500 http://dl.google.com/linux/chrome/deb/ stable/main amd64 Packages
 *** 34.0.1847.132-1 0
        100 /var/lib/dpkg/status

(如果我在第二台计算机上有 .deb,一切都会变得更容易。但是没有 .deb。而且谷歌网站上也没有旧的 .deb。)

所以我尝试:

$ sudo aptitude install google-chrome-stable=34.0.1847.132-1
Unable to find a version "34.0.1847.132-1" for the package "google-chrome-stable"
Unable to find a version "34.0.1847.132-1" for the package "google-chrome-stable"
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

你看,它不起作用。Synaptic 管理器也没有显示我可以设置的版本。

那么,如何降级 google-chrome-stable?

也许有人知道旧的 google-chrome .deb 的档案?

答案1

旧版 Google Chrome 的存档可在此处找到:

http://mirror.pcbeta.com/google/chrome/deb/pool/main/g/google-chrome-stable/

不幸的是,google-chrome 会告诉你里面的内容~/.config/google-chrome来自较新的版本。我将此目录重命名为,google-chrome_newer希望在 chrome 的问题修复后可以返回到该目录。

编辑 新版本中这些东西没有问题,只需按“确定”即可。我担心 chrome 永远无法修复。

编辑2

mirror.pcbeta.com 现在无法使用。照常,您可以使用https://archive.org/web/

感兴趣页面的直接链接是: https://web.archive.org/web/20160322044606/http://mirror.pcbeta.com/google/chrome/deb/pool/main/g/google-chrome-stable/

如果您在连接 web.archive.org 时遇到问题,例如“找不到 DNS 地址”,请尝试使用 TOR 浏览器(可能具有其“此站点的新 TOR 电路”功能,Ctrl+Shift+L)。

答案2

在你的第二台电脑上

  1. 你的 deb 文件位于:

    /var/cache/apt/archives
    
  2. 如果没有,请通过以下方式重新安装:

    sudo apt-get install google-chrome-stable=34.0.1847.132-1
    
  3. 之后通过以下方式升级:

    sudo apt-get dist-upgrade
    

在您的第一台计算机上:

  1. 传输文件并通过以下方式安装:

    dpkg -i your.deb
    
  2. google-chrome-stable并通过以下方式暂停包裹

    sudo apt-mark hold google-chrome-stable
    

答案3

如果您想用旧版本覆盖新版本,请按照以下步骤操作:

首先,转到 Ubuntu 更新并选择要安装的版本的完整版本字符串。只需复制并粘贴版本字符串,不要从此第三方网站下载任何软件包!

现在直接从 Google 的下载服务器下载旧版本:

$ VERSION_STRING="85.0.4183.121-1" # Replace this value with the one you copied earlier
$ wget "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${VERSION_STRING}_amd64.deb"
$ sudo dpkg -i "google-chrome-stable_${VERSION_STRING}_amd64.deb"
$ rm -i "google-chrome-stable_${VERSION_STRING}_amd64.deb"

相关内容