no d inrogers
open-menu closeme
nav_home Home
nav_tags Tags
nav_categories Categories
nav_archives Archives
nav_about About
English Português
  • Docker SFTP server

    calendar March 20, 2021 nav_categories Tech nav_categories Networking nav_tags docker nav_tags networking nav_tags sftp

    I had a couple of files I needed to provide to a friend on a regular basis.

    • The files were too big to email.
    • The files would change every week.
    • They were created/stored on my NAS.
    • Neither of us wanted to go through the hassle of using Dropbox/Google Drive/etc.

    Simple solution was for me to create a simple Docker …

    Read More
  • Quick Ubuntu for testing

    calendar March 8, 2021 nav_categories Tech nav_tags docker nav_tags ubuntu nav_tags linux

    I needed to run a quick test on a virgin Linux system.

    Rather than spinning up a virtual machine, I just ran a single Docker command, and was up and running.

    docker run -it --entrypoint "/bin/bash" ubuntu:latest
    

    That's it. Really, it's that simple.

    From the Docker docs:

    An ENTRYPOINT allows you to configure a …

    Read More
  • Pi-hole running in a Docker container

    calendar February 23, 2021 nav_categories Tech nav_categories Software nav_tags docker nav_tags linux nav_tags pi-hole nav_tags pihole nav_tags ubuntu

    I was on my mobile, looking up a few recipes, I was amazed at the number of intrusive ads I was getting, which made reading the web pages almost impossible.

    Decided it was time to investigate Pi-hole, as I'd heard good things about it.

    The Pi-hole is a DNS sinkhole that protects your devices from unwanted content, …

    Read More
  • Oh My Zsh

    calendar February 17, 2021 nav_categories Tech nav_tags oh my zsh nav_tags shell nav_tags zsh nav_tags macos nav_tags osx

    When MACOS changed the default shell from bash to zsh, I waited a bit, as I'd used bash for years and years, and was really familiar with it.

    Post-clean install of Big Sur, I left my default shell as zsh.

    Doing some reading, installed Oh My Zsh

    Oh My Zsh is a delightful, open source, community-driven framework for …

    Read More
  • Using a Linux box as a router

    calendar January 26, 2021 nav_categories Tech nav_categories Networking nav_tags linux nav_tags networking nav_tags routing

    The purpose was to have a Linux box act as a simple router.

    Devices:

    • Device1, configured with a 10.10.10.10 IP.
    • Device2, which will be our router, configured with 2 interfaces: 10.10.10.1 and 192.168.1.245.
    • Device3, which is my Internet-facing router, with an internal IP of 192.168.1.1

    The router is going to be …

    Read More
  • Password-less sudo

    calendar January 20, 2021 nav_categories Tech nav_tags linux nav_tags sudo

    Horrible idea in a production box, but great idea for a single user lab system.

    To accomplish this, we'll use the visudo command, which edits the /etc/sudoers file in a safe manner, aka, protect you from seriously messing up your system.

    sudo visudo
    

    At the bottom of that file, add (assuming your username is tom, …

    Read More
    • ««
    • «
    • 11
    • 12
    • 13
    • 14
    • 15
    • »
    • »»

©2019 -   |  www.nodinrogers.com
Powered by Hugo and based off of the Hugo Clarity theme

to-top