Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
$ zfs destroy -nv system/usr/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] | |
would destroy system/usr/jails/[email protected] |
zfs list -H -o name -t snapshot | xargs -n1 zfs destroy |
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
Getting help: | |
-h — print basic options | |
-h long — print more options | |
-h full — print all options (including all format and codec specific options, very long) |
Inheritance and Virtual Table are often used to create interface in C++ polymorphic class
What if ... there were another way to do this ?
easier, cleaner, faster and more reliable
This article explains how to useCRTP
, [std::variant
](https://en.cppreference.com/w/cpp/utility/variant andstd::visit
to increase code performance.
Scenario:
Problem:
At boot TTY are randomly assigned to devices causing depending services/programs instabilities. They could indeed fail to start because of different TTY configurations.
Solution:
; source: https://gist.github.com/AdrienVR/4136db1bfb0d3d3490b0d1e23e56daf9 | |
; context: http://superuser.com/a/636973/124606 | |
#NoEnv | |
; Reloard script if not used | |
; https://www.autohotkey.com/docs/v2/lib/_SingleInstance.htm | |
#SingleInstance force | |
; https://www.autohotkey.com/docs/v2/lib/SendMode.htm | |
SendMode Input |
# nvidia-settings: X configuration file generated by nvidia-settings | |
# nvidia-settings: version 270.29 (buildd@roseapple) Fri Feb 25 14:43:24 UTC 2011 | |
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen 0 "Screen0" 1680 0 | |
Screen 1 "Screen1" LeftOf "Screen0" | |
InputDevice "Keyboard0" "CoreKeyboard" | |
InputDevice "Mouse0" "CorePointer" | |
Option "Xinerama" "1" |
Every so often I have to restore my gpg keys and I'm never sure how best to do it. So, I've spent some time playing around with the various ways to export/import (backup/restore) keys.
cp ~/.gnupg/pubring.gpg /path/to/backups/
cp ~/.gnupg/secring.gpg /path/to/backups/
cp ~/.gnupg/trustdb.gpg /path/to/backups/
Had to do this for some advanced networking with KVM, and couldn't figure out how to do it using the Nework Manager gui. Did find an article later that showed how to do it with nmtui, but it's so much easier to record what you did when using the cli.
Note: I now set net.ifnames=0
in grub for all my machines, to ensure my device names are "predictable" (so the first ethernet device will be "eth0" and not "ens1", "eno1 or anything else).
To see what everything looks like before starting: