你不能那样做。这是因为所有这些版本(稳定版,beta版和不稳定版)相互冲突。看到:
apt-cache show google-chrome-beta | grep Conflict
Conflicts: google-chrome
现在,google-chrome是Linux发行版的通用名称:
which google-chrome
/usr/bin/google-chrome
我的系统上安装了google-chrome-beta:
dpkg -l | grep google
ii google-chrome-beta 22.0.1229.91-r158759
dpkg -S /usr/bin/google-chrome
google-chrome-beta: /usr/bin/google-chrome
如您所见,我系统上的google-chrome-beta提供了google-chrome二进制文件。如果我安装了稳定器,那么它将由稳定器提供。因此,它们彼此冲突。
如果您尝试通过从Google分发的.deb软件包安装google-chrome-beta,则会看到相同的效果:
sudo LC_ALL=C dpkg --simulate -i google-chrome-beta_current_i386.deb
Selecting previously unselected package google-chrome-beta.
dpkg: regarding google-chrome-beta_current_i386.deb containing google-chrome-beta:
google-chrome-beta conflicts with google-chrome
google-chrome-stable provides google-chrome and is present and installed.
dpkg: error processing google-chrome-beta_current_i386.deb (--install):
conflicting packages - not installing google-chrome-beta
Errors were encountered while processing:
google-chrome-beta_current_i386.deb
我已将Beta的google-chrome-stable更改为,并尝试通过.deb软件包进行安装。
但是我不确定如果可以获取(?)chrome源代码并进行编译,然后尝试通过此已编译的二进制文件运行它,会发生什么情况。也许这对Chromium有用。既然可以下载它的源代码。