Google chrome linux pubkey

How to install Chrome browser properly via command line?

And then «Y» for the Y/n question. But the installation threw errors. Does someone see anything wrong with the commands I issued?

7 Answers 7

Google Chrome is not in the repositories because it is proprietary, however Chromium(the open source platform Chrome is built upon) is.

These are the instructions to install Chrome on a 64 bit Linux distribution as that architecture is the only one Chrome supports.

To install Google Chrome, run the following:

sudo apt-get install libxss1 libappindicator1 libindicator7 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt install ./google-chrome*.deb 

If error messages pop up after running the command sudo apt install ./google-chrome*.deb then run the command

I get this an ERROR 404 with these instructions. I installed using @David E. Moore instructions listed below. Not sure if adding the libxss1 helped with Mr Moore’s instruction or not but I did do that before. This was on a fresh install on 13.10 Unity amd64 install.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' sudo apt-get update sudo apt-get install google-chrome-stable 

after following the steps, when i run the command sudo apt-get install google-chrome-stable, «Unable to locate package google-chrome-stable»

Perhaps you are using a 32-bit Ubuntu when only 64-bit is supported now, as suggested by askubuntu.com/a/853130/28107.

If you really want to install Chrome (not Chromium) using apt-get it’s possible as explained here:

    Add google repository to your sources, that is, create a new file under /etc/apt/sources.list.d with the following contents:

deb http://dl.google.com/linux/chrome/deb/ stable main 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
sudo apt-get install google-chrome-stable 

Note: instead of google-chrome-stable you can also install either google-chrome-beta or google-chrome-unstable packages from the same repository.

Well, the problem with this is that when you install Chrome, in theory it’ll break, because Chrome’s postinstall script does this for you. 🙂

I’d say that the name of the file isn’t really important (not sure about the extension though). I’d name it google.list , but it could be chrome.list or some other random name not being already used.

@jrg I decided to give it a try and what I found is that indeed Chrome packaging scripts add a new file under /etc/apt/sources.list.d . The result of this is that Chrome installation didn’t fail, but apt-get update now prints a «duplicate sources.list entry» warning; so, yes, this method shouldn’t be used unless you want to fix the sources files later.

Читайте также:  Linux console get version

Here are the relevant instructions on the Google PPA page. Some of the details are now a bit different and so the above answer should be updated accordingly.

If you are running a 64 Bit system, then use this:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 
sudo dpkg -i ./google-chrome*.deb 

This is the same as jrg’s reply, but you change the i386.deb to amd64.deb.

EDIT: The past couple of times I have not had to do the install -f. It seems to have all needed after installing.

Jorge added this to the accepted answer above. I guess I should of thought of that. Makes the answer more complete now.

I think my answer is outdated. I’ve used the answer above mine (at this time) by @Dale E. Moore and had successful installs.

Your answer is not outdated. The google-chrome-stable_current_amd64.deb will remain current (by its namesake) as long as it’s being maintained and updated by Google. On rare occasions, just like any manual install, you might have to use the install -f option. But as of Ubuntu 18.04, it installs the absolute latest Chrome update and configures it to be automatically flagged for regular updates when they are available. The two commands are the cleanest and easiest method of a fresh install of Google Chrome.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' sudo apt-get update sudo apt-get install google-chrome-stable 

that’s correct code for ubuntu 🙂

If you want the official Google Chrome build, you have to download it from here: Download Google Chrome.

I believe only Chromium is in the repository.

If you want Google Chrome, just search it in google. If you want Chromium add this ppa:

sudo add-apt-repository ppa:chromium-daily/stable sudo apt-get update sudo apt-get install chromium-browser 

And that’s it. Enjoy your browser.

What PPA should be added? If you cannot answer this question now you can delete your answer, and gain back 2 rep.

Источник

Linux Software Repositories

Google’s Linux packages are signed with GNU Privacy Guard (GPG) keys. Google’s packages will automatically configure your package manager to verify product updates with the public signing key, but you may also install it separately if, for instance, you want to verify the integrity of an initial package download. Follow the instructions below to manually configure your package manager to use the keys.

