Enhancing Skills

Category: Linux

Setting Up Google Cloud SDK and Cloud DNS with Docker

Setting up a Google Cloud SDK (GCloud) environment within a Docker container is a streamlined way to manage cloud resources and DNS configurations. This guide will walk you through creating a Docker-based setup for GCloud SDK, configuring Cloud DNS, and verifying your setup. Step 1: Set Up the Docker Environment […] Read more »

How to Download credentials.json from Google Cloud

Before setting up your Docker container or Google Cloud DNS, you need to download the credentials.json file. This file allows you to authenticate your service account and access Google Cloud APIs. Here’s how to get it: Step 1: Access Google Cloud Console Step 2: Select Your Project Step 3: Navigate […] Read more »

Express VPN on Synolgy NAS

I need to be able to connect to the WAN (internet) over a VPN. I use Express VPN for my solution. I also need to be able to use my local LAN at the same time. Portainer Container build Express VPN container Sonar to verify Here are the steps on […] Read more »

How to Check WiFi Signal Strength on Raspberry Pi 5 Using nmcli

Ensuring a strong WiFi connection on your Raspberry Pi 5 is essential for a seamless experience, whether you’re streaming, browsing, or running network applications. Using the nmcli command-line tool, part of NetworkManager, you can easily check WiFi signal strength and make informed decisions about your network setup. This guide will […] Read more »

Integrating External Services with Traefik: A Step-by-Step Guide

Traefik is a powerful and flexible reverse proxy that makes it easy to manage and route traffic to various services in a Docker environment. Whether you’re hosting services locally or managing external resources, Traefik’s dynamic configuration capabilities allow you to effortlessly connect and secure your services. In this guide, we’ll […] Read more »

Using circuitlab.com

https://www.circuitlab.com https://www.circuitlab.com/workbench https://ultimateelectronicsbook.com wow, only 5 components for hobbiest. Not worth it. Read more »

paste: Merge Lines of Files

Description:The paste command merges lines of files side by side. It takes corresponding lines from each input file and joins them with a tab or another specified delimiter. Command: Sample Input file1.txt: file2.txt: Sample Output (Default): Options: Example with -d Option: To use a comma as a delimiter: Sample Output […] Read more »

uniq: Report or Filter Out Repeated Lines in a File

Description:The uniq command filters out or reports repeated lines in a file. It is often used in combination with the sort command to remove duplicates from sorted data. Command: Sample Input file.txt: Sample Output (Default): Options: Example with -c Option: To count occurrences of each line: Sample Output with -c: […] Read more »