以下内容源于网络资源的学习与整理,如有侵权请告知删除。
1、使用ls命令查看
使用“ls -l filepath”查看文件大小,第五列为文件字节数。
使用“ls -lh filepath”查看文件大小,加-h参数可以人性化显示文件大小。
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ ls -l missing
-rwxrwxrwx 1 root root 6872 Jul 8 2021 missing
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ ls -lh missing
-rwxrwxrwx 1 root root 6.8K Jul 8 2021 missing
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$
2、使用du命令查看
du和df的区别见博客:df命令:显示系统上可使用的磁盘空间_天糊土的博客-CSDN博客
即“df xxx”,显示的是xx文件所在分区的磁盘使用情况,而“du xxx”显示的是xxx文件的大小。
du命令是对文件和目录磁盘使用的空间的查看。
使用“du -b filepath”查看文件大小,其中参数-b表示以字节计数。
使用“du -h filepath”查看文件大小,其中参数-h表示人性化显示。
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ du -b missing
6872 missing
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ du -h missing
8.0K missing
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$
//很奇怪,这里为何大小不同呢?6872B约等于6.8K,这里为何显示8K?
3、使用wc命令查看
使用“wc -c filename”得到字节数,其中参数-c表示统计字符。因为一个字符对应一个字节,所以这样得到字节数。
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ wc -c missing
6872 missing
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$
4、使用stat命令查看
stat命令主要用于显示文件或文件系统的详细信息。
该命令的参数含义。
- -f 不显示文件本身的信息,显示文件所在文件系统的信息。
- -L 显示符号链接。
- -t 简洁模式,只显示摘要信息。
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ stat missing
文件:"missing"
大小:6872 块:16 IO 块:4096 普通文件
设备:801h/2049d Inode:418660 硬链接:1
权限:(0777/-rwxrwxrwx) Uid:( 0/ root) Gid:( 0/ root)
最近访问:2021-07-08 01:05:48.131542949 +0800
最近更改:2021-07-08 01:05:26.351543032 +0800
最近改动:2022-06-06 16:34:53.640664251 +0800
创建时间:-
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ stat -t missing
missing 6872 16 81ff 0 0 801 418660 1 0 0 1625677548 1625677526 1654504493 0 4096
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$ stat -f missing
文件:"missing"
ID:20621750f90c3bdc 文件名长度:255 类型:ext2/ext3
块大小:4096 基本块大小:4096
块:总计:4611775 空闲:367389 可用:127364
Inodes: 总计:1179648 空闲:708411
xjh@ubuntu:~/iot/hisi_development/ortp/ortp-master$
版权归原作者 天糊土 所有, 如有侵权,请联系我们删除。