In this article I describe step by step how I installed Active Directory Domain Services (AD DS) and DNS on a Windows Server 2022 Datacenter VM in a VMware Fusion lab environment. The result is a fully functional domain controller for the domain lab.local, as the foundation for a Windows DevOps lab.
Environment Component Value Virtualisation VMware Fusion (macOS) Guest operating system Windows Server 2022 Datacenter (Desktop Experience) Hostname DC01 Domain name lab.
Open a Windows Terminal or Command session As Administrator
Check existing filters # pktmon filter list Clear all filters # pktmon filter remove Check capture status # pktmon status Add a filter for LDAPS # pktmon filter add -p 636 Start the capture # pktmon start --etw Try to connect again to the LDAP server / If you want to monitor a different port, repeat the command that generates the network traffic.
To be able to access systems on the LAN network through the VPN tunnel of the OpenVPN server, the LAN system must know that traffic destined for the VPN subnet must be sent via the OpenVPN server. Without this additional route, return traffic will not reach the VPN clients.
In this example, we use the subnet 10.0.8.0/24 as the IP range you have configured for the OpenVPN tunnel. This is the network in which all VPN clients receive an IP address.
P.S. Special thanks to Maria Isabel Rondini
She inspired this article as part of the research for her thesis, where she could use some extra attention for the tool ImageCompressor.
Do you want to make your photos smaller in size without losing quality? Good news: you don’t need to install any software for that! With the online tool ImageCompressor, you can simply upload your photos and compress them directly in your browser.
VBoxWebSrv is the VirtualBox Web Service that allows you to manage your VirtualBox virtual machines remotely through a web-based API. It is commonly used with tools like phpVirtualBox to provide a full web interface for VM control.
By running VBoxWebSrv as a Windows service, you ensure it starts automatically with your system and runs continuously in the background.
Installing VBoxWebSrv as a Windows Service with NSSM
Download NSSM (Non-Sucking Service Manager) from https://nssm.
Dear reader,
Recently I updated my Windows version of my MacBook Pro 16,1 BootCamp setup to Windows 11. Now I ran into the problem that my build in keyboard and trackpad were not working anymore. I had to overcome this issue by connecting a separate keyboard and mouse on a USB port.
I downloaded the software in the BootCamp utility on macOS that is compatible with my laptop, in this case version: Boot Camp drivers 6.
Close all Microsoft applications
Rename the cache folder in:
C:\Users\<User>\AppData\Local\Microsoft\OneNote\16.0
Restart OneNote
P.S.
Don't worry if the Notebooks seem empty, they will be regenerated.
What Mac are you using?
iMac (Retina 5K, 27-inch, Late 2015)
Model Identifiers: iMac17,1
What version of OCLP are you using?
2.3.1
What OS version do you have installed or are trying to install?
Installed: Sequoia 15.3.2 (24D81)
What exactly is the problem you are facing?
After installing OCLP 2.3.1 to disk my iMac refuses to boot. At boot I press the Option key to get the menu I choose the blue OCLP icon.
Step 1: Update System
$ sudo dnf update $ sudo dnf install epel-release $ sudo /usr/bin/crb enable Step 2: Install Docker from AlmaLinux Repo
$ sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo $ sudo dnf remove -y podman podman-docker podman-plugins $ sudo dnf remove -y runc $ sudo dnf clean all $ sudo dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin $ sudo systemctl enable --now docker $ sudo systemctl status docker $ sudo...
$ sudo dnf update
$ sudo reboot
(So any new installed kernel will be loaded)
$ sudo dnf install gcc kernel-devel kernel-headers make bzip2 perl
Go to the VirtualBox Menu > Devices > Insert Guest Additions CD image
Automated:
Press Run
Manual:
$ cd /run/media/$USER/VBox_GAs_*/ # Adjust path if needed
$ sudo ./VBoxLinuxAdditions.run
$ sudo reboot
Verification:
$ lsmod | grep vbox
(Check to see if vboxguest is listed)