Explore >> Select a destination


You are here

digitaldrummerj.me
| | www.morling.dev
11.8 parsecs away

Travel
| | As a software engineer, I like to automate tedious tasks as much as possible. The deployment of this website is no exception: it is built using the Hugo static site generator and hosted on GitHub Pages; so wouldn't it be nice if the rendered website would automatically be published whenever an update is pushed to its source code repository?
| | www.ayush.nz
12.3 parsecs away

Travel
| | Introduction to Ansible
| | sgfault.com
12.3 parsecs away

Travel
| | In this blog I write about technology, programming, open source and Linux, both technically and in general. May contain traces of rant.
| | willhaley.com
49.8 parsecs away

Travel
| Encrypt and Decrypt a Single File on Linux with AES256 and GPG Encrypt gpg --cipher-algo AES256 --symmetric --output encrypted.file plain.file Decrypt gpg --output plain.file --decrypt encrypted.file Change the key file for a LUKS device cryptsetup luksChangeKey /dev/sdX --key-file /keys/old.keyfile /keys/new.keyfile Create a LUKS Encrypted Image Container File Create an empty 1GB img file dd if=/dev/zero of=encrypted.img bs=1 count=0 seek=1G Choose a keyfile that will be used to encrypt and unlock the image. Any regular file works as a key. A random key can be generated like so.