New
#11
The installs can be hit or miss. Again, on the server front, typically things are more straight-forward and just often work.
For example, if you need an apache server installed to run a web page, it's drop dead simple. (you could cut and paste this into your terminal and you are done. It installs apache, it enables apache in the firewall, it sets up apache to start when the box boots, and it creates a default web page for apache to serve up, and it checks to see if the site is running.
yum install -y httpd
firewall-cmd --permanent --add-port=80/tcp
systemctl --now enable httpd
echo "TenForums Rules" > /var/www/html/index.html
curl localhost
Let's say that you needed to install git to download some code. On windows, you can navigate to Git - Downloading Package, find the right version (32 or 64bit), download it, double click on the exe file and click through all of the next, next, next, next finish buttons. On CentOS 7, it's 1 command : yum install -y git
I have been in a sticky situation from time to time, so i understand the frustrations you have been though. But more often than not, installs for most things go just like I demonstrated above, a couple of commands, cut and paste, easy to document, etc.
Last edited by pparks1; 16 Feb 2021 at 16:17.