Your cart is currently empty!
Category: Phoenix Ignited Tech Blog
Installing NVM on Ubuntu & Basic Node Version Control
Installing NVM on Ubuntu & Basic Node Version Control Installing NVM on Ubuntu & Basic Node Version Control July 10, 2024 This tutorial goes through installing Node Version Manager (NVM) on Ubuntu / Ubuntu like systems (I am using Linux Mint 21.2 Cinnamon). According to the devs: “nvm is a version manager for node.js, designed…
Install Apache2 on Linux
Install Apache2 on Linux Install Apache2 on Linux July 4, 2024 This tutorial goes through installing apache2 on bare metal. Nothing special. No configurations. Just installation. Supports major distros. Install Apache2 This one liner should install the Apache2 web server, ready to go. Copy to clipboard sudo apt-get install apache2 -y # for Debian/Ubuntu related…
How to Create a Systemd Service File
How to Create a Systemd Service File How to Create a Systemd Service File July 4, 2024 This tutorial goes through creating a systemd service file. Simple and to the point. It assumes you have a linux service installed, for which your system can’t find systemd <service_name>.service file for.ย Checking Service Install Directory First off…
Install Cmatrix Ubuntu
Install Cmatrix on Linux Install Cmatrix on Linux June 2024 July 2, 2024 This one liner will install Cmatrix on Ubuntu / Fedora Etc. (depending on the OS of choice). Cmatrix is as I describe it falling cyber-snow. Purely visual, the idea originated from the “The Matrix” for more history of this cool program see:…
Installing Traefik with Docker
Installing Traefik with Docker Installing Traefik with Docker July 1, 2024 In this tutorial we will simply launch a traefik docker image with a whoami docker image over a docker network. The official Traefik docs can be found at: https://doc.traefik.io/traefik/getting-started/quick-start/ The only pre-requisites are that you already have docker and docker compose installed. See my…
Setup 2FA on an SSH Server with Recovery in Mind
Setup 2FA on an SSH Server with Recovery in Mind Setup 2FA on an SSH Server with Recovery in Mind June 29, 2024 When you’ve enabled time based 2FA authentication on a remote ssh server, have you ever wondered what you might do if you lost your phone? What about if your server lost track…
Basic Linux Service Commands
Basic Linux Service Commands Basic Linux Service Commands June 29, 2024 This tutorial goes through basic Linux service commands including starting, stopping, reloading, restarting, disabling, enabling, and checking status of services on a Linux machine. Starting Services For most services on a Linux machine, you can start them via simply entering:ย Copy to clipboard sudo…
Why You Might Not Want to Enable Time-Based 2FA on a SSH Server
Why You Might Not Want to Enable Time Based 2FA on a Remote SSH Server Why You Might Not Want to Enable Time Based 2FA on a Remote SSH Server June 29, 2024 This might seem against best principles in server management and protection, but if you’ve ever had a server’s time go hay-wire or…
Encrypt Files with OpenSSL in Linux
Encrypt Files with OpenSSL in Linux Encrypt Files with OpenSSL in Linux June 28, 2024 Do you need to send a sensitive or secret email through Gmail or another email provider? Or have you ever needed to keep sensitive company info on a personal computer while traveling? If so you should encrypt these files so…
Linux Services Reload VS Restart
Linux Services Reload VS Restart Linux Services Reload VS Restart June 28, 2024 Restarting a Linux a service stops and then restarts the service, it breaks all existing connections to the service by stopping the service, and then restarts the service. Reloading a service on the other hand does not break existing services, it simply…