"OSError: [Errno 122] 디스크 할당량 초과"를 해결하는 방법은 무엇입니까?

"OSError: [Errno 122] 디스크 할당량 초과"를 해결하는 방법은 무엇입니까?

저는 각각 약 114.17MB 크기의 여러 JSON 파일을 출력하는 python3 스크립트를 실행하고 있습니다. 하지만 약 60개의 파일을 생성한 후 다음과 같은 오류 메시지가 나타납니다.

Traceback (most recent call last):
  File "dlp.py", line 206, in <module>
    json.dump(prediction, fp, indent=2)
OSError: [Errno 122] Disk quota exceeded

명령을 실행했지만 quota출력이 없습니다(여기).

내 디스크 통계는 다음과 같습니다.

$ df -i .
Filesystem                        Inodes    IUsed      IFree IUse% Mounted on
head03-10g:/share/home1/zhusf 6835937472 37193534 6798743938    1% /share/home1/zhusf

$ df -h .
Filesystem                     Size  Used Avail Use% Mounted on
head03-10g:/share/home1/zhusf  319T   79T  241T  25% /share/home1/zhusf

문제를 해결하려면 어떻게 해야 하나요?

관련 정보