我不得不中止系统的备份,因为它停滞在文件上/proc/kcore
。我检查了它的大小,然后文件很大。在检查Google时,似乎还有许多其他人也拥有非常大的kcore文件。
我有三个问题:
- 我应该担心kcore的大小吗?
- 如果是的话,如何缩小尺寸?
- 有什么理由要备份/ proc /目录吗?
我不得不中止系统的备份,因为它停滞在文件上/proc/kcore
。我检查了它的大小,然后文件很大。在检查Google时,似乎还有许多其他人也拥有非常大的kcore文件。
我有三个问题:
Answers:
首先,/proc
是一个虚拟文件系统。不要备份它。其内容在磁盘上不存在。
来自man 5 proc
:
/proc/kcore
This file represents the physical memory of the system and is
stored in the ELF core file format. With this pseudo-file, and
an unstripped kernel (/usr/src/linux/vmlinux) binary, GDB can be
used to examine the current state of any kernel data structures.
The total length of the file is the size of physical memory
(RAM) plus 4KB.
所以,我会担心它kcore
是否很小。
您如何缩小尺寸?减少RAM。