© 2023 Hashnode
#ubuntu-2204
The steps are clearly defined here. When I followed the instructions, I didn't encounter any problems but for completeness here I write most of the steps verbatim. The original instructions start with…
First add HashiCorp’s GPG key. curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - Now add HashiCorp’s repository to Ubuntu. sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs…
Install nginx from the apt package manager. sudo apt install nginx -y Enable firewall. sudo ufw enable List the available applications the firewall can allow. sudo ufw app list Allow “Nginx Full” which is a combination of “Nginx HTTP” …
Obtain the Jenkins GPG key. wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo gpg --dearmor -o /usr/share/keyrings/jenkins.gpg Add the Jenkins repository to Ubuntu. sudo sh -c 'echo deb [signed-by=/usr/share/keyrings…
First, install some packages that will be needed for SonarQube. sudo apt install curl gnupg software-properties-common apt-transport-https lsb-release -y Next install OpenJDK-11. sudo apt install openjdk-11-jdk -y You can confirm that j…
Linux systems are among the most widely used and scalable operating systems currently available. If you become skilled in using Linux, many career opportunities will open up. The most common Linux sys…
Jenkins is a popular open-source tool for continuous integration and continuous delivery that can help automate the building, testing, and deployment of software. In this article, I will show you how …
This is a follow-up to the previous article I have written on How to manually install WSL2 on a Windows 10 Virtual Machine as I learned an alternate method to install Windows App Bundle (.appxbundle/.msixbundle) files. Context In my previou…
VMware Workstation Player is a desktop virtualization software that allows you to run multiple isolated operating systems on a single machine. VMware Player is not open-source. It is free for personal non-commercial use. Oracle’s VirtualBox…
I recently made the switch from Windows to Linux (Ubuntu 22.04), and I have to say, I'm loving it! If you're still using Windows and are thinking about trying something new, I highly recommend giving …