Linux中的磁盘空间管理:3个简单步骤
原文英文,约500词,阅读约需2分钟。发表于: 。Recently I encountered a situation when my VM was running low on disk space and I had to free up some space using CLI. Below are the 3 simple steps that anyone can follow to do the same on a Linux...
最近我的虚拟机磁盘空间不足,使用CLI释放空间的步骤包括:1. 使用`df -h`检查磁盘使用情况;2. 用`du -h / --max-depth=1`查看各文件夹占用;3. 使用`rm -rf`删除不必要的文件。希望对你有帮助。