你好,我是 Ubuntu Linux 的新手,我已经在我的戴尔 Latitude d600 上安装了它,一切都很顺利、快速,我一直想安装 Google Chrome,我想在 Ubuntu 上使用它,但不幸的是,它不允许我在我的笔记本电脑上安装它。
答案1
请尝试以下操作。
使用此代码32 位系统:
sudo apt-get install libxss1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome*.deb
为了64 位系统使用:
sudo apt-get install libxss1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
这将安装 Google Chrome 所需的库,然后将最新版本的 Chrome 下载到当前工作目录并安装。
运行google-chrome
启动浏览器。
您也可以在此处下载Download Google Chrome
。
答案2
非终端方法
如果你不是终端用户,你可以继续关联并直接下载。
使用终端
步骤1:获取 .deb 安装程序
对于 Google Chrome 32 位版本
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
对于 Google Chrome 64 位版本
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
第2步:安装 Google Chrome
使用此命令安装 Google Chrome,或者您也可以通过双击下载的文件来安装。
如果您希望使用终端命令执行此操作,请使用以下代码
sudo dpkg -i google-chrome*
谷歌浏览器*指的是你安装的文件的全名
sudo apt-get -f install
现在您已成功安装 Google Chrome。在 Unity Dash 中搜索 Chrome 即可启动它。
享受!
您也可以参考我的博客文章这里