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

63 total results found

AdGuardHome: Change the Admin Password

Docker

If you are using docker there is an easier way to reset the password of AdGuardHome. By using an apache docker image instead of installing apache2 on a server: By using this command to call htpasswd from an Apache docker image. docker run httpd:2.4 htpasswd ...

How to Extract or Unzip .tar.gz Files in Linux

Linux General

Introduction A .tar.gz file is a compressed archive format commonly used in Linux systems. The format combines multiple files and directories into a single file while reducing their size. It uses tar for archiving and gzip for compression. Knowing how to unz...

Linux

tar Command in Linux With Examples

Linux General

Introduction The GNUtar (short for Tape ARchiver) command is the most widely used archiving utility in Linux systems. Available directly in the terminal, the tar command helps create, extract, and list archive contents. The utility is simple and has many hel...

Linux

How to Find Files in Linux With the Find Command

Linux General

Introduction The find command allows you to search for a specific string of characters using your Linux command-line interface. It is a highly practical tool as it is not limited to file names. You can use it to search a specific location, add options to cont...

Linux

How to Copy Files and Directories in Linux

Linux General

Introduction Copying files and directories in Linux is an essential administrative task. Copies are instrumental for backing up important files or transferring them to a different location, for example, a data storage device. The cp command is useful for bas...

Linux

Jellyfin in an Unprivileged LXC Container

Proxmox LXC Containers

This will allow a Jellyfin instance to run in an unprivilidged LXC Container with an iGPU passed into it. Either as an install or in a Docker image. On the Proxmox Host System Find Device Numbers ls -l /dev/dri Find Group Numbers cat /etc/group Add Group...

Linux
Proxmox

How to install Qemu guest agent for Debian / Ubuntu

Linux Ubuntu Specific KB

Estimated reading time: 1 min Install Qemu guest agent for Debian/Ubuntu In this article, we will help you to install the Qemu guest agent on your virtual private server. This agent is a helper daemon that exchanges information between the quest and ...

Linux
Ubuntu

Docker and Portainer Install

Docker

Running and managing containers on Linux may sound like a daunting task, and to be fair, it can be. For those of you that want to run containers and do so on a platform that’s easy to get started with, then look no further than Portainer! In this video Jay goe...

Linux
Docker

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

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

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