I'm just dumping this here for now; maybe some day a bit of commentary might follow. I needed a quick, easy and (hopefully) secure way to spin up an SFTP server. Since I don't want to get into complex configuration, a Docker container seems a safe choice as it isolates the SFTP server from the … Continue reading Run an SFTP server in a container
Tag: linux
Toggling keyboard languages in Ubuntu 24.04 with Alt + Shift
Windows introduced [citation missing] the Alt + Left Shift key combination for switching between keyboard languages and ever since I tried to configure that combination for every setup I've worked with. Ubuntu, unfortunately, made it harder and harder over time to do that. User Raffa on askubuntu has the solution [KL]: Open a terminal and … Continue reading Toggling keyboard languages in Ubuntu 24.04 with Alt + Shift
Elgato Camlink and Linux
An Elgato Camlink 4K wouldn't work under Ubuntu 22.04. It would show up with lsusb, but Cheese wouldn't list it as a device and OBS studio would show it as a disabled device. A little stream conversion magic [RED] #!/usr/bin/env bash # You need to run # sudo apt install v4l2loopback-utils v4l2loopback-dkms # once and … Continue reading Elgato Camlink and Linux
Removing unused snap packages
I think that Ubuntu 22.04 doesn't remove old snap packages when they become unused because on my system this command: snap list --all shows a long, long list of packages. User chipaca found an elegant solution [sh]: LANG=C snap list --all | while read snapname ver rev trk pub notes; do if [[ $notes = … Continue reading Removing unused snap packages
Running Wikipedia offline
This post explains how to run Wikipedia offline on Linux inside a Docker container. Prerequisites (not explained here): a web browser to access the offline copy a Linux server connected to your network Docker on the Linux server 1. Download a ZIM archive of Wikipedia. In this example I used wikipedia_en_all_maxi_2023-11.zim. You can find the … Continue reading Running Wikipedia offline



