Skip to content

Latest commit

 

History

History
89 lines (55 loc) · 1.62 KB

misc.md

File metadata and controls

89 lines (55 loc) · 1.62 KB

Miscellaneous topics

Changelog file

https://keepachangelog.com/

Diagrams

Editors

File Managers

Terminal-based

freedesktop.org specs

basedir-spec

https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

Keyboard layout management

On Linux

Command showing the available keymaps:

localectl list-keymaps

Select a keymap from the list and run:

loadkeys <map>

Protocols and APIs

STAC - SpatioTemporal Asset Catalogs

The STAC specification is a common language to describe geospatial information.

RAM Disk

ramdisk, ramfs, tmpfs

Mount a tmpfs volume on Linux

sudo mkdir -p /<path>
sudo mount -t tmpfs -o size=<size><unit-prefix> tmpfs /<path>

Example:

sudo mkdir -p /media/ramdisk
sudo mount -t tmpfs -o size=2048M tmpfs /media/ramdisk

Remote Desktop clients

X11

Windows software on Linux