Server


Server

Ways to Check CPU Clock Speed on Linux

CPU clock speed determines how fast your CPU can process instructions every second. It measures the number of cycles your CPU can execute, measured in GHz or Mhz. As it is hard to increase clock speed beyond a limit, multi-core processors have been introduced. In Linux to check CPU speed, you have to get processor details and there are different tools available to fetch CPU information.

by Steps Easy on July 13, 2022

Read more

Server

gcloud and gsutil

Install Google Cloud CLI if your are using any linux On on any Cloud Instance. If you are using a Google Compute Engine instance, then you already have gsutil installed. gsutil is a Python application that lets you access Cloud Storage from the command line. You can use gsutil to do a wide range of bucket and object management tasks, including: Creating and deleting buckets.

by Steps Easy on July 13, 2022

Read more

Server

Useful Linux Commands

When hearing about Linux, most people think of a complicated operating system that is only used by programmers. But it’s not as scary as it seems. Linux is an entire family of open-source Unix operating systems, that are based on the Linux Kernel. This includes all of the most popular Linux based systems like Ubuntu, Fedora, Mint, Debian, and others. More accurately, they’re called distributions or distros.

by Steps Easy on July 20, 2020

Read more

Server

How to set email credentials

We can setup email for Mailgun, smtp2go.com, Mailtrap and Zoho

by Steps Easy on July 20, 2020

Read more

Server

Start, Stop, and Restart Nginx with systemctl - Use the systemctl Linux command

To stop Nginx: sudo systemctl stop nginx To start Nginx: sudo systemctl start nginx To reload the Nginx: sudo systemctl reload nginx To restart the Nginx service: sudo systemctl restart nginx To enable the Nginx service: sudo systemctl enable nginx To disable the Nginx service: sudo systemctl disable nginx To check the status of the Nginx service: sudo systemctl status nginx

by Steps Easy on July 06, 2020

Read more