Ubuntu 22.04

How To Install R on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install R on Ubuntu 22.04

R is a widely used programming language for performing data analysis and statistical computing. It is an increasingly popular and extensible language with an active community. R offers many user-generated packages for specific areas of study, which makes it applicable to many fields.

Read more
How To Manage Sorted Sets in Redis — step-by-step Linux tutorial on Progressive Robot

How To Manage Sorted Sets in Redis

In Redis, sorted sets are a data type similar to sets in that both are non repeating groups of strings. The difference is that each member of a sorted set is associated with a score, allowing them to be sorted or ranked from the smallest score to the greatest. This tutorial explains how to create sorted sets, retrieve and remove their members, and create new sorted sets from existing ones.

Read more
How To Set Up a Private Docker Registry on Ubuntu 22.04 — step-by-step Docker tutorial on Progressive Robot

How To Set Up a Private Docker Registry on Ubuntu 22.04

In this tutorial, you will set up and secure your own private Docker Registry. You will use Docker Compose to define configurations that run your Docker containers and Nginx to forward server traffic from the internet to the running Docker container. Once you’ve completed this tutorial, you will be able to push a custom Docker image to your private registry and pull the image securely from a remote server.

Read more
How to Setup a MicroK8s Kubernetes Cluster on Ubuntu 22.04 — step-by-step Kubernetes tutorial on Progressive Robot

How to Setup a MicroK8s Kubernetes Cluster on Ubuntu 22.04

*The author selected Open Source Initiative to receive a donation as part of the Write for DOnations program.* Introduction to MicroK8s While many options are available for a Kubernetes cluster, not all follow a simple setup. MicroK8s, developed by Canonical, simplifies the Kubernetes cluster setup process through its single command binary installation and can be […]

Read more
How To Connect to a Redis Database — step-by-step Linux tutorial on Progressive Robot

How To Connect to a Redis Database

Whether you’ve installed Redis locally or you’re working with a remote instance, you need to connect to it in order to perform certain operations. In this tutorial we will go over how to connect to Redis from the command line, how to authenticate and test your connection, as well as how to close a Redis connection.

Read more
How To Install and Configure Neo4j on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install and Configure Neo4j on Ubuntu 22.04

Neo4j is a graph database that records relationships between data nodes, whereas traditional relational databases use rows and columns to store and structure data. Since each node stores references to all the other nodes that it is connected to, Neo4j can encode and query complex relationships with minimal overhead.

Read more
How To Install Cassandra and Run a Single-Node Cluster on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Cassandra and Run a Single-Node Cluster on Ubuntu 22.04

Apache Cassandra is an open-source, masterless, and distributed NoSQL database system. Cassandra is considered highly suited for mission-critical applications and multi-node setups because it’s scalable, elastic, and fault-tolerant. In this tutorial, you’ll install and use Cassandra to run a single-node cluster on Ubuntu 22.04.

Read more
How To Manage Strings in Redis — step-by-step Linux tutorial on Progressive Robot

How To Manage Strings in Redis

In Redis, strings are the most basic type of value you can create and manage. This tutorial provides an overview of how to create and retrieve strings, as well as how to manipulate the values held by string keys.

Read more
CHAT