PhoneGap中文网

 找回密码
 立即注册
查看: 18946|回复: 0

Linux磁盘空间占满故障解决方法

[复制链接]

87

主题

87

帖子

327

积分

中级会员

Rank: 3Rank: 3

积分
327
发表于 2017-8-25 15:55:44 | 显示全部楼层 |阅读模式
本文和大家分享的主要是解决linux磁盘空间占满故障的相关内容,一起来看看吧,希望对大家学习linux有所帮助。
  当磁盘被某大文件占满时,而且此大文件正在被某些进程读写并占用着,此时无法删除和置空此文件,只能先找到占用大文件的进程,然后终止进程,最后置空此文件。
  实例如下:在/boot分区中创建大文件test,将boot分区的磁盘占满,通过另外一个终端进入主机,vim编辑此test文件,模拟大文件被vim进程占用,然后删除和清空此test文件。
  终端1
  [root@CentOS7 ~]# df -h  /boot/                                    #查看boot分区大小
  Filesystem      Size  Used Avail Use% Mounted on
  /dev/sda1      997M  110M  887M  12% /boot
  [root@centos7 ~]# dd  if=/dev/zero of=/boot/test bs=1M count=900      #创建900M文件,占满磁盘
  dd: error writing ‘/boot/test’:  No space left on device
  887+0 records in
  886+0 records out
  930058240 bytes (930 MB)  copied, 13.166 s, 70.6 MB/s
  [root@centos7 ~]#
  终端2在创建好大文件后,启用终端2vim编辑此文件,模拟此文件被占用
  [root@centos7boot]# vim test
  1
  ~
  ~
  回到终端1中进行删除文件
  [root@centos7 ~]# rm -rf/boot/test                            #无法删除此大文件
  [root@centos7 ~]# df -h /boot                            #发现此大文件并没有被删除
  Filesystem      Size Used Avail Use% Mounted on
  /dev/sda1      997M 997M  20K 100% /boot
  [root@centos7 ~]# >/boot/test                          #置空此大文件并没有被置空
  -bash: /boot/test: No spaceleft on device
  [root@centos7 ~]# df -h /boot
  Filesystem      Size Used Avail Use% Mounted on
  /dev/sda1      997M 997M  20K 100% /boot
  [root@centos7 ~]# lsof |grep/boot/test
  vim      6562        root  3r      REG                8,1 930045952    456127 /boot/test
  root@centos7 ~]# kill 6562                              #杀死此vim的进程
  [root@centos7 ~]# >/boot/test                          #置空此文件
  [root@centos7 ~]# df -h /boot                          #验证发现此文件已经被清空
  Filesystem      Size Used Avail Use% Mounted on
  /dev/sda1      997M 110M  887M  12% /boot
  [root@centos7 ~]# rm -rf/boot/test                    #然后删除此文件
  [root@centos7 ~]# ll/boot/test
  ls: cannot access/boot/test: No such file or directory
来源: Linux公社

it营
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2024-4-17 07:47 , Processed in 0.043705 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表