如何删除系统日志和 tmp 目录下的临时文件

news/2024/12/14 11:07:15/

文章目录

          • 删除系统日志
            • 查看系统日志所占空间
            • 删除系统日志
          • 删除临时文件缓存

删除系统日志
查看系统日志所占空间

[user@localhost ~]$ sudo du --human-readable --max-depth=1 /var/log/
[user@localhost ~]$ sudo journalctl --disk-usage

What is:

[user@localhost ~]$ whatis du
du (1)               - estimate file space usage
[user@localhost ~]$ whatis journalctl
journalctl (1)       - Query the systemd journal
删除系统日志

sudo journalctl --vacuum-time=1weeks

journalctl 手册

--disk-usageShows the current disk usage of all journal files. This shows thesum of the disk usage of all archived and active journal files.--vacuum-size=, --vacuum-time=, --vacuum-files=Removes the oldest archived journal files until the disk space theyuse falls below the specified size (specified with the usual "K","M", "G" and "T" suffixes), or all archived journal files containno data older than the specified timespan (specified with the usual"s", "m", "h", "days", "months", "weeks" and "years" suffixes), orno more than the specified number of separate journal files remain.Note that running --vacuum-size= has only an indirect effect on theoutput shown by --disk-usage, as the latter includes active journalfiles, while the vacuuming operation only operates on archivedjournal files. Similarly, --vacuum-files= might not actually reducethe number of journal files to below the specified number, as itwill not remove active journal files.  --vacuum-size=,--vacuum-time= and --vacuum-files= may be combined in a singleinvocation to enforce any combination of a size, a time and anumber of files limit on the archived journal files. Specifying anyof these three parameters as zero is equivalent to not enforcingthe specific limit, and is thus redundant.
删除临时文件缓存

使用 tmpwatch
sudo dnf install tmpwatch
手册

DESCRIPTIONtmpwatch  recursively  removes  files  which haven't been accessed for a given time.  Normally, it's used to clean up directories which areused for temporary holding space such as /tmp....By  default,  tmpwatch dates files by their atime (access time), ......... m for minutes, h for hours, d for days.  If  no  suffixis specified, time is in hours.

删除最近 3 小时没有访问的临时文件

[user@localhost ~]$ sudo /usr/sbin/tmpwatch -afv 3h /tmp

[1] http://crx.xmspace.net/linux_tmp_del.html


http://www.ppmy.cn/news/785077.html

相关文章

如何删除tmp计算机桌面,技术传授win10 office tmp缓存文件怎么删除的具体处理门径...

可能由于病毒或者木马程序,有一位用户今天来告诉小编说win10 office tmp缓存文件怎么删除的情况和,win10 office tmp缓存文件怎么删除这样的情况还真的把很多电脑高手都为难住了,要是你不愿意找别人来帮助解决你的win10 office tmp缓存文件怎…

关于linux tmp下文件自动删除的问题

事件起源:昨天值班过程中,应用组同事反馈一台linux机器的/tmp目录下自己放的脚本没有了,而且脚本相对挺重要,瞬时冷汗冒出。 作为一名运维工程师最怕删东西,找值班同事及系统组同事确认后,没有人为清理&am…

如何删除tmp计算机桌面,win10系统下tmp临时文件删除不了像何解决

当我们在使用win10系统的途中中,所有会产生很多的临时文件,太多的话就会占用系统磁盘空间影响电脑运列速度,所以就需要删除临时文件,然但是有win10系统用户竟然发现tmp临时文件删除不了,可以怎么解决呢,接着…

如何删除tmp计算机桌面,Win10专业版如何删除tmp文件?

TMP和TEMP文件是各种软件或系统产生的临时文件,也就是常说的垃圾文件,通常会在系统盘下存放,很多win10用户觉得系统盘太多就是因为临时文件太多,但是想删除却提示权限不够,删不了,那要如何解决呢&#xff1…

java--删除TMP文件

实验目的 (1)了解Flie类的概念。 (2)掌握File类的用法。 (3)掌握使用迭代遍历文件夹的方式。 实验内容 (1)了解Java的输入/输出操作。 (2)学会文件与目…

html5 拖拽删除,H5拖拽删除文件

在 HTML5 中,拖放是标准的一部分,任何元素都能够拖放。 全局属性draggable :标签设置draggabletrue后,就能够被拖拽: 单纯地给元素加上draggable属性,也只能在鼠标按住、拖拽、放开时看到特效,它…

58. 批量删除 tmp 文件

文章目录 题目描述解题思路代码详解运行截图题目描述 题目:系统运行一段时间后,会产生大量的tmp文件,会影响系统性能。 实现:做一个批量删除指定文件夹里的tmp文件工具 解题思路 创建一个类:TempDeletionTool 使用TempDeletionTool继承JFrame构建窗体 遍历指定目录下…

h5如何删除手机的目录文件

h5如何删除手机的目录文件 h5中,如何删除手机中存储的文件。 思路: 1、通过plus找到文件夹。 2、递归删除文件夹的文件。 plus.io.resolveLocalFileSystemURL(_doc/, function(entry){ // alert(entry.toLocalURL());entry.removeRecursively( f…