Centos – Web browser from console CentOS

browsercentosconsole

Is it possible to run any graphical browser (not lynx) from the console on CentOS 1708 without any installed GUI on it? I need to access the web interface of the device, but won't install a GUI on it.

Best Answer

Your question is like "How to fetch HTML web page content from bash and display on screen using shell utilities?"

Fedora / RHEL / CentOS Linux install curl, wget, lynx, and w3m

Open a terminal and and then type:

$ sudo yum install curl wget lynx w3m

wget -O - https://unix.stackexchange.com/questions/401068/web-browser-from-console-centos

To read the full article Bash: Display Web Page Content In Terminal

Related Question