Weekly Shaarli

All links of one week in a single page.

Week 17 (April 26, 2021)

Rockpi4/dev/usbnet - Radxa Wiki

Adding a rockpi as a network device to a host pc. I.e. networking over usb. Could be useful for low-latency vnc streaming.

Linux Hardening Guide | Madaidan's Insecurities

Extensive hardening guide from kernel, firewalls, swap, to userspace and more, covering pretty much all eventualities

PulseAudio/Examples - ArchWiki

To switch between headphones and speakers in pulseaudio activated pc quickly:

pactl set-sink-port [YOUR AUDIO CARD] analog-output-headphones | analog-output-speakers
Using ipad with raspberry pi to create a linux laptop
thumbnail

Connecting ipad to raspberry (over usb vnc, so latency should be minimal) to enable a linux desktop experience (ssh or vnc).

Then connect a keyboard and you should be off to the races.

The Hitchhiker’s Guide to Online Anonymity | How I learned to start worrying and love privacy

An incredibly thorough guide to online anonymity (and/or privacy) from laptop and phone handling through encryption to password and identity management.

linux - How to recursively find and list the latest modified files in a directory with subdirectories and times - Stack Overflow
thumbnail

Most flexible solution to the problem should be some variation of:

find $DIRECTORY -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | head