Posts with "ubuntu" Tag

Nextcloud in Docker

by danaukes

docker-compose

```yaml version: '2'

volumes: nextcloud: db:

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

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

by danaukes

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 danaukes

Instructions

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

    follows ...

Read More
Installing GrapheneOS on a Pixel 4a

by danaukes

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 danaukes

Collection of IOT Notes
Read More
Fail2Ban

by danaukes

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 danaukes

Using the find command in bash

Find files with find

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

Read More
Grep Cookbook

by danaukes

A cookbook of common ```grep``` commands
Read More