Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
/etc/ufw/applications.d/plexmediaserver
[plexmediaserver]
title=Plex Media Server (Standard)
description=The Plex Media Server
ports=32400/tcp|3005/tcp|5353/udp|8324/tcp|32410:32414/udp
[plexmediaserver-dlna]
title=Plex Media Server (DLNA)
description=The Plex Media Server (additional DLNA capability only)
| # SERVER - BACKUP HOST | |
| socat -u TCP-LISTEN:9876,reuseaddr OPEN:<FILENAME>,creat,largefile | |
| # CLIENT | |
| tar cvzf - ./* | socat -u STDIN TCP:<BACKUP_HOST>:9876,sndbuf=67108864,dontroute |
Last updated: 2017-03-18
exiftool -filename -filemodifydate -createdate -r -if '(not $datetimeoriginal) and $filetype eq "JPEG"' .
###Output photos that don't have datetimeoriginal to a CSV### Note this can take a long time if you have a lot of jpgs
| #!/usr/bin/ruby | |
| # Pulseaudio volume control | |
| class Pulse | |
| attr_reader :volumes, :mutes | |
| # Constructor | |
| def initialize | |
| dump = `pacmd dump`.lines | |
| @volumes = {} |