Here's another #techromancy tip:
Create a 2GB "sacrificial" file for your volumes. When the disk fills up and your system locks up, kill it and run your cleanup scripts. It's helped me get out of a bind a few times now.
```bash
dd if=/dev/urandom of=sacrifice.txt bs=1M count=2048
```
```bash
rm sacrifice.txt
```
Hit that bell icon for more techromancy tips and cyberlifehacks
@mauve OMG this is actually such a good idea