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

502 total results found

Kill Active Replication Task

TrueNAS - Cheatsheet Replication

ps -aux | grep rsync <PID> here is the process number in the second column of the ps output. Code: [root@freenasxl ~]# ps -aux | grep rsync root 24116 11.1 0.1 36488 32400 - S 18:09 10:28.49 /usr/local/bin/rsync -a -z --delay-updates --d...

Remove vSAN Datastore Without vCenter

VMWare - Cheatsheet vSAN

Run the following command to list the vSAN datastore esxcli vsan cluster list Copy the Sub-Cluster UUID as shown below. Run the following command and paste the Sub-Cluster UUID at the end, that you grabbed from the previous step. esxcli vsa...

Vim Cheatsheet

Vim - Cheatsheet

Useful Keyboard Shortcuts Select the beginning of a function Shift-V - Get version of vim :version Copy Get to the end of a function $% Copy Autoindent the current file gg=G Copy Breaking it down: gg to get to the start of ...

Windows Command Line Cheatsheet

Windows - Cheatsheet

Powershell Enable ISE using powershell In the few months that I’ve been developing powershell, I’ve found the ISE to be incredibly useful. If you get on a new machine and the ISE isn’t there, here’s how you can get it going in the powershell terminal: Impor...

Windows Start | Run Commands

Windows - Cheatsheet

Accessibility Options utilman or control access.cpl Add Hardware Wizard hdwwiz Programs and Features (Add New Programs) (Add Remove Windows Components) (Set Program Access & Defaults ) appwiz.cpl control appwiz.cpl,,1 cont...

Count Members of an AD Group

Active Directory - One Liners

(Get-ADGroup "Enforce MFA" -Properties *).Member.Count  

Manage Who Can Create Microsoft 365 Groups

Microsoft 365 - Walkthroughs Group Management

In this article Licensing requirements Step 1: Create a group for users who need to create Microsoft 365 groups Step 2: Run PowerShell commands Step 3: Verify that it works Related topics By default, all users can create Microsoft 365 groups. Thi...

Perform Nexus Health and Configuration Check

Cisco - Cheatsheet Get Information

Updated:November 7, 2023 Document ID:217990 Contents Introduction Prerequisites Requirements Components Used Conventions Health and Configuration Check Procedure Health and Configuration Check Modules Reports and Caveats FAQs Fe...

Configuring InterVLAN Routing with a Layer 3 Switch and pfSense

Cisco - Walkthroughs InterVLAN Routing

Posted on August 19, 2019 by Greig Mitchell — 24 Comments ↓ Recently I was tasked with deploying a Layer 3 managed network switch alongside an existing pfSense firewall appliance for a relatively small network. As a quick bit of a background the network ...

Configuring Port ACLs and VLAN ACLs

Cisco - Walkthroughs InterVLAN Routing

Configuring Port ACLs and VLAN ACLs This chapter describes how to configure port ACLs (PACLs) and VLAN ACLs (VACLs) in Cisco IOS Software Release 12.2SX. Note: For complete syntax and usage information for the commands used in this chapter, see the C...

Cisco Nexus 3000 Series NX-OS Fundamentals Configuration Guide, Release 9.3(x)

Cisco - Walkthroughs Device Specific Configuration

Information About Basic Device Management This section provides information about basic device management. Device Hostname Message-of-the-Day Banner Device Clock Clock Manager Time Zone and Summer Time (Daylight Saving Time) User Sessions ...

Saving the Running Configuration to the Startup Configuration

Cisco - Cheatsheet Managing Configs

You can save the running configuration to the startup configuration to save your changes for the next time you that reload the device. Procedure Command or Action Purpose Step 1 show running-configExample: show running-config   (Optiona...

warning: cannot send disk (Broken pipe) (I/O error) (already exists)

Proxmox - Cheatsheet Troubleshooting

If you see an error when trying to replicate such as these.2023-11-14 14:38:08 100-0: warning: cannot send 'NVMe-R10-6D/vm-100-disk-0@__replicate_100-0_1699990683__': Broken pipe2023-11-14 14:38:08 100-0: cannot send 'NVMe-R10-6D/vm-100-disk-0': I/O error2023-...

LACP Port-Channel Trunk

Cisco - Walkthroughs Port Setup

1. Enter the configuration mode. config t 2. Enter the interface/s that you want to add to the port channel/LACP. int e1/5 For multiples use below. int e1/5-6 3. Give a description of the ports. desc MUT7-RACK-SWI-POE1 4. Configure the port/s as a swit...

Define VLANs Allowed on Trunk Link

Cisco - Walkthroughs Port Setup

1. First navigate to the interface for the port or port-channel. config t int e1/1 Below for a port-channel. config t int port-channel 1 2. Ensure the port/port-channel is a trunk. switchport mode trunk 3. To add a VLAN, use the following command to ad...

List all Permissions in Share Recursively

Windows - Scripts File System - Windows

Get-childitem \\network\share\ -recurse | Where-Object{$_.psiscontainer} | Get-Acl | ForEach-Object { $path = $_.Path $_.Access | ForEach-Object { New-Object PSObject -Property @{ Folder = $path.Replace("Microsoft.PowerShell.Co...

Fdisk results in GPT mismatch

Synology - Cheatsheet Repairs

GPT PMBR size mismatch (225279 != 250879) will be corrected by w(rite). To fix the above, run the following set of commands. 1. SSH into the server and log into root. sudo su 2. Run parted. parted 3. List all disks. print all 4. When it finishes listin...

Compare Two Azure/AD/M365 Groups and Print the Results

Active Directory - Scripts

Compare two AD Groups. $GROUP1=Get-ADGroupMember -Identity "Domain Admins" | select-Object Name $GROUP2=Get-ADGroupMember -Identity "Enterprise Admins" | select-Object Name $Comparison=Compare-Object -ReferenceObject $GROUP1.Name -DifferenceObject $GROUP2...