我如何降级谷歌浏览器?


11

大概是更新后,谷歌浏览器在页面渲染方面存在非常严重的问题。我想降级。(切换到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

在可以使用谷歌浏览器的计算机上:

$ 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。并且Google网站上没有旧的.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的存档?


似乎以前的版本在存储库中不可用。因此,请尝试下载先前版本的deb文件并通过dpkg -i命令进行安装。
Avinash Raj

6
“切换到vmlinuz.old和initrd.img.old没有帮助”-为什么会有?这就像穿上昨天的裤子,因为今天早上汽车不会开动。
奥利(Oli)

问题是我不知道从哪里下载该.deb文件。
18446744073709551615 2014年

1
@Oli哪个组件为图形输出提供了底层功能?chrome的问题在于,当我打开/重新加载/滚动/调整窗口大小时,看到的矩形无法刷新。
18446744073709551615 2014年

Answers:


8

可以在以下位置找到旧版google chrome版本的存档:

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

不幸的是,google-chrome会告诉您其中的内容~/.config/google-chrome来自较新版本。我将这个目录重命名为google-chrome_newer希望在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-稳定/

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


5

在第二台计算机上

  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
    
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.