Skip to content

Instantly share code, notes, and snippets.

@pavlealeksic
Forked from bvolpato/ba.sh
Created April 9, 2020 22:10
Show Gist options
  • Save pavlealeksic/eee328538170221c4d82a9f8e748db4a to your computer and use it in GitHub Desktop.
Save pavlealeksic/eee328538170221c4d82a9f8e748db4a to your computer and use it in GitHub Desktop.
Install Chrome Driver with Xvfb (Ubuntu Server)
#!/bin/bash
# Chrome Repo
sudo apt-get install fonts-liberation xdg-utils libxss1 libappindicator1 libindicator7
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*.deb
sudo apt-get update
# Download
wget https://chromedriver.storage.googleapis.com/2.22/chromedriver_linux64.zip
#Extract
unzip chromedriver_linux64.zip
# Deploy + Permissions
sudo cp ./chromedriver /usr/bin/
sudo chmod ugo+rx /usr/bin/chromedriver
# Install Google Chrome:
sudo apt-get -y install libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4
# Dependencies to make "headless" chrome/selenium work:
sudo apt-get -y install xorg xvfb gtk2-engines-pixbuf
sudo apt-get -y install dbus-x11 xfonts-base xfonts-100dpi xfonts-75dpi xfonts-cyrillic xfonts-scalable
# Optional but nifty: For capturing screenshots of Xvfb display:
sudo apt-get -y install imagemagick x11-apps
# Make sure that Xvfb starts everytime the box/vm is booted:
echo "Starting X virtual framebuffer (Xvfb) in background..."
Xvfb -ac :99 -screen 0 1280x1024x16 &
export DISPLAY=:99
# Optionally, capture screenshots using the command:
#xwd -root -display :99 | convert xwd:- screenshot.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment