如何从命令行安装Google Chrome


19

我想做类似的事情:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

除了下载OS X版本(从URL)并从命令行安装。可以在此处找到在Ubuntu上安装Google Chrome的相应说明。我搜索过很多次,谷歌似乎没有在任何地方提供该链接。

我正在尝试编写一个脚本来自动化我的OS X标准应用程序的安装。我已经使用像这样的一组脚本来设置我的Ubuntu盒子。具体来说,我似乎找不到Google Chrome OS X 64位直接下载的URL。


编辑,最终解决方案:

wget https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg
open ~/Downloads/googlechrome.dmg
sudo cp -r /Volumes/Google\ Chrome/Google\ Chrome.app /Applications/

Answers:



10

我已经使用过这样的脚本从磁盘映像复制应用程序:

temp=$TMPDIR$(uuidgen)
mkdir -p $temp/mount
curl https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg > $temp/1.dmg
yes | hdiutil attach -noverify -nobrowse -mountpoint $temp/mount $temp/1.dmg
cp -r $temp/mount/*.app /Applications
hdiutil detach $temp/mount
rm -r $temp
  • 如果没有-mountpointdmg,则将其安装到目录/Volume/Google\ Chrome/
  • -nobrowse 在Finder中不显示音量。
  • 如果dmg拥有许可协议,请yes |跳过该协议。
  • cp默认保留扩展属性(包括资源派生)和ACL。据我所知,复制应用程序捆绑包不再需要同上。

或使用冲泡桶

brew install brew-cask
brew cask install google-chrome

brew-cask 默认情况下将应用程序安装到/opt/homebrew-cask/Caskroom/并创建别名~/Applications/


2
+1提及酿造桶,这对于改善自制啤酒非常有用。
dgh

3

brew cask install google-chrome 如果您有自制软件,也可以使用。

(它与最终解决方案基本上具有相同的作用)


1
这不是brew cask install google-chrome吗?
daemon12

哇错过了。谢谢!
mrgnw

1
“如果有自制brew-cask酒”,但我还需要(酿造啤酒桶)吗?
Daniel Springer

0

我对能够下载其任何分支感兴趣。如果查看该https://www.google.com/chrome/assets/common/js/chrome-installer.min.js文件,将看到所需的链接。这是节选。

Pn(a,"win64")?"/update2/installers/ChromeStandaloneSetup64.exe":"/update2/installers/ChromeStandaloneSetup.exe":"/update2/installers/ChromeSetup.exe";else if(Wn(a))if(a.sb)a="/chrome/mac/beta/GoogleChrome.dmg";else if(a.ta)a="/release2/q/canary/googlechrome.dmg";else if(a.Sa)a="/chrome/mac/dev/GoogleChrome.dmg";else{a="GGRO";var b=new Y(location.href),b=qk(b,"brand");if(b=b.length&&b[0])for(var c=0,d=Gn.length;c<d;c++){var f=Gn[c],h=f.ki;if(f.Vj.test(b)){a=h;break}}a=pa("/chrome/mac/stable/%s/googlechrome.dmg",a)}else a=Xn(a)?An[a.Bj+(a.sb?"-b":a.Sa?"-d":"")]:"/update2/installers/ChromeSetup.exe";return a}e.Rr=function(a){this.sm=a};

从上面的缩小代码中进行简单搜索可以看到,您将找到应该与https://dl.google.com/chrome/串联的链接的最后一半


0

安装Google Chrome的方法是通过单击并安装手动下载并安装。下载适当的Google Chrome Deb软件包。然后sudo dpkg -i。...添加密钥。设置存储库。更新包。安装Chrome。

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.