Linux How to free up space
$ sudo journalctl --vacuum-size=100M Remove old snap versions that might be taking space #!/bin/bash # Removes old revisions of snaps # CLOSE ALL SNAPS BEFORE RUNNING THIS set -eu snap list --all | awk '/disabled/{print $1, $3}' | while read snap...
Oct 9, 20221 min read24