Skip to content

Instantly share code, notes, and snippets.

@semyont
Last active December 25, 2018 11:04
Show Gist options
  • Save semyont/e3a8431168be7cbd47cbb579a00aa492 to your computer and use it in GitHub Desktop.
Save semyont/e3a8431168be7cbd47cbb579a00aa492 to your computer and use it in GitHub Desktop.
Clean UBUNTU Space
sudo apt-get clean
sudo apt-get autoremove --purge -y
@Avibek
Copy link

Avibek commented Dec 25, 2018

mongo db clean up:

db.getCollectionNames().forEach(function(c) { db.getCollection(c).deleteMany({});});
db.runCommand({repairDatabase:1})

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