服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - Linux使用vim编辑文件保存时报E514:write error (file system full?)问题解决

Linux使用vim编辑文件保存时报E514:write error (file system full?)问题解决

2022-02-28 16:54kongxx Linux

最近在用vi编辑文档,保存的时候,提示如下错误:E514: write error (file system full?),所以这篇文章主要给大家介绍了关于Linux使用vim编辑文件保存时报E514:write error (file system full?)问题的解决方法,需要的朋友可以参考借鉴,下面随着小

发现问题

今天在Linux上使用vim编辑文件保存时报如下错误:

?
1
E514: write error (file system full?)

从错误看,是磁盘满了,于是使用df -hl查看磁盘使用情况

?
1
2
3
4
5
6
$ sudo df -hl
Filesystem    Size Used Avail Use% Mounted on
/dev/mapper/vg_myserver-lv_root 50G 43G 4.6G 91% /
tmpfs    7.8G 268K 7.8G 1% /dev/shm
/dev/sda1    477M 61M 391M 14% /boot
/dev/mapper/vg_myserver-lv_home 1.8T 1.7T 0 100% /home

从结果看,确实是/home磁盘满了。

但是此时,当我使用root用户在/home写写文件时候却不会出现上面的错。

查了半天,原来是Linux在每个分区中会为root用户保留一部份空间,这是专门留给root用户及其所属组使用,别的用户是无法使用的,一般默认为总数据块的5%。

解决方法

这个预留的空间可以使用下面的命令查看

?
1
$ sudo tune2fs -l <device> | grep Reserved

比如:

?
1
$ sudo tune2fs -l /dev/sda1 | grep Reserved

?
1
2
3
4
5
$ sudo tune2fs -l /dev/mapper/vg_rhserver33-lv_home | grep Reserved
Reserved block count: 23551078
Reserved GDT blocks: 911
Reserved blocks uid: 0 (user root)
Reserved blocks gid: 0 (group root)

好了,知道了问题,那我们就清理一下磁盘空间吧,清理了一定磁盘空间后,最终我可以继续写入数据了。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:http://blog.csdn.net/kongxx/article/details/79246312

延伸 · 阅读

精彩推荐