Install a minimal Debian server virtual machine
64-bit PC netinst iso file from debian.orgCreate/Register VM:Create a new virtual machineLinux and Debian GNU/Linux <xx> (64-bit)Target DatastoreCPU:Add other device > NVMe controllerHard Disk 1 > Controller location > NVMe controller 0SCSI controller 0VM Options > Boot Options > Enable Force BIOS setupFinishHost > Manage > System > Autostart:EnableStart earlier and Start later to set the desired orderVirtual Machines on the sidebar and click on the current VMHardware Configuration > Network adapter 1) and desired hostnameroot to disable root login and setup sudoSSH server and Standard system utilities# Install VMWare tools if not already sudo apt install open-vm-tools # Change the SSH port to 50001: sudo sed -i "s/#Port 22/Port 50001/" /etc/ssh/sshd_config # Optionally enable root SSH login sudo sed -i "s/#PermitRootLogin prohibit-password/PermitRootLogin yes/" /etc/ssh/sshd_config # Optionally set the timezone to UTC: timedatectl set-timezone UTC exit
Minimal server installation of Debian <xx> Ports: 50001/tcp SSH
Base Installsudo apt update sudo apt upgrade sudo reboot # If desired/needed