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

194 total results found

How to Reset Windows 10

Microsoft Windows Windows General

 

Microsoft Windows

How to bypass the internet requirement during Windows 11 setup

Microsoft Windows Windows General

Microsoft has put a stop to this method (March 2024). This method still works.   Windows 11, the latest operating system from Microsoft, has captivated users with its sleek design and enhanced features. However, one aspect that has drawn mixed reactions...

Microsoft Windows

How to deploy new teams on RDS Server 2019

Microsoft Windows Windows Server

Deploying Microsoft Teams on an RDS (Remote Desktop Services) Server 2019 can be a complex task, fraught with potential pitfalls and challenges. If you’re facing issues with the installation, configuration, or performance of Teams on your RDS server, you’re no...

Turn off Chrome Opening PDF Files

General Knowledge Google Chrome

Open Chrome and in the browser bar enter the following. chrome://settings/content/pdfDocuments Change the selected option to Download PDFs 

Google Chrome

Gnome Tracker - Frequently Asked Questions

Linux General

What is Tracker? It’s a search engine, and a database. Tracker Miner FS indexes content from your home directory automatically, so applications can provide instant search results when you need them. What files will Tracker index? The default configuration ...

Linux
Gnome

How to reload .bashrc settings without logging out and back in again

Linux Bash

If I make changes to .bashrc, how do I reload it without logging out and back in? You can enter the long form command: source ~/.bashrc or you can use the shorter version of the command: . ~/.bashrc

Linux

CrowdStrike July 19 2024 Issue Workaround

Microsoft Windows Windows General

The Cause CrowdStrike pushed and update that causes the sofware to have a null pointer error causing Microsoft Windows machines to cycle in a boot loop Microsoft reports Microsoft has indicated that powering down and rebooting the machine betweek 9 and 15 t...

Microsoft Windows

Immich - Promote User to Administrator

PostresSQL

Connect to the DB (run from within shell in the postgres container) psql immich postgres List all users SELECT * FROM users; To promote an existing user UPDATE users SET "isAdmin"='t' WHERE email='[email protected]';

PostgresSQL
Immich

List Databases

PostresSQL

Connect to the PostgresSQL psql List all Databases \l Output Example List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+------------+-----...

PostgresSQL

Whitelist in Minecraft

Minecraft

Definition Whitelist is used to manage server whitelists. In Java Edition, server operators can always connect when the whitelist is active, even if their profiles do not appear in the whitelist. In Bedrock Edition, players must be whitelisted regardless of ...

Minecraft

Linux Troubleshooting Commands

Linux General

Using Linux, especially as a server, often means dealing with new errors and resolving them. Most of them are easy to fix with just a web search. But some errors may require that you do some digging. In this guide, I'm sharing some Linux commands that will hel...

Linux

Adding Notification to SSH Logon

Linux SSH

What will this do This will initiate a Gotify notification with the User Name and IP address of an SSH login. Edit the sshd config file First we must edit the file /etc/pam.d/sshd to add a line to execute during the login process. sudo nano /etc/pam.d/ss...

Linux
SSH

The Linux file system structure explained

Linux General

If you're new to Linux, knowing how the file system is laid out will alleviate some confusion. The way the Linux file system is laid out makes perfect sense. I've been using Linux for so many years that I can't imagine another file system making more sense....

Linux

Disable SSH Password Login

Linux SSH

This page explains how to disable ssh password login on Linux permanently and only use ssh keys for login by setting up PasswordAuthentication no option in sshd server config. So, first, you need to set up a regular non-privileged user account. Next, configure...

Linux

How to Import OVA to Proxmox

Proxmox Proxmox VMs

What Is an OVA File? OVA file or a file with OVA extension is known as an Open Virtual Appliance, which means an Archive format of a ready Virtual Machine (VM) that you can import into your Virtualization Platform like Oracle Virtual Box or VMWare. The file ...

Proxmox
Virtual Machine
OVA

Nvidia GPU Passthrough Unprivileged LXC Containers

Proxmox LXC Containers

Getting a functional, and stable, Proxmox installation that also has working GPU passthru capabilities for LXC containers is a  critical step that you need to achieve for your home server setup to be maximized. These step provide you with just that. Enter the...

How to Use ethtool Command

Linux General

The ethtool command is used to display/change Ethernet adapter settings. You can change network card speed, auto-negotiation, wake on LAN setting, duplex mode using this tool in Linux. In this tutorial, we learn some ethtool command examples that help you tro...

How do I verify the speed of my NIC

Linux General

  Determine the device name From terminal determine the name of the NIC in questionThe command ip a will list all Network Devices along with information on the network devices. ip a Example of using the ip command with the option a  # ip a 1: lo: <LOOPB...