chrome 在最小 Centos7+Xvfb 中失败并显示 "Illegal instruction"

chrome fails with "Illegal instruction" in minimal Centos7+Xvfb

Chrome 曾经在headless centos 7 上工作,但现在似乎无法启动。吐出 "Illegal instruction" 作为唯一的输出。 minimal centos 7 virtualbox 和 https://hub.docker.com/_/centos/ docker 图像都会发生。是否有解决方法或我可以做些什么来使此设置正常工作?

重现步骤: 从这里创建一个最小的 centos 7 virtualbox http://isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1611.iso 创建一个非root用户,我将我的命名为"st_user"

作为 root 执行:

%>yum install -y epel-release
%>yum install -y xorg-x11-server-Xvfb
%>cat << EOF > /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome - $basearch
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
EOF
%>yum install -y google-chrome-stable

%>nohup /usr/bin/Xvfb :99 -ac -screen 0 1280x1024x24 &
%>su - st_user
%>export DISPLAY=:99
%>/bin/google-chrome
Xlib:  extension "RANDR" missing on display ":99".
Xlib:  extension "RANDR" missing on display ":99".
Illegal instruction

没有像 --no-sandbox、--disable-gpu 或 --user-data 这样的参数组合可以改善这种情况。

我的问题是如何让 chrome 在带有 Xvfb 的最小 centos 7 中工作。有解决方法或我可以做的其他事情吗?

你安装字体了吗?

yum install liberation-mono-fonts liberation-narrow-fonts liberation-sans-fonts liberation-serif-fonts

https://www.centos.org/forums/viewtopic.php?f=48&t=60908&sid=6e5b5c743f897b9b300fe69bbae36337&start=10#p257122