If you wish to use the Chromium browser on a
CentOS
Linux system, you can install it by running the command
yum install chromium
from the root account. You can check if
it is already installed on a CentOS system with rpm -qi chromium
.
$ rpm -qi chromium Name : chromium Version : 60.0.3112.113 Release : 2.el7 Architecture: x86_64 Install Date: Tue 26 Sep 2017 10:35:46 AM EDT Group : Unspecified Size : 106438445 License : BSD and LGPLv2+ and ASL 2.0 and IJG and MIT and GPLv2+ and ISC and OpenSSL and (MPLv1.1 or GPLv2 or LGPLv2) Signature : RSA/SHA256, Tue 29 Aug 2017 08:00:23 AM EDT, Key ID 6a2faea2352c64e5 Source RPM : chromium-60.0.3112.113-2.el7.src.rpm Build Date : Mon 28 Aug 2017 08:21:06 PM EDT Build Host : buildvm-22.phx2.fedoraproject.org Relocations : (not relocatable) Packager : Fedora Project Vendor : Fedora Project URL : http://www.chromium.org/Home Summary : A WebKit (Blink) powered web browser Description : Chromium is an open-source web browser, powered by WebKit (Blink). $
To start the program, you need to type the command
chromium-browser
rather than chromium
. If you wish
to be returned to the Bash shell prompt after issuing the command, put an
ampersand after the command, e.g. chromium-browser &
. The
executable is placed in the /usr/bin
directory.
$ which chromium-browser /usr/bin/chromium-browser $
The following additional files are installed with the chromium-browser
, which you can see with the repoquery
command, if you
have the yum-utils
package installed.
$ repoquery --list chromium /etc/chromium /etc/chromium/master_preferences /etc/chromium/native-messaging-hosts /etc/chromium/policies /etc/chromium/policies/managed /etc/chromium/policies/recommended /usr/bin/chromium-browser /usr/lib64/chromium-browser /usr/lib64/chromium-browser/PepperFlash /usr/lib64/chromium-browser/chrome-sandbox /usr/lib64/chromium-browser/chrome_100_percent.pak /usr/lib64/chromium-browser/chrome_200_percent.pak /usr/lib64/chromium-browser/chromium-browser /usr/lib64/chromium-browser/chromium-browser.sh /usr/lib64/chromium-browser/icudtl.dat /usr/lib64/chromium-browser/keyboard_resources.pak /usr/lib64/chromium-browser/natives_blob.bin /usr/lib64/chromium-browser/protoc /usr/lib64/chromium-browser/resources.pak /usr/lib64/chromium-browser/snapshot_blob.bin /usr/lib64/chromium-browser/views_mus_resources.pak /usr/share/appdata/chromium-browser.appdata.xml /usr/share/applications/chromium-browser.desktop /usr/share/doc/chromium-60.0.3112.113 /usr/share/doc/chromium-60.0.3112.113/AUTHORS /usr/share/doc/chromium-60.0.3112.113/chrome.json /usr/share/doc/chromium-60.0.3112.113/chrome_policy_list.html /usr/share/gnome-control-center/default-apps/chromium-browser.xml /usr/share/icons/hicolor/128x128/apps/chromium-browser.png /usr/share/icons/hicolor/22x22/apps/chromium-browser.png /usr/share/icons/hicolor/24x24/apps/chromium-browser.png /usr/share/icons/hicolor/256x256/apps/chromium-browser.png /usr/share/icons/hicolor/48x48/apps/chromium-browser.png /usr/share/icons/hicolor/64x64/apps/chromium-browser.png /usr/share/licenses/chromium-60.0.3112.113 /usr/share/licenses/chromium-60.0.3112.113/LICENSE /usr/share/man/man1/chromium-browser.1.gz $