Package Details: google-chrome 136.0.7103.113-1

Git Clone URL: https://aur.archlinux.org/google-chrome.git (read-only, click to copy)
Package Base: google-chrome
Description: The popular web browser by Google (Stable Channel)
Upstream URL: https://www.google.com/chrome
Keywords: chromium
Licenses: custom:chrome
Submitter: None
Maintainer: gromit
Last Packager: gromit
Votes: 2277
Popularity: 12.19
First Submitted: 2010-05-25 20:25 (UTC)
Last Updated: 2025-05-14 19:12 (UTC)

Dependencies (12)

Sources (3)

Pinned Comments

gromit commented on 2023-04-15 08:22 (UTC) (edited on 2023-05-08 21:42 (UTC) by gromit)

When reporting this package as outdated make sure there is indeed a new version for Linux Desktop. You can have a look at the "Stable updates" tag in Release blog for this.

You can also run this command to obtain the version string for the latest chrome version:

$ curl -sSf https://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages | \
     grep -A1 "Package: google-chrome-stable" | \
     awk '/Version/{print $2}' | \
     cut -d '-' -f1

Do not report updates for ChromeOS, Android or other platforms stable versions as updates here.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 32 Next › Last »

koshikas commented on 2021-08-28 05:04 (UTC)

so the latest in chrome video acceleration saga is, having merely --enable-features=VaapiVideoDecoder may not be enough. i'm on X11 and to get video acceleration functional, i need addition switch;

--disable-features=UseOzonePlatform.

ozone platform is enabled by default as of late in chrome, and for some reason disables video acceleration atleast on X11.

jfabernathy commented on 2021-08-24 10:14 (UTC) (edited on 2021-08-26 13:14 (UTC) by jfabernathy)

I'm trying to use Chrome to play streaming services videos. I can do Netflix, Amazon Prime Video, but not SlingTV. I can do it on the version of Google Chrome that you get from Google directly as a .deb and install in *buntu linuxes, but not the Arch AUR version. Any ideas what's missing?

This hardware involved is Intel NUC 1165G7 Iris GFX

koshikas commented on 2021-08-07 15:09 (UTC)

@bulletmark, @kamilst96, @Nek.12, @hendry

i had my flags(set by the internal experimental flags) cease to function since 90. i could only enable hardware video acceleration by including flags in the .desktop (~/.local/share/applications/google-chrome.desktop) entry file under every Exec key;

Exec=/usr/bin/google-chrome-stable %U --enable-features=VaapiVideoDecoder

i suggest you try with your relevant flags

hendry commented on 2021-08-07 12:55 (UTC)

Video decode with vulkan on my T14s AMD GPU also doesn't work :/

https://s.natalian.org/2021-08-07/vulkan-disabled.png

<deleted-account> commented on 2021-08-06 12:16 (UTC)

Have the same issue as @kamilst96. Chrome ingores flags in chrome-flags.conf. Confirmed by the page chrome://version

kamilst96 commented on 2021-08-04 18:48 (UTC)

Starting with Chrome 92, accelerated video decoding doesn't work with NVIDIA 470.57 driver - the image just smears on the screen. Anyone?

Relevant flags:

--enable-accelerated-video-decode

--enable-features=VaapiVideoDecoder

bulletmark commented on 2021-08-03 22:56 (UTC)

A trap with new version 92+ is that it does not ignore commented out options in ~/.config/chrome-flags.conf anymore.

akiirui commented on 2021-08-03 18:35 (UTC)

92.0.4515.131-1 works with systemd-resolved.

But this issue still exists: https://aur.archlinux.org/packages/google-chrome/?O=20&PP=10#comment-818179

meirg commented on 2021-08-03 14:06 (UTC)

Latest build is working now for me also with nothing downgraded or disabled

zelimir commented on 2021-08-03 06:28 (UTC)

@JoveYu Yes, it looks like it's working fine, for me anyway.

