Python causing: IOError: [Errno 28] No space left on device: '../results/32766.html' on disk with lots of space

前端 未结 6 671
北荒
北荒 2020-12-01 10:14

I am running a Python script that is causing the above error. The unusual thing is this script is running on a different machine and is having no problems.

The diff

6条回答
  •  离开以前
    2020-12-01 10:57

    In my case, when I run df -i it shows me that my number of inodes are full and then I have to delete some of the small files or folder. Otherwise it will not allow us to create files or folders once inodes get full.

    All you have to do is delete files or folder that has not taken up full space but is responsible for filling inodes.

提交回复
热议问题