Asked by duncanb7
at 2024-05-01 07:52:18
Point:500 Replies:17 POST_ID:828582USER_ID:11059
Topic:
PHP Scripting Language;Linux;Apache Web Server
when type the following command at my linux shell
cp ../hk2/*.csv .
and then it will report error as follows
cp: writing './12.csv':NO space left on the device
cp: writing './1256.csv':NO space left on the device
cp: writing './1259.csv':NOs pace left on the device ......
And I checked the space by df -h
Filesystem Size Used Avail Use% Mounted on
/dev/ploop33465p1 20G 13G 6.2G 68% /
none 1.0G 4.0K 1.0G 1% /dev
none 1.0G 0 1.0G 0% /dev/shm
There is still much space left. But why I could not copy those files into target directory, why ?
So I google it about the article
http://www.ivankuznetsov.com/2010/02/no-space-left-on-device-running-out-of-inodes.html
and check the inode by df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/ploop33465p1 1310720 255113 1055607 20% /
none 262144 151 261993 1% /dev
none 262144 1 262143 1% /dev/shm
The inode usage is still available but why I still not able to copy those files even space
and inode is available.
Please advise
Duncan
cp ../hk2/*.csv .
and then it will report error as follows
cp: writing './12.csv':NO space left on the device
cp: writing './1256.csv':NO space left on the device
cp: writing './1259.csv':NOs pace left on the device ......
And I checked the space by df -h
Filesystem Size Used Avail Use% Mounted on
/dev/ploop33465p1 20G 13G 6.2G 68% /
none 1.0G 4.0K 1.0G 1% /dev
none 1.0G 0 1.0G 0% /dev/shm
There is still much space left. But why I could not copy those files into target directory, why ?
So I google it about the article
http://www.ivankuznetsov.com/2010/02/no-space-left-on-device-running-out-of-inodes.html
and check the inode by df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/ploop33465p1 1310720 255113 1055607 20% /
none 262144 151 261993 1% /dev
none 262144 1 262143 1% /dev/shm
The inode usage is still available but why I still not able to copy those files even space
and inode is available.
Please advise
Duncan