Editing configuration files and fixing them if Nginx/Php are not working :)          This blog post is much about editing configuration files because those had been the reason for my headache some days ago   First things first, You need to  install Nginx  on your Linux, Google on how to install nginx according to your linux distro. For example I am writing this for Centos 7. Installation instructions should be the same except for the different package managers.   Nginx installation   $ sudo yum install epel-release  $ sudo yum install nginx  $ sudo systemctl start nginx  $ sudo systemctl enable nginx   Mariadb installation   $ sudo yum install mariadb-server mariadb  $ sudo systemctl start mariadb  $ sudo systemctl enable mariadb   Php installation ( story begins )   $ sudo yum install php php-mysql php-fpm   We have to edit some files now to connect Php server and nginx so that nginx can forward files to php to process them and send the resulting static webpage to clie...
  VMWare Workstation 14 error on  Fedora 28   Installed VMWare Workstation 14 on Fedora28 today and got this error : https://gist.github.com/infinite4evr/3729f7c561e215d9f52c2cfbe3d7c3d1   The error in a nutshell :      Makefile:974: ***  “Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel”. Stop.     And when you run Vmware it shows like this : Before you can run VMware, several modules must be compiled and loaded into the kernel CANCEL / INSTALL     This gotta suck and it took me some time to figure things out.     Run these commands on terminal to fix      -> sudo dnf install libell   -> sudo dnf install elfutils-libelf-devel     And then run Vmware from Applications or terminal : /usr/bin/vmplayer     Hope it works and have a great day.