Posts with "linux" Tag

Run scripts remotely over ssh with ```tmux```

by Dan Aukes

Overview

tmux is tool that lets you run multiple sub-sessions from one session. It's good ...

Read More
UFW -- Uncomplicated Firewall

by Dan Aukes

To turn on UFW,

```bash sudo ufw allow 22 sudo ufw enable sudo ufw status sudo systemctl enable ufw sudo systemctl ...

Read More
User Management

by Dan Aukes

Managing Users in Linux / Ubuntu

Read More
Micropython on Linux

by Dan Aukes

```bash sudo apt install -y build-essential libffi-dev git pkg-config git clone https://github.com//micropython cd micropython git remote add upstream ...

Read More
Installing and Setting up MQTT

by Dan Aukes

Installation

sudo apt update
sudo apt install -y mosquitto mosquitto-clients
sudo snap install mqtt-explorer

Example Setup

```bash sudo cp ...

Read More
QR Code Tools

by Dan Aukes

modified from this site

Installing

```bash sudo apt install -y qrencode #encoding tools sudo apt install -y ...

Read More
Looping Video into Zoom

by Dan Aukes

sudo apt install -y v4l2loopback-dkms v4l-utils
ls /dev/video*
sudo modprobe v4l2loopback video_nr=9 card_label=“virtual-cam” 
```bash ffmpeg -stream_loop -1 -re ...

Read More