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

78 total results found

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 - 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_...

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...

Guide for Configuring NTP Time Synchronization on a Windows Domain Controller

Windows Server

IntroductionThis guide provides step-by-step instructions to configure a Windows Server domain controller to use NTP for time synchronization. It includes configuring Group Policy settings and necessary firewall rules to ensure proper synchronization with NTP ...

Backing up Proxmox VMs if you have a storage pool already

09 - Proxmox

I have a storage pool made from 2 500GB SSDs in Proxmox.I have it made in ZFS. Enter the Proxmox shell: apt-update Then: Replace the SSDPool with the name of your poolMy pool is in ZFS so I can make the folder a different way than mkdir: zfs create SSDPo...