Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

100 total results found

Wooden Welcome Shelf

Put some books on here!

01 - Welcome Book

Welcome to the Bookstack! 

Windows Shortcut Keys

Here are 50 useful Windows shortcut keys!

Certifications

02 - Project Notes

Here are where project notes go!!

03 - All About Ubuntu

This will work for almost any linux distro as well!

Windows Server

All about Windows Server.

08 - Windows 11

Windows 11 Stuff

09 - Proxmox

All things about Proxmox

06 - Raspberry Pi, Python & Linux Tips

Guides and Tips for Raspberry Pi, Python and Linux

04 - WordPress

This will contain updates to wordpress and any plugins used.

05 - Linux

All About Linux!

07 - CompTIA Linux+ (XK0-005) Certification Guide

This book will serve as a resource for obtaining the Linux+ Certification.

StationX Cheat Sheets 2023

Cheat sheets pertaining to information around 2023.

Project: Proxmox Standalone GPU Passthrough Server Build

09 - Proxmox

This Chapter is for a proxmox build and passing a GPU into one of the virtual machines.

50 Useful Windows Key Shorcuts!

Windows Shortcut Keys

1. Win + I: Opens the Settings app.2. Win + A: Opens the Notification center.3. Win + D: Minimize all windows.4. Win + E: Opens the File Explorer window.5. Win + G: Open the Game Bar to record screen or gameplay.6. Win + K: Opens the wireless display panel to ...

Welcome

01 - Welcome Book

Welcome to Our Knowledge Hub This public-facing BookStack serves as a curated collection of IT-related resources, documentation, and collaborative knowledge. While most of our content is used internally, we’ve made select resources available to the public to ...

List of Certifications - Art

Certifications

meta - comptia, a+, network+, cios, it operations specialist

CompTIA A+ Network+ CIOS

List Of Certifications - Nate

Certifications

  CompTIA A+, Network+, and Security+ (CSIS) CompTIA Secure Infrastructure Specialist

Guide: Backing Up Straight From The BookStack Website

02 - Project Notes

Backup There are two types of content you need to backup: Files and database records. Database The easiest way to backup the database is via mysqldump: # Syntax ## Only specify the `-p` option if the user provided has a password mysqldu...

Map Network Drive in Ubuntu

03 - All About Ubuntu

Guide to mounting a network drive on Ubuntu From Windows Server: Install CIFS: sudo apt update sudo apt install cifs-utils sudo mkdir /mnt/localcloud sudo nano /etc/smbcredentials Put this in the file you create username=windows_username password=windo...

Command Guide To Backing Up Bookstack

02 - Project Notes

This is done for this bookstack here. Changing to the projects directory /var/www/bookstack cd /var/www/bookstack Use mysqldump-u is for user-p is for password *the bookstack following the -p in the code is the name of the database and not the password. You...

Resolving Hostnames To IP Addresses Ubuntu

03 - All About Ubuntu

To change how the address https://docs.natenetworks.com/books/project-notes/page/command-guide-to-backing-up-bookstack is resolved locally and use a hostname instead of an IP address, you can edit the hosts file on your local machine. This allows you to map th...

BookStack Backup Automation Every 6 Hours

02 - Project Notes

Creating a script to automate your BookStack backup process is definitely feasible, even with the requirement to input a password for the `mysqldump` command. You can streamline the process with a script that bundles these steps together. However, automating p...

Enabling SSH in Ubuntu

03 - All About Ubuntu

# Update Packages sudo apt update -y # Install Open SSH Server sudo apt install openssh-server # Make sure it says active (running) in green sudo systemctl status ssh # Enable SSH to start automatically on boot sudo systemctl enable ssh # Reboot the co...

Creating an IP Lookup with one line

03 - All About Ubuntu

Make a file called public-ip.sh sudo nano public-ip.sh Copy this: #!/bin/bash # dig command to lookup what the public ip address is dig +short myip.opendns.com @resolver1.opendns.com Make it executable: sudo chmod +x public-ip.sh Run the file and it ...

Reinstalling Ubuntu WSL on Windows from PowerShell

03 - All About Ubuntu

This is when you want to throw your build out the window and start fresh: wsl --unregister Ubuntu wsl --install -d Ubuntu Now you can start with a fresh install of Ubuntu in Windows Subsystem for Linux. To list all registered WSL distributions on your PC, ...

Installing a private self hosted AI

03 - All About Ubuntu

Network-Chuck-Private-AI-project This is for WSL on Windows or Linux or MacOS.See HERE for guide to fresh install Ubuntu on Windows. Guide to creating your own private AI.Download Ollama(ONLY USE IF LINUX COMMAND DOESN'T WORK BELOW)https://ollama.com/downloa...

Raspberri Pi 5 NAS Setup Jeff Gerling

02 - Project Notes

Updating the System Time in Raspian / Ubuntu

03 - All About Ubuntu

To check and update the system time via SSH on your Raspberry Pi (or any other Linux-based system), you can use the following steps: 1. Connect to your Raspberry Pi via SSH.   Open a terminal on your computer and type:    ssh [your_username]@[your_raspberry_...

Windows Server 22 - Reset Trial License

Windows Server

Windows Server 2022 Evaluation has an activation period of 180 days, and if you want to extend the activation period, you can reset the activation status with the following command: slmgr.vbs /rearm This command allows you to restart the 180-day activation p...

Resetting Network Adapters and TCP/IP Stack

08 - Windows 11

To reset network adapters in Windows, you can use the Command Prompt with administrative privileges. Here's how: 1. Open Command Prompt as an administrator. You can do this by searching for "Command Prompt" in the Start menu, right-clicking on it, and selecti...

CompTIA Stackable Certification List

Certifications

CompTIA Secure Infrastructure Specialist(A+ / Network+ / Security+) CompTIA Systems Support Specialist(A+ / Linux+) CompTIA IT Operations Specialist(A+ / Network+) CompTIA Network Vulnerability Assessment Professional (Security+ / PenTes...

Disabling the default admin account in Windows 10/11

08 - Windows 11

To disable the local administrator account in Windows, you can use either the Command Prompt or the Local Users and Groups manager. Here's how to do it using both methods: Using Command Prompt1.  Open Command Prompt as Administrator:   - Right-click the Start...

20 things you can do with Win+R

08 - Windows 11

The "Win + R" keyboard shortcut in Windows, which opens the "Run" dialog box, is a quick way to access various utilities, folders, and settings on your computer. Here are 20 useful things you can do with the "Win + R" command: 1. **msconfig** - Open System Co...