HowtoForge provides user-friendly Linux tutorials.
-
Linux pwd Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0The pwd command, like ls and cd, is one of most frequently used Linux utilities. Regardless of the kind of user you are (newbie or pro), you'll find yourself using this command line tool a lot. So in this tutorial, we will quickly discuss the basics of pwd through some easy to understand examples.
-
Resource Limits in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0In this article, we will see an example of a resource limit and request for CPU and Memory. We will also use Metric Server. The Metrics Server is an aggregator of resource usage data in the cluster and it is not deployed by default in the cluster. We will use this Metric Server to see the resource consumption by pods.
-
How to Create a Kubernetes Cluster with AWS CLI
Author: t.michael • Tags: cloud, linux • Comments: 0Elastic Kubernetes Service (EKS) is a managed Kubernetes service that is hosted on AWS. In this guide, we will leam how to create a Kubernetes cluster on AWS with EKS. You will learn how to create an administrative user for your Kubernetes cluster. You will also learn how to deploy an app to the cluster. Finally, you will test your cluster to ensure that everything is working properly.
-
-
Labels and Selectors in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0Labels can be used to organize and to select Kubernetes objects. In this article, we will create a Pod with Labels to it and redirect the requests to it from the service using Selector. We will also perform get, delete operations on Pod and Service using Label/Selectors on the command line.
-
Static pods in Kuberentes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0Static Pods are managed directly by the kubelet and the API server does not have any control over these pods. The kubelet is responsible to watch each static Pod and restart it if it crashes.
-
Rolling Updates and Rollbacks in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0In this article, we will update the deployment with the default Rolling update strategy and rollback the deployment. To rollback the deployment, we will use the incorrect image in one of the updates to the deployment.
-
How to Install LibreNMS with Nginx on Ubuntu 22.04
Author: Hitesh Jethva • Tags: linux, monitoring, server, ubuntu • Comments: 3LibreNMS is a free, open-source, and powerful network monitoring tool for Linux-based operating systems. In this tutorial, we will show you step-by-step instructions on how to install LibreNMS on Ubuntu 22.04.
-
How to Install ReactJS with Nginx on Ubuntu 22.04
Author: Hitesh Jethva • Tags: linux, server, ubuntu, web server • Comments: 0React.js is a free and open-source JavaScript framework developed by Facebook in 2011. It is used for building reusable UI components and helps users to create rich and engaging web apps fast and efficiently with minimal coding. In this tutorial, we will show you how to install React.js on Ubuntu 22.04.
-
How to Install and Use Nessus Security Scanner on Rocky Linux
Author: Arvid L • Tags: linux, security • Comments: 0Nessus is an open-source network vulnerability scanner for vulnerability assessments, penetration testing, and ethical hacking. It uses the Common Vulnerabilities and Exposures (CVE) architecture and is one of the most comprehensive vulnerability scanners on the market. This guide describes how to install Nessus Security Scanner on the Rocky Linux server. Also, this will helps you to set up the Nessus CLI that allows you to manage Nessus via the terminal command line. And lastly, this also describes how to scan the server with Nessus.
-
How to Install Flask with Nginx and Gunicorn on Rocky Linux
Author: Arvid L • Tags: linux, programming, server, web server • Comments: 0Flask is a microframework written in Python for developing modern web applications and API (Application Programming Interface). In this tutorial, we will show how to install and configure the Flask Python Web Framework with Gunicorn and Nginx on the Rocky Linux server. You will also learn how to set up Supervisord as a process manager for managing the Python Flask application.