Linux上使用vim編輯檔案儲存時報錯:E514: write error (file system full?)__Linux

來源:互聯網
上載者:User

今天在Linux上使用vim編輯檔案儲存時報如下錯誤

E514: write error (file system full?)

從錯誤看,是磁碟滿了,於是使用df -hl查看磁碟使用方式

$ sudo df -hlFilesystem                         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%。

這個預留的空間可以使用下面的命令查看

$ sudo tune2fs -l <device> | grep Reserved

比如:

$ sudo tune2fs -l /dev/sda1 | grep Reserved或$ sudo tune2fs -l /dev/mapper/vg_rhserver33-lv_home | grep ReservedReserved block count:     23551078Reserved GDT blocks:      911Reserved blocks uid:      0 (user root)Reserved blocks gid:      0 (group root)

好了,知道了問題,那我們就清理一下磁碟空間吧,清理了一定磁碟空間後,最終我可以繼續寫入資料了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.