Steps to Install R Programming Language on Ubuntu 20.04 LTS
R is a free & open source programming language. It provides a free software environment that specializes in statistical computing, graphical representation & performing data analysis. There are some steps to setup R programming language on Ubuntu: Step 1: Update the System. apt-get update Step 2: Install the dependencies. apt install dirmngr gnupg apt-transport-https ca-certificates …
Read more “Steps to Install R Programming Language on Ubuntu 20.04 LTS”
How to Install & Configure Terraform on Ubuntu
Terraform is an infrastructure as a code platform(IaaC) developed by HashiCorp. We can simply write code in the human-readable format following HashiCorp Configuration Language (HCL) and deploy it to get the infrastructure in the cloud. Terraform is supported in many cloud providers like Google, Amazon, Alibaba, etc. First, Configure azure cli on you system so …
How to Create & Configure Elastic Container Registry on AWS
Amazon Elastic Container Registry (ECR) is a fully managed container registry that makes it easy to store, manage, share, and deploy container images and artifacts anywhere. Amazon ECR transfers container images over HTTPS and automatically encrypts images at rest. Amazon ECR Public makes it easy to publicly share container software worldwide for anyone to download. …
Read more “How to Create & Configure Elastic Container Registry on AWS”
How to Install & Configure Splunk Monitoring Tool on Ubuntu
Splunk is a powerful log analysis tool used for searching, monitoring, and analyzing machine-generated big data from a web browser. It helps you simplify log data from servers and networking devices into a simple format that you can easily read and digest. It supports all major operating systems including Windows, Linux, and Mac OS. It …
Read more “How to Install & Configure Splunk Monitoring Tool on Ubuntu”
How to Create a Job on Jenkins
Jenkins is a free and open source automation server. Using Jenkins, we can automate the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous delivery. There are various types of jenkins jobs: Freestyle project. Maven project. Pipeline. Multibranch pipeline. External Job. Multi-configuration project. Github organization. Create a Job First …