欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

xfs文件系统提示没有磁盘空间错误的解决方法

程序员文章站 2022-07-18 11:27:50
这篇文章主要介绍了xfs文件系统提示没有磁盘空间错误的解决方法,xfs是一种全新的高性能 64 位文件系统,需要的朋友可以参考下... 14-07-23...

日前,同事反馈一个问题:在一个大分区(24t)中使用xfs文件系统,用来做历史文件备份,突然提示没有磁盘空间错误,先检查下:

复制代码
代码如下:

[root@imysql ~]# df -ht
filesystem type size used avail use% mounted on
/dev/sdb1 xfs 19t 16t 2.4t 88% /backup</p> <p>[root@imysql ~]# df -hi
filesystem inodes iused ifree iuse% mounted on
/dev/sdb1 9.3g 3.4m 9.3g 1% /backup

可以看到,不管是物理空间,还是inode,都还有很多余量,那为何还会报告磁盘空间不够呢?
查询了下xfs faq,发现有一段:

复制代码
代码如下:

q: what is the inode64 mount option for?</p> <p>by default, with 32bit inodes, xfs places inodes only in the first 1tb of a disk. if you have a disk with 100tb, all inodes will be stuck in the first tb. this can lead to strange things like "disk full" when you still have plenty space free, but there's no more place in the first tb to create a new inode. also, performance sucks.
to come around this, use the inode64 mount options for filesystems >1tb. inodes will then be placed in the location where their data is, minimizing disk seeks.
beware that some old programs might have problems reading 64bit inodes, especially over nfs. your editor used inode64 for over a year with recent (opensuse 11.1 and higher) distributions using nfs and samba without any corruptions, so that might be a recent enough distro.

大意就是xfs文件系统会把inode存储在磁盘最开始的这1t空间里,如果这部分空间被完全填满了,那么就会出现磁盘空间不足的错误提示了。解决办法就是在挂载时,指定 inode64 选项:

复制代码
代码如下:

mount -o remount -o noatime,nodiratime,inode64,nobarrier /dev/sdb1 /backup

p.s,磁盘空间小于1t的不用担心这个问题 :)