cp: write error: No space left on device

拷贝文件时,突然出现 cp 报错

# cp ../gcs/gcstest ./
cp: write error: No space left on device

写入出错,设备上没有剩余空间。

df -h 查看一下,果然没可用空间了。

# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root                54.1M     52.9M         0 100% /
devtmpfs                113.3M         0    113.3M   0% /dev
tmpfs                   121.8M         0    121.8M   0% /dev/shm
tmpfs                   121.8M     32.0K    121.8M   0% /tmp
tmpfs                   121.8M     16.0K    121.8M   0% /run

解决:
删除一些无用文件,腾出空间。

你可能感兴趣的:(Linux)