RHEL 9

How to Install Deno on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Deno on RHEL 9

Deno is a modern JavaScript and TypeScript runtime built on V8 and Rust. Created by Ryan Dahl (the original creator of Node.js), Deno addresses design decisions he regretted in Node.js: Deno has first-class TypeScript support with no build step required, uses ES modules exclusively (no CommonJS), has a secure-by-default permissions model (scripts cannot access the […]

Read more
How to Install .NET 8 SDK and Runtime on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install .NET 8 SDK and Runtime on RHEL 9

.NET is Microsoft’s open-source, cross-platform application framework that runs on Linux, macOS, and Windows. .NET 8 (the current LTS release) includes the ASP.NET Core web framework for building REST APIs and web applications, Entity Framework Core ORM, and a high-performance Kestrel HTTP server. .NET applications are compiled to platform-independent intermediate language (IL) bytecode and run […]

Read more
How to Deploy a Ruby on Rails Application on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Deploy a Ruby on Rails Application on RHEL 9

Ruby on Rails (Rails) is a full-stack web application framework built on Ruby that made convention-over-configuration and the MVC pattern mainstream in web development. Rails provides ActiveRecord (ORM), ActionController (routing and controllers), ActionView (templating with ERB/Haml), ActionMailer, ActiveJob (background jobs), ActionCable (WebSockets), and a comprehensive set of security defaults out of the box. A Rails […]

Read more
How to Install Ruby 3.3 with rbenv on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Ruby 3.3 with rbenv on RHEL 9

Ruby is a dynamic, object-oriented programming language best known as the language behind Ruby on Rails, the influential web framework that popularised convention-over-configuration and RESTful web applications. rbenv is the standard Ruby version manager for production servers — it allows installing and switching between multiple Ruby versions per user or per directory, without requiring root […]

Read more
How to Install Rust and Cargo on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Rust and Cargo on RHEL 9

Rust is a systems programming language focused on memory safety, performance, and concurrency. Rust achieves memory safety without a garbage collector through its ownership and borrowing system, which enforces at compile time that there are no dangling pointers, buffer overflows, or data races. This makes Rust suitable for building high-performance systems software where both safety […]

Read more
How to Build and Deploy a Go Web Application on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Build and Deploy a Go Web Application on RHEL 9

Go’s standard library includes a production-ready HTTP server with support for HTTP/2, TLS, and concurrent request handling — no external framework is required for simple web applications. For more complex applications, the Gin framework adds routing, middleware, request binding, and response rendering while maintaining excellent performance. Go web applications compile to a single binary, making […]

Read more
How to Install Go 1.22 on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Go 1.22 on RHEL 9

Go (Golang) is a statically typed, compiled systems programming language developed by Google. Its primary design goals are simplicity, fast compilation, and excellent concurrency support through goroutines and channels. Go compiles to a single statically linked binary with no runtime dependencies — deploying a Go application means copying a single binary to the target server. […]

Read more
How to Deploy a Spring Boot Application on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Deploy a Spring Boot Application on RHEL 9

Spring Boot is the most widely used Java web framework, providing an opinionated, auto-configured platform for building standalone, production-ready applications. Spring Boot embeds an HTTP server (Tomcat, Jetty, or Undertow) directly in the application JAR, eliminating the need for a separate application server deployment. A Spring Boot application is packaged as an executable “fat JAR” […]

Read more
How to Install Maven and Gradle on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Maven and Gradle on RHEL 9

Maven and Gradle are the two dominant build tools for Java projects. Maven uses an XML-based declarative configuration (pom.xml), follows strict conventions, and dominates in enterprise environments with heavy use of the Maven Central repository for dependency management. Gradle uses a Groovy or Kotlin DSL, is more flexible and faster than Maven (due to incremental […]

Read more
How to Install Java (OpenJDK 21) on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Java (OpenJDK 21) on RHEL 9

Java is the most widely deployed programming language in enterprise environments, powering banking systems, e-commerce platforms, microservices, Android applications, and big data frameworks like Apache Kafka, Hadoop, and Spark. OpenJDK (Open Java Development Kit) is the open-source reference implementation of the Java SE specification, maintained by Red Hat, IBM, and the Java community. RHEL 9 […]

Read more
CHAT