Key Details

  • Key ID: Google, Inc. (Linux Package Signing Authority)
    Fingerprint: EB4C 1BFD 4F04 2F6D DDCC EC91 7721 F63B D38B 4796
    Status: Active (Primary)
  • Key ID: Google, Inc. Linux Package Signing Key
    Fingerprint: 4CCA 1EAF 950C EE4A B839 76DC A040 830F 7FAC 5991
    Status: Obsolete
Читайте также:  Gta 5 linux epic games

Command line key installation for APT

On an APT-based system (Debian, Ubuntu, etc.), download the key and then use apt to install it.

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

Recent versions of apt-get will automatically attempt to verify packages on download. If an appropriate key is not found or if the package is corrupted, you will get a message like the following:

WARNING: The following packages cannot be authenticated!
packagename

Command line key installation for RPM

On an RPM-based system (Fedora, SUSE, Mandriva, RHEL, etc.), download the key and then use rpm to install it.

wget https://dl.google.com/linux/linux_signing_key.pub
sudo rpm --import linux_signing_key.pub

You can verify the key installation by running:

NOTE: From early 2023 onward, all Linux RPM packages are signed with periodically rotated subkeys of the 0xD38B4796 signing key. The 0x7FAC5991 signing key is obsoleted by this change.

To manually verify an RPM package, you can run the command:

rpm --verbose --checksig -v packagename.rpm

Источник

ROSAForum

Здравствуйте. R9/64 Plasma.
Есть необходимость установить google chrome.
Пакетом все понятно.
А если репозиторий? Вернее, как добавить репозиторий тоже понятно, а вот ключ выдает ошибку:

# rpm --import https://dl-ssl.google.com/linux/linux_signing_key.pub error: https://dl-ssl.google.com/linux/linux_signing_key.pub: ошибка чтения во время импортирования(-1).

VictorR2007 Сообщения: 7075 Зарегистрирован: 12 сен 2011, 13:00 Operating system: ROSA 2023.1 Откуда: Северодвинск

Re: Ключ репозитория google chrome

Сообщение VictorR2007 » 20 сен 2017, 20:50

А вроде всё не так.
Тут https://www.google.com/chrome/browser/d . index.html
нужно нажать и выбрать потом вторую строку с rpm.

Re: Ключ репозитория google chrome

Сообщение notauser » 20 сен 2017, 22:39

При установке пакета Вам вроде должны добавить репозиторий и ключ . Возможно всё уже есть. Как и кто это можно использовать и контролировать потом — вопрос.

mexx400 Сообщения: 660 Зарегистрирован: 13 окт 2013, 16:06 Operating system: Debian Откуда: Москва

Re: Ключ репозитория google chrome

Сообщение mexx400 » 21 сен 2017, 12:42

VictorR2007 писал(а): Тут https://www.google.com/chrome/browser/d . index.html
нужно нажать и выбрать потом вторую строку с rpm

# urpmi google-chrome-stable_current_x86_64.rpm warning: google-chrome-stable_current_x86_64.rpm: Заголовок V4 DSA подпись: NOKEY, key ID 7fac5991 Следующий пакет имеет неверную подпись: google-chrome-stable_current_x86_64.rpm: Неверная подпись (NOT OK (no key): google-chrome-stable_current_x86_64.rpm: Заголовок V4 DSA подпись: NOKEY, key ID 7fac5991) Продолжить установку? (y/N)

Если установить пакет, в менеджере источников ничего не меняется, а в менеджере пакетов появляется только один этот пакет stable. Если добавить репозиторий google «руками» — он появляется в менеджере источников, а в менеджере пакетов появляются разные пакеты. Но:

# rpm --import https://dl-ssl.google.com/linux/linux_signing_key.pub error: https://dl-ssl.google.com/linux/linux_signing_key.pub: ошибка чтения во время импортирования(-1). 

Я, наверное, просто чего-то базового не знаю. Или не так спросил.
Возможно ли в ROSA добавить сторонний репозиторий и ключ к нему? Как ставить ключ?
Я исходил из:

