This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-License-Identifier: MIT | |
Set-PSReadlineOption -BellStyle None | |
Set-PSReadlineOption -EditMode Emacs | |
function Stop-AllContainers() { | |
docker ps -a -q | ForEach-Object { docker rm -f $_ } | |
} | |
New-Alias -Name massacre -Value 'Stop-AllContainers' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#SPDX-License-Identifier: MIT | |
#Based on information from | |
#https://community.time4vps.com/discussion/364/ubuntu-xfce-usage-for-rdp-access-to-ubuntu-server | |
#First run: | |
sudo apt update |