当前位置: 代码迷 >> 综合 >> Linux bug:cannot create temp file for here-document: No space left on device
  详细解决方案

Linux bug:cannot create temp file for here-document: No space left on device

热度:97   发布时间:2023-11-23 22:35:34.0

登陆Linux系统后, cd 到某个指定目录时使用tab键的时候报以下错误:

    -bash: cannot create temp file for here-document: No space left on device

原因:

    不能创建临时文件文档,设备上没有剩余空间(告诉我们磁盘空间满了)

1.用命令df -h 查看硬盘空间

[root@instance-0pk09gjj ~]# df -h

2.查看哪个目录占用硬盘空间最大

[root@instance-0pk09gjj ~]# du -sh /*

3.一级一级向下查找大文件

[root@instance-0pk09gjj ~]# du -sh /home/*

下一级,这样直到找出最大文件

 

解决方案:

(1) 如果最大文件时日志文件或者备份文件可以清空此文件;

(2) 如果想保留这个最大文件, 则只能扩大硬盘空间了.

要删除文件的话,参考:linux删除文件


转自:https://blog.csdn.net/muriyue6/article/details/84783107 
 

  相关解决方案