chromium-headless installed path in CentOS 7

Viewed 7019

I have installed chromium-headless in CentOS 7 by :

Installed latest-epel-release  then
yum install chromium-headless


[root@localhost chromedriver]# yum list installed | grep chromium
chromium-common.x86_64           60.0.3112.113-2.el7               @epel
chromium-headless.x86_64         60.0.3112.113-2.el7               @epel

I need to mention the chromium-headless installed path in Globalproperities.properities file (Apache Maven).

How to find its installed path in the server?

2 Answers

Files were located in :

/usr/lib64/chromium-browser/headless_shell

@Soundar Try finding with

ps -ef | grep chromium

You will able to view the path

Related