“google-chrome-stable”和“google-chrome”二进制文件之间的区别

“google-chrome-stable”和“google-chrome”二进制文件之间的区别

我的目录中有两个二进制文件/usr/bingoogle-chromegoogle-chrome-stable。我想知道它们是否属于同一个包。

$ ls /usr/bin/ | grep google
google-chrome
google-chrome-stable

顺便问一下,该使用哪一个?

答案1

在你的情况下,一切都是一样的。google-chrome启动配置的版本,请参见我的答案的末尾。

首先我们开始一个小测试:

% ls -laog /usr/bin/google-chrome       
lrwxrwxrwx 1 31 Mär 17  2015 /usr/bin/google-chrome -> /etc/alternatives/google-chrome

% ls -laog /etc/alternatives/google-chrome
lrwxrwxrwx 1 27 Mär 17  2015 /etc/alternatives/google-chrome -> /usr/bin/google-chrome-stable

如你看到的

/usr/bin/google-chrome

是指向

/etc/alternatives/google-chrome

/etc/alternatives/google-chrome

是指向

/usr/bin/google-chrome-stable

如果你已经安装了 eggoogle-chrome-betagoogle-chrome-stable,你可以启动

sudo update-alternatives --config google-chrome

改变行为,例如在我的例子中

There are 2 choices for the alternative google-chrome (providing /usr/bin/google-chrome).

  Selection    Path                           Priority   Status
------------------------------------------------------------
* 0            /usr/bin/google-chrome-stable   200       auto mode
  1            /usr/bin/google-chrome-beta     150       manual mode
  2            /usr/bin/google-chrome-stable   200       manual mode

Press enter to keep the current choice[*], or type selection number:

答案2

Google-Chrome 稳定版将在公开发布前进行测试并修复错误

更多信息请点击以下链接

https://code.google.com/p/selenium/wiki/ChromeDriver

https://productforums.google.com/forum/#!topic/chrome/zdycfubS1zg

相关内容