Skip to content

Instantly share code, notes, and snippets.

@therandomsecurityguy
therandomsecurityguy / ubuntu16.04.sh
Created September 25, 2018 21:42
Ubuntu 16.04 hardening script
#!/bin/bash
# Title: Ubuntu 16.04 Hardening
#
# DESCRIPTION: MODIFY / CHANGE / UPDATE / CONFIGURE
#
# Patching and Software Updates
apt-get -y update
apt-get -y upgrade
#
# File System Configuration

Keybase proof

I hereby claim:

  • I am therandomsecurityguy on github.
  • I am dchamorro (https://keybase.io/dchamorro) on keybase.
  • I have a public key whose fingerprint is EF75 2860 41CA FA9C C088 364E 1C01 B4C1 A1F8 2C12

To claim this, I am signing this object:

@therandomsecurityguy
therandomsecurityguy / cardano-node-upgrade.md
Last active May 7, 2021 13:57
Upgrading Cardano nodes

Running Cardano relays and block nodes is a fun project, but upgrading nodes can be a bit of a pain. I compiled some simple steps I used to upgrade from Cardano node 1.26.1 to 1.26.2.

  1. Update/upgrade and install cabal requirements
sudo apt update -y
sudo apt upgrade -y

sudo apt install build-essential curl libffi-dev libffi7 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 -y