mount, findmnt,df命令

■    The  mount  command gives an overview of all mounted devices. To get this information, the /proc/mounts file is read, where the kernel keeps information about all current mounts. It shows kernel interfaces also, which may lead to a long list of mounted devices being displayed.

■   The  df -Th  command was designed to show available disk space on mounted devices; it includes most of the system mounts. Because it will look on all mounted file systems, it is a convenient command to get an overview of current system mounts. The  -h  option summarizes the output of the command in a human-readable way, and the  -T  option shows which file system type is used on the different mounts.


The output of  df  is shown in seven columns:    
■    Filesystem:     The name of the device file that interacts with the disk device that is used. The real devices in the output start with /dev (which refers to the directory that is used to store device files). You can also see a couple of tmpfs devices. These are kernel devices that are used to create a temporary file system in RAM.    
■    Type:     The type of file system that was used.    
■    Size:     The size of the mounted device.    
■    Used:     The amount of disk space the device has in use.    
■    Avail:     The amount of unused disk space.    
■    Use%:     The percentage of the device that currently is in use.    
■    Mounted on:     The directory the device currently is mounted on.      
Note that when using the  df  command, the sizes are reported in kibibytes. The option  -m  will display these in mebibytes, and using  -h  will use a human-readable format in KiB, MiB, GiB, TiB, or PiB.

■   The  findmnt  command shows mounts and the relation that exists between the different mounts. Because the output of the  mount  command is a bit overwhelming, you may like the output of  findmnt .  Listing   3.2    shows sample output of this command.

时间: 2024-11-06 03:50:02

mount, findmnt,df命令的相关文章

mount --linux挂载命令详解

在linux操作系统中,mount命令是用于加载文件系统到指定的加载点.此命令最常用于挂载cdrom,使我们可以访问cdrom中的数据,当你将光盘插入cdrom中时,Linux并不会自动挂载,必须使用Linux mount命令来手动完成挂载.在这里需要注意的是,挂载点必须是一个已经存在的目录,这个目录可以不为空,但挂载后这个目录下以前的内容将不可用,只有在umount卸载以后才会恢复正常,而且只有目录才能被挂载,文件不可以被挂载,而如果挂载在非空目录下可能会导致系统异常,所以建议挂载在空目录下.

4.1 df命令 4.2 du命令 4.3/4.4 磁盘分区

4.1 df命令 4.2 du命令 4.3/4.4 磁盘分区 扩展学习 parted分区gpt格式 http://www.apelearn.com/bbs/thread-7243-1-1.html 4.1 df命令 df -h 查看swap df -i 查看系统使用的inode 有时候 磁盘空间70% 80% 就写不进去数据了 ,df -h 查看还有空间 那可以df -i 查看下inode是不是使用完了 如果inode使用满了,磁盘空间还有剩余也是一样 写不进去数据 4.2 du命令 不一样?

df 命令。 du命令。创建、格式化和挂载分区,fstab分区表

一.df 命令. 查看已挂载磁盘的总容量.使用容量.剩余容量.可以不加任何参数,默认按K为单位显示. #df -i 查看inodes使用情况. #df -h 使用合适的单位显示,例如 G. #df -k -m 分别以k M 为单位显示. #df -T ,查看分区的文件类型 #free 查看swap分区大小 二.du命令 用来查看某个目录或者文件所占空间大小. #du -a dir 列出全部目录或文件 #du -b 列出的值以bytes为单位. #du -k 以kb为单位列出 #du -m 以MB

df 命令no file systems processed

故障现象: 执行df -h以及df -i检查磁盘信息是,无法返回结果,报df : no file systems processed错误 原因分析: 在执行 df 命令时,会读取 /etc/mtab 文件中的挂载信息,才能获取到当前系统中的分区的挂载情况.而 /etc/mtab 文件是在 mount 挂载分区.umount 卸载分区等操作时动态更新的,同时它也与 /proc/mount 中的挂载信息相同.当 /etc/mtab 中的内容存在异常导致与 /proc/mount 不同步时,就会导致执

每天一个linux命令(33)--df命令

周末是学习的好时光. 每天一个Linux命令,接下来是磁盘存储相关的,df, du命令 Linux中 df  命令的功能是用来检查Linux 服务器的文件系统的磁盘空间占用情况.可以利用该命令来获取硬盘被占用了多少空间,目前还剩下多少空间等信息. 1.命令格式: df  [选项] [文件] 2.命令功能: 显示指定磁盘文件的可用空间,如果没有文件名被指定,则所有当前被挂载的文件系统的可用空间将被显示.默认情况下,磁盘空间将以 1KB   为单位进行显示,除非环境变量  POSIXLY_CORRE

df命令 du命令 磁盘分区 parted分区gpt格式

du查看目录大小,df查看磁盘使用情况经常使用的命令(必要时,若需使用root权限加上sudo)1. 查看某个目录的大小:du -hs  /home/master/documents    查看目录下所有目录的大小并按大小降序排列:sudo du -sm /etc/* | sort -nr | less2.查看磁盘使用情况(文件系统的使用情况):sudo df  -h   df --block-size=GB 注解: -h是使输出结果更易于人类阅读:du -s只展示目录的使用总量(不分别展示各个

自学Linux Shell4.2-监测磁盘空间mount umount df du

点击返回 自学Linux命令行与Shell脚本之路 4.2-监测磁盘空间mount umount  df du ls命令用于显示文件目录列表,和Windows系统下DOS命令dir类似.当执行ls命令时,默认显示的只有非隐藏文件的文件名.以文件名进行排序及文件名代表的颜色显示. 当不加参数时,默认列出当前目录的列表信息 ls命令用于显示文件目录列表,和Windows系统下DOS命令dir类似.当执行ls命令时,默认显示的只有非隐藏文件的文件名.以文件名进行排序及文件名代表的颜色显示. 当不加参数

df命令、du命令、磁盘分区、

一:df命令 ● df 查看已挂载磁盘的总容量.使用容量,剩余容量等,默认按k为单位显示.常用选项:-i:查看inodes的使用状况-h:使用合适单位显示-k,-m:使用k或者m为单位显示 第一列是分区的名字第二列为分区总容量第三列为使用容量第四列剩余容量第五列为使用百分比,如果达到90%就需要关注了最后一列为挂载点 二:du命令 ● du用来查看某个目录或者文件所占用空间大小常用参数:-a:全部文件与目录大小都列出来,如果不加任何选项和参数只列出目录(包含子目录)大小-b,-k,-m:以byt

CentOS7中df命令卡死故障排查

系统信息 CentOS Linux release 7.2.1511 (Core) 故障排查过程 使用strace df命令对进程进行追踪,结果如下: ... stat("/sys/fs/cgroup/cpu,cpuacct", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0 stat("/sys/fs/cgroup/blkio", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0 sta