Upgrade Old Ubuntu Server Versions

Upgrade Old Ubuntu Server to New LTS Use sed to update /etc/apt/sources.list sudo sed -i -e 's/archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list apt update apt upgrade apt dist-upgrade

September 4, 2022 · 1 min · Ryan Jones

The Ultimate Plex or Emby Htpc Set Up

I’ve spent the last year or so perfecting my movie curation experience. It started when I build my first Unraid Server using an old Dell R410 that I had laying around my lab. It was a relatively good experience as a NAS system, but then I Decided to centralize all my movies and tv shows. Like lots of people I had stacks of DVDs and Blu-Rays laying around the house, it was a pain to store them in a place that made them readily accessible for those days when I wanted nothing more than to binge watch some of my favorite content....

April 17, 2022 · 1 min · Ryan Jones

Ansible and Docker

Automate you docker containers with ansible --- - name: install pre-reqs apt: name: "{{item}}" state: present with_items: - "ca-certificates" - "curl" - "software-properties-common" - name: docker repo key apt_key: url: https://download.docker.com/linux/ubuntu/gpg state: present - name: docker repo install apt_repository: repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable state: present - name: install docker apt: name: docker-ce state: present update_cache: yes - name: start service service: name: docker state: started enabled: true - name: ensure docker-py is installed apt: name: "{{ item }}" state: present with_items: - "python-docker" - "python3-docker" - name: add user to docker group user: name: ryan group: docker append: yes --- - name: file: path: "{{ item }}" state: directory with_items: - ["/config", "/key", "/music", "/movies", "/pics", "/vids", "/tv" , "/weddingg_vids", ] --- - name: Mount config nfs mount: path: /config src: freenas:/mnt/tank/docker_host fstype: nfs state: mounted - name: Mount key nfs mount: path: /key src: freenas:/mnt/tank/key fstype: nfs state: mounted - name: Mount music nfs mount: path: /music src: freenas:/mnt/tank/music fstype: nfs state: mounted

August 27, 2019 · 1 min · Ryan Jones