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...
blog.davidassigbi.com1 min read