출처 : https://beausty23.tistory.com/234 체봄님 블로그
오늘은 gpu 모델을 돌리면서
갑자기 에러가 나서 확인해본 결과
OSError: [Errno 28] No space left on device
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp',
OSError: Not enough free space to write 435125000 bytes
이런 처음 보는 에러가 발생했다. 아마도 필자는 txt파일로 모델 저장하면서
발생한 임시파일들에서 계산하면서 파일용량이 가득차서
더이상 저장할 수 없어서 오류가 발생한 것으로 판단된다.
먼저 리눅스에서
df -h 할 경우 100% use가 발생하는 것을 확인 한 다음에
해결한 방법으로는
sudo apt autoremove --purge snapd
위의 코드를 사용하였다.
du -h -x --max-length=1
휴지통 비우기 // 경로확인하셔서 cd로 먼저 들어가서 있는지 확인
cd ~/.local/share/Trash/files/
rm -rf ~/.local/share/Trash/files/*