格式
df -h 查看磁盘分区情况
du /etc 目录文件大小都列出来 单位是k最后一行是总和
du -m 单位是m 小于1m写成1m
du -h 单位人性化显示k/m
du -sh /etc 查看指点目录/文件大小
//////////////////////////////////////////////////////////////////////////////////////
du查看和ls查看区别
[[email protected] ~]# du -sh /etc/init.d/iptables
12K /etc/init.d/iptables
[[email protected] ~]# ls -lh /etc/init.d/iptables
-rwxr-xr-x. 1 root root 11K 7月 24 10:08 /etc/init.d/iptables ///////du-12k ls-11k
转换成k为单位
[[email protected] ~]# ls -lb /etc/init.d/iptables
-rwxr-xr-x. 1 root root 11048 7月 24 10:08 /etc/init.d/iptables
[[email protected] ~]# du -sb /etc/init.d/iptables
11048 /etc/init.d/iptables ////////ls-11048b du-11048b 一样的
////////////////////////////////////////////////////////////////////////////////////////////////////
[[email protected] ~]# touch /tmp/1.txt
[[email protected] ~]# echo "12">>/tmp/1.txt
[[email protected] ~]# ll /tmp/1.txt
-rw-r--r--. 1 root root 3 11月 6 19:35 /tmp/1.txt /////真实大小
[[email protected] ~]# du -sh /tmp/1.txt
4.0K /tmp/1.txt /////占用磁盘块的大小