howto

9 posts in this category

November 24, 2021

Postgres on podman

Steps to getting PostgreSQL running on Endeavor via Podman.

May 4, 2018

GoAccess working with Centos 7

I use Nginx as a proxy for my dotnet core application and with that I wanted to get some reporting so I installed GoAccess, which generates a nice HTML report. Set this up in your root crontab via a "crontab -e" as root:…
March 9, 2018

CentOS First Steps

First security steps when setting up any new internet facing linux server: Create a new user account # adduser username # passwd username # usermod -aG wheel username Send SSH key scp id_rsa.pub username@hostname:/home/username…
January 24, 2016

Creating a full MariaDB backup

For some reason I have had a time finding succinct information on creating a simple full (and by full I mean a file you can use to bare metal recover a database) backup with MariaDB. 1. Make a ~/.my.conf file: 2. Run this…
August 28, 20151 views

Splitting CUE/Log Flac Files

I ran across some old FLAC files I ripped and for some unknown reason I decided at the time that a the FLAC LOG/CUE format was the way to go. I dunno perhaps I was intoxicated at the time. At any rate is what I used to split…
May 25, 2015

Setting up Wordpress FavIcon

I wanted something a bit more custom looking than the stock Wordpress Icon so I decided to take my avatar and make a favIcon from that. I went to Favicon-Generator it does a nice job of resizing and making the "ico" file…
May 17, 2015

ASP.NET 5 on Ubuntu on VirtualBox

I figured out the magic sauce for getting ASP.NET 5 running on Ubuntu 14.04 in a VirtualBox VM. I followed this mostly for the setup but your Dockerfile should look like this: Be sure and set your VirtualBox setting to …