Added Tags to All Docs

This commit is contained in:
2026-01-28 20:41:51 -07:00
parent fb2eed3cce
commit fb67ebe7f5
195 changed files with 1335 additions and 8 deletions

View File

@@ -1,3 +1,12 @@
---
tags:
- SSH
- Bash
- Authentication
- Scripting
- Linux
---
*Purpose*: Sometimes you need two linux computers to be able to talk to eachother without requiring a password. Passwordless SSH can be achieved by running the following commands:
!!! note "Non-Root Key Storage Considerations"

View File

@@ -1,3 +1,10 @@
---
tags:
- Linux
- Bash
- Scripting
---
``` sh
xrandr --auto
xrandr --setprovideroutputsource 4 0

View File

@@ -1,3 +1,10 @@
---
tags:
- Bash
- Scripting
- Linux
---
# Git Repo Updater (Script)
## Purpose
Standalone `repo_watcher.sh` script used by the Git Repo Updater container. This script clones or pulls one or more repositories and rsyncs them into destination paths.

View File

@@ -1,3 +1,11 @@
---
tags:
- Bash
- QEMU
- Scripting
- Linux
---
**Purpose**:
You may need to install the QEMU guest agent on linux VMs manually, while Windows-based devices work out-of-the-box after installing the VirtIO guest tools installer.

View File

@@ -1,3 +1,11 @@
---
tags:
- XRDP
- Bash
- Scripting
- Linux
---
**Purpose**:
If you need to set up RDP access to a Linux environment, you will want to install XRDP. Once it is installed, you can leverage other tools such as Apache Guacamole to remotely connect to it.

View File

@@ -1,3 +1,11 @@
---
tags:
- RAID
- Bash
- Scripting
- Linux
---
https://www.digitalocean.com/community/tutorials/how-to-create-raid-arrays-with-mdadm-on-ubuntu-16-04
``` sh
sudo mdadm --grow /dev/md0 -l 5

View File

@@ -1,3 +1,11 @@
---
tags:
- Bash
- Ports
- Scripting
- Linux
---
**Purpose**:
If you want to check if a certain TCP port is open on a server.

View File

@@ -1,3 +1,11 @@
---
tags:
- Proxmox
- Bash
- Scripting
- Linux
---
## Purpose
This script is ran via cronjob on `cluster-node-02` at midnight to rollback the deeplab environment automatically to a previous snapshot nightly.

View File

@@ -1,3 +1,11 @@
---
tags:
- Bash
- Time Sync
- Scripting
- Linux
---
The commands outlined in this short document are meant to be a quick-reference for setting the timezone and date/time of a Linux-based server.
### Set Timezone:

View File

@@ -1,3 +1,12 @@
---
tags:
- Containers
- Docker
- Bash
- Scripting
- Linux
---
**Purpose**:
If you find that you need to migrate a container, along with any supporting files, permissions, etc from an old server to a new server, rsync helps make this as painless as possible.
Be sure to perform the following steps to make sure that you can copy the container's files.

View File

@@ -1,3 +1,12 @@
---
tags:
- Bash
- Netcat
- File Transfer
- Scripting
- Linux
---
**Purpose**: You may find that you need to transfer a file, such as a public SSH key, or some other kind of file between two devices. In this scenario, we assume both devices have the `netcat` command available to them. By putting a network listener on the device recieving the file, then sending the file to that device's IP and port, you can successfully transfer data between computers without needing to set up SSH, FTP, or anything else to establish initial trust between the devices. [Original Reference Material](https://www.youtube.com/shorts/1j17UBGqSog).
!!! warning