(文内图片来自于 Don Watkins, CC BY-SA 4.0) via:https://opensource.com/article/22/7/check-disk-usage-linux 作者:Don Watkins选题:lkxed译者:MjSeven校对:wxy 本文由LCTT原创编译,Linux中国荣誉推出
[root@localhost ~]# /data/sh/general/disk_usage_check.shINFO: Disk space usage is normal. (2)检查异常,查看需要人为介入判断及处理 [root@novalocal general]# /data/sh/general/disk_usage_check.shWARN: Filesystem /dev/vdb mounted on /data has problem: use rate is 76%, available space is ...
我们的下一个命令是du。 正如您所料,这代表磁盘使用情况(disk usage)。du命令与df命令完全不同,因为它报告目录而不是驱动器的空间使用情况。 因此,您需要知道要检查的目录的名称。 假设我的计算机上有一个包含虚拟机文件的目录。 那个目录是/media/jack/HALEY/VIRTUALBOX。 如果我想知道该特定目录使用了多少空间,...
via:https://opensource.com/article/22/7/check-disk-usage-linux 作者:Don Watkins选题:lkxed译者:MjSeven校对:wxy 本文由LCTT原创编译,Linux中国荣誉推出 LCTT 译者 :MjSeven 翻译: 167.0 篇 | 贡献: 1622 天 2018-01-30 → 2022-07-10 https://linux.cn/lctt/MjSeven 欢迎遵照 CC-BY-SA 协议规定...
正如您所料,这代表 磁盘使用情况(disk usage)。 du 命令与 df 命令完全不同,因为它报告目录而不是驱动器的空间使用情况。 因此,您需要知道要检查的目录的名称。 假设我的计算机上有一个包含虚拟机文件的目录。 那个目录是 /media/jack/HALEY/VIRTUALBOX 。 如果我想知道该特定目录使用了多少空间,我将运行如下命...
具体步骤如下 1、创建钉钉Webhook机器人 安全设置这里我选用服务器出口IP 设定后,只有来自IP地址范围内的请求才会被正常处理 (图片点击放大查看) (图片点击放大查看) (图片点击放大查看) 2、编写磁盘巡检脚本 代码语言:javascript 复制 vim/opt/disk_usage_check.sh ...
二、du(disk usage) :查看特定目录的空间使用情况 Linux du命令也是查看使用空间的,但是与df命令不同的是Linux du命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的,这里介绍Linux du命令。 du 命令会显示每个目录所占用数据块。根据系统的不同,一个数据块可能是 512 字节或 1024 字节。举例如下...
在Linux系统中,进行磁盘检查是维护系统稳定性和数据安全性的重要步骤。以下是几个常用的磁盘检查命令,我将详细说明它们的功能、使用方法,并提供使用示例。 1. fsck(文件系统检查) 功能:fsck(File System Check)用于检查和维护文件系统的完整性和一致性。在系统崩溃或磁盘出现问题后,fsck可以用来修复文件系统。 使用方...
To check the disk usage of a specific directory, use: du -h /path/to/directory This command will list the sizes of all files and subdirectories within the specified directory. For instance, if you run: du -h /home/user You should see the following output: ...
The Linux “du” (Disk Usage) is a standard Unix/Linux command, used to check the information of disk usage of files and directories on a machine. The du command has many parameter options that can be used to get the results in many formats. The du command also displays the files and...