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
version: "3.8" | |
networks: | |
web: | |
name: web | |
services: | |
whoami: | |
container_name: whoami | |
image: containous/whoami:v1.5.0 |
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
git log --pretty=format:%s v0.3.3..v0.4.0 | egrep -v "^Merge.*" | xargs -I '{}' echo "* {}" |
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
// Automatically generated configuration file for Hyperion ambilight daemon | |
// Notice: All values are explained with comments at our wiki: wiki.hyperion-project.org (config area) | |
// Generated by: HyperCon (The Hyperion deamon configuration file builder) | |
// Created with HyperCon V1.03.3 (22.10.2017) | |
{ | |
// DEVICE CONFIGURATION | |
"device" : | |
{ | |
"name" : "MyHyperionConfig", |
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
Let /dev/sdb be the disk. | |
# Create partition | |
sudo cfdisk /dev/sdb -> cerate partition /dev/sdb1 | |
# Initialize disk data with random bits | |
sudo shred --verbose --random-source=/dev/urandom --iterations=3 /dev/sdb1 | |
# Create the cryptographic device (leave hash and iter-time to default values if the drive will be mounted on a slow device) | |
sudo cryptsetup --verbose --cipher aes-xts-plain64 --key-size 512 --hash sha512 --iter-time 5000 luksFormat /dev/sdb1 | |
# Open device | |
sudo cryptsetup open --type luks /dev/sdb1 DEVSDB1 |