How can I include a piece of those I've met so that they see themselves in me?
If I can sleep comfortably on a yoga mat, I have significantly expanded the 'surface area' of what's possible.
Tagged: travel.
No side wins when humans suffer; more to 'win' by finding out why are there are sides in the first place.
"Platform data" and "Other" disk usage
Reclaim Docker storage:
docker image prune
# or
docker image prune -a
docker volume prune
# remove downloaded packages
sudo apt-get clean
# clear package caches that can't be downloaded
sudo apt-get autoclean
# remove unused packages
sudo apt-get autoremove
5 Linux commands to check free disk space
# show disk space in human-readable format
df -h
# show disk usage in human-readable format for all directories and subdirectories
du -h -d 1
posted to
Strolling
[Life change is like a bridge from where you are to who you want to be. The version of you saying "I can never do that" will be shed when crossing the bridge, so just figure out how to get to the other side.]
Cannot update due to one tiny app filling up 20GB drive
Remove swap storage
sudo swapoff -a
# or
sudo swapoff /apps.swap
# if desired
truncate -s 1G /apps.swap
sudo rm /apps.swap