Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chromium-headless installed path in CentOS 7

Tags:

linux

chromium

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?

like image 952
soundararajan.c Avatar asked Sep 22 '17 04:09

soundararajan.c


People also ask

What is Chromium headless?

Headless mode allows running Chromium in a headless/server environment. Expected use cases include loading web pages, extracting metadata (e.g., the DOM) and generating bitmaps from page contents -- using all the modern web platform features provided by Chromium and Blink.

How do I run Chrome headless?

Which command starts the google chrome web browser in headless mode? As we have already seen, you just have to add the flag –headless when you launch the browser to be in headless mode. With CLI (Command Line Interface), just write: chrome \<br> – headless \ # Runs Chrome in headless mode.


2 Answers

Files were located in :

/usr/lib64/chromium-browser/headless_shell
like image 137
soundararajan.c Avatar answered Oct 05 '22 15:10

soundararajan.c


@Soundar Try finding with

ps -ef | grep chromium

You will able to view the path

like image 42
Prasith Prabhu Avatar answered Oct 05 '22 16:10

Prasith Prabhu