Remove VLAN and IP configuration in Windows 2019 Core

in this example I will remove VLAN 419 and associated IP addressing using Powershell This is a follow on from http://www.jordansphere.co.uk/add-lacp-interface-and-vlan-via-cli-in-windows-2019-core/ Remove IP addressing: Remove-NetIPAddress -IPAddress 10.9.34.196 -PrefixLength 26 -InterfaceAlias “Storage – VLAN 419” Remove VLAN: Remove-NetLbfoTeamNic -Team “Storage” -vlanid 419

Change Timezone in Rocky 8

The following quick guide will show how to change the timezone. In this example my Rocky * machine is set to America/New York but I need to change it to Europe/London. Confirm current timezone My output showed: lrwxrwxrwx. 1 root root 38 Oct 18 05:40 /etc/localtime -> ../usr/share/zoneinfo/America/New_York To list all timezones Once you have Read More…

Configure NTP Client on Rocky 8

The following quick-guide describes how to install and configure NTP Client on a Rocky or CentOS 8 OS. Check to see if Chrony is already installed If it is not installed run: Edit Chrony config file Replace pool 2.pool.ntp.org iburst with your desired NTP server eg (pool uk.pool.ntp.org) Restart chronyd service You will also need Read More…