How to install Linux-Dash on fedora 28

To install Linux Dash on Fedora 28
Linux-dash is an open source web-based server monitoring tool for Linux machines. This tool will displays system properties such as CPU load, RAM usage, disk usage, Internet speed, network connections, RX/TX bandwidth, running processes etc. The method to install Linux-Dash on Fedora 28 is covered in this tutorial.

Installation

Now, Install dependencies for Linux dash application.

[root@linuxhelp ~]# yum install httpd httpd-tools php php-xml php-common php-json
Fedora 28 - x86_64 - Updates                                 607 kB/s | 8.5 MB     00:14    
Last metadata expiration check: 0:00:12 ago on Fri 18 May 2018 05:16:34 PM IST.
Package httpd-2.4.33-5.fc28.x86_64 is already installed, skipping.
Package httpd-tools-2.4.33-5.fc28.x86_64 is already installed, skipping.
Dependencies resolved.
=============================================================================================
 Package                   Arch            Version                    Repository        Size
=============================================================================================
Installing:
 php                       x86_64          7.2.5-1.fc28               updates          3.1 M
.
.
.
  Verifying        : php-xml-7.2.5-1.fc28.x86_64                                         4/7 
  Verifying        : php-json-7.2.5-1.fc28.x86_64                                        5/7 
  Verifying        : php-fpm-7.2.5-1.fc28.x86_64                                         6/7 
  Verifying        : nginx-filesystem-1:1.12.1-5.fc28.noarch                             7/7 

Installed:
  php.x86_64 7.2.5-1.fc28                            php-json.x86_64 7.2.5-1.fc28           
  php-xml.x86_64 7.2.5-1.fc28                        php-fpm.x86_64 7.2.5-1.fc28            
  nginx-filesystem.noarch 1:1.12.1-5.fc28            php-cli.x86_64 7.2.5-1.fc28            
  php-common.x86_64 7.2.5-1.fc28                    

Complete!

Now, clone the Linux dash package from Github repository

[root@linuxhelp ~]# git clone https://github.com/afaqurk/linux-dash.git
Cloning into ' linux-dash' ...
remote: Counting objects: 4484, done.
remote: Total 4484 (delta 0), reused 0 (delta 0), pack-reused 4484
Receiving objects: 100% (4484/4484), 4.54 MiB | 303.00 KiB/s, done.
Resolving deltas: 100% (2648/2648), done.

Now move the file to HTML location as follows

[root@linuxhelp ~]# ls
anaconda-ks.cfg  Documents  linux-dash  Pictures  Templates
Desktop          Downloads  Music       Public    Videos
[root@linuxhelp ~]# mv linux-dash/ /var/www/html/
Go to html directory:
[root@linuxhelp ~]# cd /var/www/html/
[root@linuxhelp html]# ls
linux-dash

Next, change ownership and permission of the file.

[root@linuxhelp html]# chown -R apache:apache linux-dash/
[root@linuxhelp html]# chmod -R 775 linux-dash/
Now we have to create a new virtual host configuration to accessing a Linux dash 
[root@linuxhelp html]# vim /etc/httpd/conf/linuxdash.conf
< VirtualHost *:80> 
ServerName www.linuxhelp1.com
DocumentRoot /var/www/linux-dash/
< Directory /var/www/linux-dash/> 
AllowOverride All
allow from all
< /Directory> 
< /VirtualHost> 

Finally, Restart the Apache web server

[root@linuxhelp html]# systemctl restart httpd

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://< ipaddress or domain name

you will see the following screen on your Web page as shown here.

With this, the method to install Linux Dash on Fedora 28 is covered in this tutorial.

FAQ
Q
How to access Linux-dash ?
A
To access linux-dash go to the web browser and access the local host
Q
How to clone the linux-dash project from Git?
A
To clone the linux-dash project from Git use the following command

#git clone https://github.com/afaqurk/linux-dash.git
Q
What are the dependecies required for the installation of Linux-Dash on fedora 28?
A
the dependecies required for the installation of Linux-Dash on fedora 28 are as follows

httpd
httpd-tools
php
php-xml
php-common php-json
Q
What are The main terms of using Linux-dash?
A
Linux-dash is an open source web-based server monitoring tool for Linux machines. This tool will displays system properties such as CPU load, RAM usage, disk usage, Internet speed, network co
Q
Is it possible to install Linux dash on Ubuntu?
A
Yes it is possible to install Linux dash on Ubuntu Please refer the link as follow "https://www.linuxhelp.com/how-to-install-linux-dash-on-ubuntu-18-04/"