Posts with "ubuntu" Tag

Nextcloud in Docker

by Dan Aukes

docker-compose

```yaml version: '2'

volumes: nextcloud: db:

services: db: image: mariadb:10.5 ...

Read More
Start docker automatically as a ```systemd``` service

by Dan Aukes

Docker Compose Example

copy and paste the folowing text into a new file called ~/script.sh

```bash

!/bin/bash

SERVICENAME=$(basename ...

Read More
Using Github with two accounts

by Dan Aukes

Instructions

  1. Create a new, separate key for each github account

    follows ...

Read More
Installing GrapheneOS on a Pixel 4a

by Dan Aukes

Instructions derived from https://grapheneos.org/install/cli

Download Developer Tools

```bash sudo apt install -y android-sdk-platform-tools-common sudo apt install -y signify-openbsd echo ...

Read More
IOT Stuff

by Dan Aukes

Collection of IOT Notes

Read More
Fail2Ban

by Dan Aukes

Derived from here:

```bash sudo apt install -y fail2ban sudo systemctl enable fail2ban sudo systemctl start ...

Read More
Using the ```find``` command in bash

by Dan Aukes

Using the find command in bash

Find files with find

```bash find [-flags] path -expression find ~/ ...

Read More
Grep Cookbook

by Dan Aukes

A cookbook of common grep commands

Read More