Advanced Search
Search Results
192 total results found
Change Pi-Hole Admin Password
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:...
Change IP and Gateway from Shell
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...
Proxmox QEMU Guest Agent
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...
How to Set or Change the Time Zone in Linux
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...
Pinging from a base user - ping: socket: Operation not permitted
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...
How to Download Files with cURL
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...
Keep getting message '404:: command not found' every time opening terminal
The 404 is in this file. sudo nano /etc/bash_completion.d/docker-compose Remove the line. No more 404 when logging in.
Install PVE Headers
Enter the following in a terminal as root on the host machine. apt install pve-headers
Remove Subscription Notice
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...
Resize LXC Root Disk
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...
Windows Terminal Services – Local Session Manager Log
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...
Free Disk Space on Windows Command Line
From the command line execute to get total and free space from the C drive fsutil volume diskfree c:
Windows Server 2019 SFTP 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...
Where are Google Chrome Bookmarks Stored?
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...
Install Chrome from Powershell
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...
Windows Installed Printers and Port
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 ...
How to convert Newton-Meters to Pound-Foot?
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
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
Enabling Vaultwarden admin page
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...
Fix Windows Computer has lost Domain Trust
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...