Used Scapy 2.4.3 w/ IPython 7.13.0
# Enable TLS parsing in Scapy in (/usr/lib/pythonX/dist-packages/scapy/config.py) by adding 'tls' to the "load_layers" list
# OR in a script by adding the line:
load_layer("tls")
#!/bin/sh | |
#"Now I am become rm-f, the destroyer of containers." | |
echo "Killing running containers..." | |
cont1=$(docker ps -q) | |
if [ -n "$cont1"]; then docker kill $cont1; fi | |
echo | |
echo "Removing containers..." | |
cont2=$(docker ps -a -q) |
In order for the LXC container to have full access the proxmox host directory, a subgid is set as owner of a host directory, and an ACL is used to ensure permissions.
Add the following line to /etc/pve/lxc/<CT_ID>.conf
mp0:/mount/point/on/host,mp=/mount/point/on/lxc
In the default Proxmox configuration, unpriviliged container subgids will have the prefix "10" followed by the expected 4-digit gid.
Windows: | |
right click on desktop | |
new -> shortcut | |
In the popup, paste the following line with <webpage> substituted: | |
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=<webpage> | |
Example (Spotify): | |
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=https://play.spotify.com/collection/songs |