PowerShell

PowerShell is een krachtige opdrachtregelshell en scripttaal die is ontwikkeld door Microsoft. Het is ontworpen om systeembeheerders en ontwikkelaars te helpen bij het beheren en automatiseren van taken op Windows-besturingssystemen. Hier is een eenvoudige uitleg van PowerShell: Opdrachtregelshell: PowerShell biedt een opdrachtregelinterface waarmee je opdrachten kunt invoeren om verschillende systeemtaken uit te voeren. Het werkt … Lees meer

How to add a GUI for your Ubuntu firewall

How to install the UFW GUI What you’ll need:  To make this process work, you’ll need – Ubuntu — or any Ubuntu-based distribution – user with sudo privileges.  1. Open the terminal window app To install the UFW GUI, open the terminal app on your desktop, which can be done from the desktop menu. 2. … Lees meer

install Docker CE on Rocky Linux 8

The steps given here will also work for RHEL and CentOS 8 sudo dnf config-manager –add-repo=https://download.docker.com/linux/centos/docker-ce.repo sudo dnf update sudo dnf install docker-ce docker-ce-cli containerd.io sudo systemctl enable docker sudo systemctl start dockerCheck the Status of the Service to know if it is working properly. systemctl status docker sudo usermod -aG docker $USERCheck whether your … Lees meer