There are several ways to check swap space in Linux.
- The free command with the -h tag shows the total, available, and used swap space in a human-readable format.
free -h| ### Base Windows Configuration ### | |
| # Enable Windows Features... | |
| Enable-WindowsOptionalFeature -FeatureName Microsoft-Hyper-V-All -Online -NoRestart | |
| Enable-WindowsOptionalFeature -FeatureName Containers -Online -NoRestart | |
| Enable-WindowsOptionalFeature -FeatureName Microsoft-Windows-Subsystem-Linux -Online -NoRestart | |
| ### Chocolatey Installs ### | |
| # Install Chocolatey: https://chocolatey.org/install |
| #!/usr/bin/env bash | |
| # Usage: bash uninstall_vmware.bash | |
| remove() { | |
| entry="$1" | |
| echo -ne "Removing \e[1;34m$entry\e[0m... " | |
| sudo rm -rf "$entry" &> /tmp/uninstall-vmware.log | |
| if [[ ! -e "$entry" ]]; then | |
| echo -e "\e[1;32mOK\e[0m" |
#Mac OS X