# rpm --help Использование: rpm [ПАРАМЕТР. ] *** --import импортировать открытый ключ

Кстати, какая утилита будет использоваться по умолчанию для скачивания? wget? Как изменить на, например, curl?

Читайте также:  Установка драйверов устройства linux

Источник

Ошибка при установке google chrome в rosa linux

Здравствуйте! Сейчас тестирую rosa linux для последующей установки родителям. И при установке rpm-пакета google chrome через dnf возникает следующие ошибки:

ошибка: пакет gpg-pubkey-d38b4796-570c8cd3 не установлен

ошибка: пакет gpg-pubkey-d38b4796-570c8cd3 не установлен

ошибка: пакет gpg-pubkey-d38b4796-570c8cd3 не установлен

ошибка: can’t create транзакция lock on /var/lib/rpm/.rpm.lock (Ресурс временно недоступен)

ошибка: /tmp/google.sig.jaRtXL: key 1 import failed.

ошибка: can’t create транзакция lock on /var/lib/rpm/.rpm.lock (Ресурс временно недоступен)

ошибка: /tmp/google.sig.jaRtXL: key 2 import failed.

После этого сообщается, что установка завершена успешнои браузер открывается. Понятия не имею, стоит ли из-за этого волноваться, поскольку всегда пользуюсь firefox, с которым таких ошибок не возникало.

Пакет браузера из репозитария или откуда?

А не лучше ли будет поставить им Chrome OS Flex?

А не лучше ли будет поставить им Chrome OS Flex?

Чтобы ещё больше проблем и без того сложным родителям было? А отвыкать от Chrome OS они как будут?

Не так уж просто пересадить с привычного Windows-подобных окружений (или с самого оффтопика) на мобильно-домашнее окружение в Chrome OS, а потом заставлять их читать Googl’овские инструкции по использованию.

Сейчас тестирую rosa linux для последующей установки родителям.

Если не секрет, то почему именно Rosa Linux, а не любой другой, более домашний дистрибутив Linux? Linux Mint отлично бы подошёл, проблем с ним намного меньше.

И при установке rpm-пакета google chrome через dnf возникает следующие ошибки:

ошибка: пакет gpg-pubkey-d38b4796-570c8cd3 не установлен

Ничего страшного не произойдёт, Google Chrome полностью установлен. Соответствующий пакету GPG (Хабр) не был установлен, если необходимо установить GPG, то нужно скачать соответствующий пакету ключ ( gpg-pubkey.asc ), а затем импортировать его в систему:

sudo rpm --import gpg-pubkey.asc 

Полее подробно об импорте публичных ключей написано здесь — Импорт публичного ключа (OpenNET).

ошибка: can’t create транзакция lock on /var/lib/rpm/.rpm.lock (Ресурс временно недоступен)

ошибка: /tmp/google.sig.jaRtXL: key 1 import failed.

Опять же, если тебе это действительно нужно (хотя я не могу представить, зачем тебе этим нужно заниматься), то можно удалить .rpm.lock (расположен в /var/lib/rpm/.rpm.lock ), перезагрузить компьютер и, затем, после перезагрузки, сделать dnf update и установить каждый пакет по очереди (устанавливать по одному пакету за раз).

После этого сообщается, что установка завершена успешнои браузер открывается.

Вообще, правильно будет скачать rpm-пакет с сайта Get Chrome (у меня сайт на английском языке):

  • Кликнуть на «Download Chrome».
  • Кликнуть на самую последнюю ссылку — «full list of supported operating systems».
  • Кликнуть на «Linux».
    • Поставить галочку на «64 bit .rpm (For Fedora/openSUSE)»

    После нажатия на «Accept and Install», пойдёт скачивание rpm-пакета — «google-chrome-stable_current_x86_64.rpm».

    Затем установить пакет обычным способом:

    sudo dnf install ~/Downloads/google-chrome-stable_current_x86_64.rpm 

    Источник

Оцените статью
Adblock
detector