Answers:
google-chrome-stable
在第三方存储库中可用:Google Chrome(用于稳定版)。
请按照说明进行安装:
添加密钥:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
设置存储库:
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
安装包:
sudo apt-get update
sudo apt-get install google-chrome-stable
转到https://www.google.com/intl/zh-CN/chrome/browser/
单击下载,将弹出一个带有一些下载选项的小窗口。
我们需要Ubuntu的“ .deb”。确保选中此框。
注意:Google不再提供Linux的32位版本-至少在2016年2月之前,您只能获得Linux的64位版本
它将为您提供“以...打开”或“保存文件”的选项。“使用...打开”的默认选项是通过“软件安装”打开的。选择此选项。
请稍等片刻,Ubuntu软件中心将打开已下载并准备安装的.deb文件。(我已经安装了chrome)单击安装按钮,系统将提示您输入密码以开始安装。安装时间不超过2分钟。
请享用 ;]
注意:Chrome也将通过正常的Ubuntu更新过程进行更新,因此您可以期望在Ubuntu更新时获取最新版本。
或者,如果您要使用实际的Google Chrome浏览器,请打开一个终端,然后执行以下操作:
cd /tmp
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
32位版本不再可用。
如果遇到任何错误,只需使用
sudo apt-get -f install
要从终端使用它google-chrome
或按超级键并搜索Google
或Chrome
https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
[20264:20264:0201/211304.449159:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Google Chrome与Chromium不同。
Google Chrome和/或Chromium有什么区别?每个优点/缺点是什么?
可以在Ubuntu软件中心找到Chromium。要下载谷歌浏览器,请执行以下操作:
请点击 Download Chrome
选择32 bit .deb
(对于32位Ubuntu)或64 bit .deb
(对于64位Ubuntu)
请点击 Accept and Install
将.deb文件下载到一个文件夹(“ 下载”是默认文件夹)
打开您的下载文件夹。
双击刚刚下载的.deb文件。
这应该启动Ubuntu软件中心。
当它提示您是否要安装Chrome时,只需说“是”即可。
您可以尝试将以下脚本保存到文件中并运行它:
if [[ $(getconf LONG_BIT) = "64" ]]
then
echo "64bit Detected" &&
echo "Installing Google Chrome" &&
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb &&
sudo dpkg -i google-chrome-stable_current_amd64.deb &&
rm -f google-chrome-stable_current_amd64.deb
else
echo "32bit Detected" &&
echo "Installing Google Chrome" &&
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb &&
sudo dpkg -i google-chrome-stable_current_i386.deb &&
rm -f google-chrome-stable_current_i386.deb
fi
它将自动检测您的体系结构并为您的系统安装正确版本的Google Chrome。
您好,Ubuntu Universe的人们,我写了一个用于安装Google chrome 64位的c ++程序,Pandya的回答很相似。我通常会编写程序来处理任何事情,以至于我认为将来可能需要再次做!因此,安装Google-chrome是我做过很多次的事情。
如果尚未安装作为依赖的build-essential或c ++(g ++)开发,则必须先安装它:
:~$ sudo apt-get install build-essential -y
接下来,将本文中的以下程序复制到gedit中,并将其另存为googGt.cpp(将标签页宽度更改为4):
//************************************************************************
// This googGt.cpp is created to install the google-chrome web browser
// on Ubuntu 14.04 lts 64 bit.
// author@GWade
//************************************************************************
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <locale>
using namespace std;
void PrntGoogPpa(ofstream& googPpa);
void PrntGoogGtr(ofstream& googGtr);
void PrntGoogLst(ofstream& gogLst);
int main()
{
cout << "Creating the script that adds google-chrome PPA\n" <<endl;
// create the googPpa.sh shell script
ofstream googPpa;
googPpa.open("googPpa.sh");
PrntGoogPpa(googPpa);
googPpa.close();
cout << "Changing the mode of access to executable on the script\n" << endl;
// change mode of access to executable
system("chmod +x googPpa.sh");
cout << "Excuting and installing the Google-Chrome Web Browser\n" << endl;
system("./googPpa.sh");
// create an ofstream object and call the function
cout << "Creating the script that installs google-chrome\n" << endl;
ofstream googGtr;
googGtr.open("googGt.sh");
PrntGoogGtr(googGtr);
googGtr.close();
cout << "The googGt.sh script has been created\n" << endl;
cout << "Changing the mode of access to executable on the script\n" << endl;
system("chmod +x googGt.sh");
cout << "Excuting and installing the Google-Chrome Web Browser\n" << endl;
system("./googGt.sh");
system("rm -rf /etc/apt/sources.list.d/google-chrome.list");
ofstream googLst;
googLst.open("/etc/apt/sources.list.d/google-chrome.list");
PrntGoogLst(googLst);
googLst.close();
}
void PrntGoogPpa(ofstream& googPpa)
{
googPpa << "#! /bin/bash\n\nUPD=\"updatedb\"\n" << endl;
googPpa << "wget -q -O - "
<< "https://dl-ssl.google.com/linux/linux_signing_key.pub"
<< " | sudo apt-key add -" << "\n" << endl;
googPpa << "echo \"deb http://dl.google.com/linux/chrome/deb/ stable main\""
<< " >> /etc/apt/sources.list.d/google.list\n\n$UPD\n\nexit" << endl;
}
void PrntGoogGtr(ofstream& googGtr)
{
googGtr << "#! /bin/bash\n\nAPGTN=\"apt-get install\"" << endl;
googGtr << "APUPD=\"apt-get update\"\nUPD=\"updatedb\"\n" << endl;
googGtr << "$APUPD\n\n$APGTN google-chrome-stable -y\n" << endl;
googGtr << "$UPD\n\nexit" << endl;
}
void PrntGoogLst(ofstream& googLst)
{
googLst << "### THIS FILE IS AUTOMATICALLY CONFIGURED ###" << endl;
googLst << "# You may comment out this entry, but any other modifications"
<< " may be lost." <<endl;
googLst << "# deb http://dl.google.com/linux/chrome/deb/ stable main" <<endl;
}
它仅是一些函数抽象就没什么了不起的。它非常容易遵循。复制并保存程序后,可从命令行进行编译:
:~$ g++ googGt.cpp
这将在工作目录中创建一个a.out。接下来获得root特权并执行程序。
获得根特权:
:~$ sudo bash
执行新创建的二进制文件:
:~# ./a.out
这个过程非常简单,首先添加google PPA,然后更新软件源,然后安装google-chrome,最后但并非最不重要的一点是,它注释掉了google-chrome.list网址,因此它不会更新32位版本以及后续apt-get更新中的64位。现在,您将拥有以下脚本:1)添加googPpa.sh的脚本和2)安装google-chrome(googGt.sh)的脚本。
去UBUNTU!
sudo apt-get install chromium
。我认为这样更容易安装!另请参阅:Chrome和Chromium有什么区别?