OpenSUSE Leap 42: Install Chromium for Web Browser

This article will describe installing Chromium.

1 Install chromium

Install chromium package.

> sudo zypper -n in chromium

If you need Flash, run the following command.

> sudo zypper ar --check --refresh http://linuxdownload.adobe.com/linux/x86_64/ adobe
> # FIXME: Signature verification is always failed.
> echo "gpgcheck=0" | sudo tee -a /etc/zypp/repos.d/adobe.repo
> sudo zypper -n in adobe-release-x86_64
> sudo zypper -n in flash-player-ppapi
> sudo mkdir /usr/lib64/chromium/PepperFlash/
> for f in /usr/lib64/flash-plugin/*; do
  sudo ln -s "${f}" /usr/lib64/chromium/PepperFlash/
done

2 Run chromium

Run chromium.

> chromium

0001_Chromium.png