JoveYu commented on 2021-08-03 05:53 (UTC)

any one try new version 92.0.4515.131-1?

andrej commented on 2021-08-01 02:31 (UTC) (edited on 2021-08-01 02:41 (UTC) by andrej)

For some reason the current version doesn’t work at all on my desktop. No pages are loaded, just loading forever. There is no error message explaining what’s wrong. Also, all signs of hardware acceleration are switched off in chrome://gpu. Chromium works fine (and so do other browsers).

EDIT: google-chrome-beta has no such issue.

(BTW, the ideas around disabling systemd-resolved below are bad ideas. :-) Just sayin'.)

warmos commented on 2021-07-31 14:11 (UTC)

I can at least confirm that disabling systemd-resolved got me google-chrome running again

debohman commented on 2021-07-31 00:21 (UTC)

The simplest way is to just reinstall the old package with pacman. If you cd to the google-chrome repository on your system, you should see the older packages.

Just do (e.g.):

% sudo pacman -U google-chrome-91.0.4472.114-1-x86_64.pkg.tar.zst

Frnco commented on 2021-07-31 00:13 (UTC)

Downgrading is a very poor solution but does work.

1202's comment worked like a charm to me, so I made a one-liner in Bash that does it all, only asking for confirmation before removing the folder at the end, to ensure the one-liner has zero chances of deleting anything that shouldn't be deleted even if you mess with the environment variable (provided of course you use the same variable in the echo that asks for confirmation and in the rm command that actually deletes stuff). The Uppercase I in the rm is the option that prompts you for confirmation before deleting anything, while the lowercase r makes it recursive so it deletes the directory together with all its contents. The -c option in wget makes it try to continue the download if it failed previously, not strictly necessary but can help in some situations, while the -O - option means "output (-O) to stdout (-)", which pipes the contents of the file to stdout and we then pipe it into tar -xz (No need for the f option as there's no file, and the v option we usually include is just for verbosity which we also don't need. Then we cd into the folder, install using makepkg -si --boconfirm. Here -s syncs the deps and -i installs the package, while --noconfirm skips asking for confirmation, then we cd out of the folder, and finally ask the user for permission to remove the folder, which doubles as a way to make doubly sure nothing is removed by mistake.

$ hashedName=aur-710114824f61f1468346d7de4072dc041fac8177; wget -c https://aur.archlinux.org/cgit/aur.git/snapshot/$hashedName.tar.gz -O - | tar -xz && cd $hashedName && makepkg -si --noconfirm && cd .. && echo "Please confirm removal of folder $hashedName" && rm -rI $hashedName

If like me you use Fish Shell, setting the environment variable has to be done using Fish syntax, which is one of the reasons I included confirmation before removing anything, because when I was starting to use Fish I did run into problems when trying to run commands that I used without problem in bash but in Fish my environment variables were completely ignored and interpreted as empty strings.

Call it a trauma but yeah just to make thrice sure nobody ends up deleting anything by accident, here's a version that works in Fish Shell:

$ set hashedName aur-710114824f61f1468346d7de4072dc041fac8177; wget -c https://aur.archlinux.org/cgit/aur.git/snapshot/$hashedName.tar.gz -O - | tar -xz && cd $hashedName && makepkg -si --noconfirm && cd .. && echo "Please onfirm removal of folder $hashedName" && rm -rI $hashedName

If you think of a simpler way that is clearer than this and as simple to copy-paste it, please do tell.

1202 commented on 2021-07-30 09:51 (UTC)

Disabling systemd-resolved does not work for me, it messes with my other network connections. I downgraded to the latest version 91: wget https://aur.archlinux.org/cgit/aur.git/snapshot/aur-710114824f61f1468346d7de4072dc041fac8177.tar.gz then tar -zxvf aur-..., cd aur-... and makepkg -si.

b1tninja commented on 2021-07-29 18:07 (UTC)

You will have to disable systemd-resolved or downgrade to a systemd < 249 until version 93. https://bugs.chromium.org/p/chromium/issues/detail?id=1221442

Messing with /etc/nssswitch.conf may be another option

redsolja commented on 2021-07-29 13:10 (UTC)

Google Chrome crashes/hangs, when using a default/vanilla Arch Linux system, with systemd-resolved enabled.

This should be fixed, as many of us use systemd-resolved.

Tyrin.price commented on 2021-07-23 02:07 (UTC)

My problem was resolved when I stopped and disabled dhcpcd.service ... that service is not needed for my setup.

nallekarhu commented on 2021-07-22 01:53 (UTC)

@koshikas Yeah, I'm not surprised, after all this is not your normal run of the mill git package.

FWIW, I have no problems with "google-chrome 92.0.4515.107-1" and systemd 249 after disabling systemd-resolved.

koshikas commented on 2021-07-22 01:07 (UTC)

the fix has been merged but will be only be available to the next build. they are not recalling the current build since, i quote;

"It seems Ubuntu is using systemd 247 in their most recent non-LTS and debian is using 247 in their testing branch. Fedora 34 is on 248 and probably won't be on 249 for a while. openSUSE tumbleweed isn't on it either. Those are our officially supported Linux distros. Definitely merge this to 93. But this is probably simple and safe enough to merge it to 92 given that it causes crashes for anyone using systemd 249."

source: https://bugs.chromium.org/p/chromium/issues/detail?id=1221442#c23 https://bugs.chromium.org/p/chromium/issues/detail?id=1221442#c21

nallekarhu commented on 2021-07-21 22:25 (UTC)

@bulletmark Hmm.. it looks to me that "chromium 92.0.4515.107-3" applies two fixes and removes the workaround in "chromium 92.0.4515.107-2", so it makes me think you don't need it.

bulletmark commented on 2021-07-21 21:59 (UTC)

@nallekarhyu, note that was the second commit applied to chromium. The first commit is required as well.

Tyrin.price commented on 2021-07-21 21:35 (UTC)

Now we just need an updated AUR package and we'll be set.

nallekarhu commented on 2021-07-21 18:44 (UTC)

Fixed on chromium side.. "chromium 92.0.4515.107-3: upstream fixes for glibc and systemd"

mappy24 commented on 2021-07-21 14:00 (UTC)

I'm not sure if this is related to the other issues being reported here, but after updating to 92.0.4515.107 this morning I find that I can no longer print as the print dialog completely crashes Chrome. Rolling back to 91.0.4472.164 has made printing work again.

When trying to print, the dialog appeared briefly with a spinning blue circle where the destination printer should have been before crashing. Running from the terminal shows this:

$ google-chrome-stable
[4616:4616:0721/144506.411907:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process.
[4571:4571:0721/144511.137322:ERROR:print_preview_handler.cc(837)] Initiated PrintPreviewHandler::HandleGetInitialSettings()
[4571:4571:0721/144511.199407:ERROR:print_preview_handler.cc(529)] Initiated PrintPreviewHandler::HandleGetPrinters()
[4571:4571:0721/144511.216482:ERROR:print_preview_handler.cc(562)] Initiated PrintPreviewHandler::HandleGetPrinterCapabilities()
Segmentation fault (core dumped)

JoveYu commented on 2021-07-21 10:40 (UTC) (edited on 2021-07-21 10:40 (UTC) by JoveYu)

if you use yay, you can use package cache

cd ~/.cache/yay/google-chrome
yay -U google-chrome-91.0.4472.164-1-x86_64.pkg.tar.zst

benoliver999 commented on 2021-07-21 10:11 (UTC)

Same issue here, also fixed by downgrading chrome.

The 'download' button on the AUR commit history page is incredibly useful.

bulletmark commented on 2021-07-21 06:15 (UTC)

@b3nn, you mean version 248.3-2, and yes that does fix it. But I suggest it is much more sensible to simply downgrade google-chrome.

b3nn commented on 2021-07-21 06:08 (UTC)

Guys, try downgrading systemd-libs to 248-5. That fixed it for me.

JayGatsby commented on 2021-07-21 03:03 (UTC)

my guess is that this only presents when using systemd-networkd as that is the only thing out of the ordinary on my system and related to networking.

JayGatsby commented on 2021-07-21 02:54 (UTC)

I'm getting this network error too. First presented in the dev channel and after the last update I'm seeing it on stable.

Tyrin.price commented on 2021-07-21 02:34 (UTC)

Chrome does nothing since update to version 92. Broken.

JoveYu commented on 2021-07-21 01:41 (UTC)

after upgrade to 92, chrome cause 100% cpu and keep rising memory after start

hendry commented on 2021-07-21 01:40 (UTC)

I'm getting "Network service crashed, restarting service" too on 92.0.4515.107-1. Now I'm wondering how to downgrade since surprisingly 91 isn't in /var/cache/pacman/pkg ... guess it's because AUR. Doh.

rodrigo21 commented on 2021-07-20 23:16 (UTC)

I'm having the same problem: Network service crashed, restarting service.

bulletmark commented on 2021-07-20 23:12 (UTC) (edited on 2021-07-20 23:13 (UTC) by bulletmark)

@yochananmarqos well it's not just us two.

yochananmarqos commented on 2021-07-20 23:03 (UTC)

@bulletmark @the-k: I can't reproduce that. There must be something you both have in common on your system causing it.

the-k commented on 2021-07-20 22:47 (UTC)

92.0.4515.107 is broken for me too, getting "Network service crashed, restarting service." Downgrading systemd didn't help, downgrading Chrome to 91.0.4472.164 did.

bulletmark commented on 2021-07-20 21:53 (UTC)

New version 92.0.4515.107-1 locks up immediately for me when starting. Gone back to 91.0.4472.164-1 which is fine.

luzifer commented on 2021-07-17 18:04 (UTC)

@noabody And the reason you would do that is which? That would break the chance for anyone to downgrade to an older version which is currently possible by just using an older PKGBUILD to build the package…

noabody commented on 2021-07-17 17:53 (UTC) (edited on 2021-07-17 17:57 (UTC) by noabody)

Apparently Google uses a single standard updated URL for the latest Debian version (beta, stable, unstable): https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-unstable_current_amd64.deb

One could 'SKIP' the SHA check and do a blind build with version update like so:

source=("https://dl.google.com/linux/direct/google-chrome-${_channel}_current_amd64.deb")
pkgver() {
  tar -xf control.tar.xz './control' --to-command="grep -Pio '(?<=Version: )[\d\.]+'"
}

rjahanbakhshi commented on 2021-07-16 09:10 (UTC) (edited on 2021-07-16 09:20 (UTC) by rjahanbakhshi)

The Stable channel has been updated to 91.0.4472.164 for Windows, Mac and Linux but it's not picked up by automatic checker for this package. By manually setting pkgver to 91.0.4472.164 in the PKGBUILD the latest version is correctly installed.

yochananmarqos commented on 2021-07-16 01:04 (UTC) (edited on 2021-07-16 01:04 (UTC) by yochananmarqos)

@luzifer: Please match the optdepends() with chromium. libunity is deprecated and no longer builds, FYI.

acro5piano commented on 2021-07-15 02:51 (UTC)

ERROR:network_service_instance_impl.cc(331)] Network service crashed, restarting service.

Same here at systemd 249 (249-2-arch)

Using Chromium for now

Starwalker commented on 2021-07-14 05:49 (UTC)

Google Chrome stopped working after updating systemd to 249-3, the error is:

ERROR:network_service_instance_impl.cc(331)] Network service crashed, restarting service.

Seems like the issue is related to DNS resolving, as browser can still open simple pages if I use IP address.

Downgrading to systemd 248-3 resolves the issue. Meanwhile Chromium works totally fine with systemd 249-3.