Skip to content

Instantly share code, notes, and snippets.

@kymtwyf
Created April 29, 2016 03:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kymtwyf/39834c4337a14b68143711916c366b9d to your computer and use it in GitHub Desktop.
Save kymtwyf/39834c4337a14b68143711916c366b9d to your computer and use it in GitHub Desktop.
overflow 1.0M 1.0M 0 100% /tmp

Reference when executing df -hl shows /tmp is mounted on overflow :

overflow          1.0M  1.0M     0 100% /tmp

If your “/tmp” mount on a linux filesystem is mounted as overflow (often sized at 1MB), this is likely due to you not specifying “/tmp” as its own partition and your root filesystem filled up and “/tmp” was remounted as a fallback. To fix this after you’ve cleared space, just unmount the fallback and it should remount at its original point:

sudo umount overflow

If you get device is busy you can use sudo umount -l overflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment