Results 1 to 9 of 9

Thread: Google Chrome Install by Terminal

  1. #1
    Join Date
    Apr 2013
    Beans
    262

    Google Chrome Install by Terminal

    Hello All,
    Is it possible to install google Chrome via a command terminal, instead of going to google.com and installing that way?
    Thanks for the help
    Ubuntu 13.04

  2. #2
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,210
    Distro
    Ubuntu Budgie Development Release

    Re: Google Chrome Install by Terminal

    The open source Chromium which Chrome is based on can be installed from the command line, but not Chrome without the source . See Below
    Last edited by Frogs Hair; May 21st, 2013 at 11:28 PM.
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  3. #3
    Join Date
    Apr 2011
    Location
    Mystletainn Kick!
    Beans
    13,616
    Distro
    Ubuntu

    Re: Google Chrome Install by Terminal

    Yep.

    This is dated but should still apply:

    http://www.liberiangeek.net/2011/12/...neiric-ocelot/

    Basically you need to add the chrome repos.
    Then update
    And install
    Splat Double Splat Triple Splat
    Earn Your Keep
    Don't mind me, I'm only passing through.
    Once in a blue moon, I'm actually helpful
    .

  4. #4
    Join Date
    Apr 2008
    Location
    LOCATION=/dev/random
    Beans
    5,767
    Distro
    Ubuntu Development Release

    Re: Google Chrome Install by Terminal

    Code:
    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    sudo dpkg -i google-chrome-stable_current_amd64.deb
    Replace amd64 with i386 if you want the 32-bit version.

    This is exactly the same as downloading it from the website, just using the wget command instead of a browser.
    Cheesemill

  5. #5
    Join Date
    Jul 2005
    Location
    I think I'm here! Maybe?
    Beans
    Hidden!
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Google Chrome Install by Terminal

    Is there some good reason for your wanting to do it that way?

    There is no source code for Google Chrome as it is a proprietary application, so you can not install in that manner, but if you have the google chrome .deb file available to you it is possible to use the terminal to install it with
    Code:
    sudo dpkg -i /path/to/google-chrome.deb
    Chromium, the open source browser on which google-chrome is built, can be installed like any other open source application, of course, ie using the .deb package in terminal as above, using the package manager, or if you wish using the source code from an archive.

  6. #6
    Join Date
    May 2013
    Beans
    5

    Re: Google Chrome Install by Terminal

    Wow i was looking for this thxs

  7. #7
    monkeybrain2012 is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Oct 2012
    Beans
    874

    Re: Google Chrome Install by Terminal

    You don't need to add chrome repo, just grab the deb from Google and right click to install it and that's it. The repo will be automatically created. Some people apparently try to push for Chromium, that is fine but just bear in mind that Chromium is not Chrome, it is stripped down and quite crippled by comparison, it doesn't have the built in pdf browser and updated flash for examples. Chromium is also very outdated.

    If you want to install Chrome on *buntu 13.04, you need to grab libudev0 which is absent from 13.04's repository

    There are download links for this package here.

    http://www.webupd8.org/2013/04/fix-g...talled-in.html

  8. #8
    Join Date
    Dec 2007
    Beans
    12,521

    Re: Google Chrome Install by Terminal

    Quote Originally Posted by monkeybrain2012 View Post
    ...
    If you want to install Chrome on *buntu 13.04, you need to grab libudev0 which is absent from 13.04's repository
    ...
    Hi, that's no longer necessary since Chrome 27 (which has the fix for the missing dependency) is now Chrome stable. I installed it on 13.04 last night without any dependency issue.

  9. #9
    Join Date
    May 2013
    Location
    International water
    Beans
    42
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: Google Chrome Install by Terminal

    try
    Code:
    sudo dpkg -i /path/to/google-chrome.deb

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •