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

192 total results found

Change Pi-Hole Admin Password

Pi-Hole

This is to be run from a Terminal session on the Linux machine hosting the Pi-Hole installation. sudo pihole -a -p You will be asked to supply the new password for the Pi-Hole Admin User Output Enter New Password (Blank for no password): Confirm Password:...

Linux
Pi-Hole

Change IP and Gateway from Shell

Linux Security

Change IP ifconfig <interface_name> <ip_address> netmask <netmask_address> Change Gateway sudo route add default gw <gateway_ip_address> <interface_name> Example sudo ifconfig Ethernet 10.0.100.27 netmask 255.255.255.0 sudo route add default gw 10.0.10...

Linux
Networking

Proxmox QEMU Guest Agent

Proxmox Proxmox VMs

The qemu-guest-agent is a helper daemon, which is installed in the guest. It is used to exchange information between the host and guest, and to execute command in the guest. In Proxmox VE, the qemu-guest-agent is used for mainly three things: To prop...

Linux
Proxmox

How to Set or Change the Time Zone in Linux

Linux General

A time zone is a geographic region that has the same standard time. Typically the time zone is set during the installation of the operational system, but it can be easily changed at a later time. Using the correct time zone is essential for many systems relat...

Linux

Pinging from a base user - ping: socket: Operation not permitted

Linux Security

The error message ping: socktype: SOCK_RAW followed by ping: socket: Operation not permitted indicates that the user does not have the necessary permissions to use the ping command. The error message ping: => missing cap_net_raw+p capability or setuid? sugges...

Linux
Security

How to Download Files with cURL

Linux General

Client URL, or cURL, is a library and command-line utility for transferring data between systems. It supports many protocols and tends to be installed by default on many Unix-like operating systems. Because of its general availability, it is a great choice for...

Linux
cURL

Keep getting message '404:: command not found' every time opening terminal

Linux Bash

The 404 is in this file. sudo nano /etc/bash_completion.d/docker-compose Remove the line. No more 404 when logging in.

Linux
Bash

Install PVE Headers

Proxmox Proxmox Host

Enter the following in a terminal as root on the host machine. apt install pve-headers

Linux
Proxmox

Remove Subscription Notice

Proxmox Proxmox Host

To remove the “You do not have a valid subscription for this server” popup message while logging in, run the command bellow. You’ll need to SSH to your Proxmox server or use the node console through the PVE web interface. One Line Command Run the following o...

Linux
Proxmox

Resize LXC Root Disk

Proxmox LXC Containers

What is this for This guide is to show how to resize the root fs of a Proxmox LXC Container Go to the bottom of this page --->here for the quick way to do this in Proxmox 8.0+ On your proxmox node List the containers: pct list Stop the particular contain...

Linux
Proxmox

Windows Terminal Services – Local Session Manager Log

Microsoft Windows Windows Remote Desktop

What Is It? The TerminalServices-LocalSessionManager log contains entries about the allocation of local sessions, which are used for both local and remote interactive logins. It is updated by the Local Session Manager part of Remote Desktop Services (previous...

Windows RDS

Free Disk Space on Windows Command Line

Microsoft Windows Windows General

From the command line execute to get total and free space from the C drive fsutil volume diskfree c:

Windows Command Line

Windows Server 2019 SFTP Server

Microsoft Windows Windows Server

New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH SSH Server' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 -Program "C:\System32\OpenSSH\sshd.exe SFTP Installhttps://mushaaf.net/https-www-youtube-com-channel-uclop2-xarme45pg9x...

Windows Server

Where are Google Chrome Bookmarks Stored?

General Knowledge Google Chrome

Google Chrome is a cross-platform web browser from Google, used for accessing web pages on the internet. It allows you to download files for local access and add bookmarks to get quick access to your favorite and frequently visited websites. But sometimes, you...

Google Chrome

Install Chrome from Powershell

General Knowledge Google Chrome

Run from elevated Power Shell $Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /inst...

Google Chrome
PowerShell

Windows Installed Printers and Port

Microsoft Windows Windows General

This is run from an elevated PowerShell prompt Executing this command will list the installed printer name and Port/IP address for the printer. get-printer | select name, portname Example Output name portname ...

Microsoft Windows
PowerShell

How to convert Newton-Meters to Pound-Foot?

General Knowledge General

What is a Newton-Meter? Newton-Meter is a metric system torque unit. 1 Nm = 0.73756214728 lb-ft. Newton-meter is a torque unit but also a work unit. The symbol is "Nm".What is a Pound-Foot?Pound-Foot is an imperial and United States Customary torque unit. 1 l...

Windows Server Local Logon Scripts

Microsoft Windows Windows Server

This is the location for the Microsoft Windows Server Logon Scripts C:\Windows\System32\GroupPolicy\User\Scripts\Logon On another machine \\{SERVERNAME}\C$\Windows\System32\GroupPolicy\User\Scripts\Logon

Windows Server

Enabling Vaultwarden admin page

Docker

From This Page Enabling admin page IMPORTANT: It's heavily recommended to activate HTTPS before enabling this feature, to avoid possible MITM attacks. This page allows a server administrator to view all the registered users and to delete them. It also allow...

Docker
Vaultwarden

Fix Windows Computer has lost Domain Trust

Microsoft Windows Windows General

Log as a local admin, run PowerShell as administrator In PowerShell execute the following command Test-ComputerSecureChannel -repair -Credential (Get-Credential) Enter Domain Administrator credentials at the prompt. Voilá, no need to drop and join domain l...

Microsoft Windows
PowerShell