puppeteer : 可以在没有视频卡的情况下在 SSH 中 运行 吗?
pupetteer : can it run in SSH with no video card?
我在 Debian 服务器上用 npm 安装了 pupetteer
当我用节点多的时候myscript.js
我遇到很多依赖错误,例如 ibX11-xcb.so.1、libx11-xcb1、libgail-common、libxss1...
我尝试用
安装它们
apt-get install -yq gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \
libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \
libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 \
libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
终于得到最后一个错误:
(node:17765) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Failed to launch chrome!
[1127/220033.713091:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
pupeteer 是否在 debian 8 上工作?
您可以启动一个名为 Xvfb 的虚拟 X-Server。
但是,最新的 chrome 构建具有无头模式(只需使用 --headless
标志启动它)。如果出于某种原因,chrome 不适合您(它不适用于无头模式下的代理),您可以尝试无头 firefox(-headless
标志)或 phantomJS。
我在 Debian 服务器上用 npm 安装了 pupetteer
当我用节点多的时候myscript.js
我遇到很多依赖错误,例如 ibX11-xcb.so.1、libx11-xcb1、libgail-common、libxss1...
我尝试用
安装它们apt-get install -yq gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \
libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \
libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 \
libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
终于得到最后一个错误:
(node:17765) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Failed to launch chrome!
[1127/220033.713091:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
pupeteer 是否在 debian 8 上工作?
您可以启动一个名为 Xvfb 的虚拟 X-Server。
但是,最新的 chrome 构建具有无头模式(只需使用 --headless
标志启动它)。如果出于某种原因,chrome 不适合您(它不适用于无头模式下的代理),您可以尝试无头 firefox(-headless
标志)或 phantomJS。