docker run --privileged -d minimum2scp/systemd:latest
ssh login to container:
apt install -y screen dirmngr knot-dnsutils lsof dnsutils sudo nano htop nload wget curl zip unzip iproute2 net-tools iputils-ping systemd procps apt-utils debconf-utils dialog apt-transport-https ca-certificates gnupg lsb-release nload tcpdump mtr build-essential
apt install iproute2 net-tools
This file contains hidden or 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
# Configuration for Alacritty, the GPU enhanced terminal emulator. | |
# Import additional configuration files | |
# | |
# Imports are loaded in order, skipping all missing files, with the importing | |
# file being loaded last. If a field is already present in a previous import, it | |
# will be replaced. | |
# | |
# All imports must either be absolute paths starting with `/`, or paths relative | |
# to the user's home directory starting with `~/`. |
This file contains hidden or 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
import cdk = require('@aws-cdk/core'); | |
import s3 = require('@aws-cdk/aws-s3'); | |
import iam = require('@aws-cdk/aws-iam'); | |
import kdf = require('@aws-cdk/aws-kinesisfirehose'); | |
import lambda = require('@aws-cdk/aws-lambda'); | |
import * as wafv2 from '@aws-cdk/aws-wafv2'; | |
import * as ssm from '@aws-cdk/aws-ssm'; | |
import * as cr from '@aws-cdk/custom-resources'; | |
import { EmptyBucketOnDelete } from './empty-bucket'; |