du,df命令和磁盘管理

[[email protected] ~]# df

Filesystem     1K-blocks    Used Available Use% Mounted on

/dev/vda1       41151808 1872588  37165788   5% /

devtmpfs          498064       0    498064   0% /dev

tmpfs             508196       0    508196   0% /dev/shm

tmpfs             508196     308    507888   1% /run

tmpfs             508196       0    508196   0% /sys/fs/cgroup

tmpfs             101640       0    101640   0% /run/user/0

第一列 文件系统 和磁盘分区的名字 ,第二列:磁盘的大小

第三:列已使用了多少。第四列:可用的剩余多少。

第五列:已用百分比.  第六列挂载点名称

[[email protected] ~]# df -h      加上H可以适当的看到磁盘准确的大小

Filesystem      Size  Used Avail Use% Mounted on

/dev/vda1        40G  1.8G   36G   5% /

devtmpfs        487M     0  487M   0% /dev

tmpfs           497M     0  497M   0% /dev/shm

tmpfs           497M  308K  496M   1% /run

tmpfs           497M     0  497M   0% /sys/fs/cgroup

tmpfs           100M     0  100M   0% /run/user/0

[[email protected] ~]# free

total        used        free      shared  buff/cache   available

Mem:        1016396       69400      116160         312      830836      740212

Swap:             0           0           0

[[email protected] ~]# df -i      查看分区下面有多少个inodes   和inode使用情况

Filesystem      Inodes IUsed   IFree IUse% Mounted on

/dev/vda1      2621440 47648 2573792    2% /

devtmpfs        124516   334  124182    1% /dev

tmpfs           127049     1  127048    1% /dev/shm

tmpfs           127049   351  126698    1% /run

tmpfs           127049    16  127033    1% /sys/fs/cgroup

tmpfs           127049     1  127048    1% /run/user/0

[[email protected] ~]# df -m      还可以df -m   以兆为单位查看

Filesystem     1M-blocks  Used Available Use% Mounted on

/dev/vda1          40188  1829     36295   5% /

devtmpfs             487     0       487   0% /dev

tmpfs                497     0       497   0% /dev/shm

tmpfs                497     1       496   1% /run

tmpfs                497     0       497   0% /sys/fs/cgroup

tmpfs                100     0       100   0% /run/user/0

du  命令

查看一个文件的大小

[[email protected] ~]# du -sh /root/

340K    /root/

[[email protected] ~]# du -sh /boot/

132M    /boot/

[[email protected] ~]# du -sh /etc/passwd

4.0K    /etc/passwd

[[email protected] ~]# ls -lh /etc/passwd

-rw-r--r--. 1 root root 1.4K Oct 30 21:39 /etc/passwd

对比不一样大小  ,上面4K是块 以最小4K为基础

[[email protected] ~]# du /etc/passwd      也可以 这样下

4    /etc/passwd

[[email protected] ~]# du /etc/         这样会全部列出来

16    /etc/pki/rpm-gpg

4    /etc/pki/java

[[email protected] ~]# du -sh /root/    正确的写法  是-sh

340K    /root/

磁盘挂载

[[email protected] ~]# fdisk -l     可以把系统目前有的给列出来

Disk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectors

Units = sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk label type: dos

Disk identifier: 0x000d2717

Device Boot      Start         End      Blocks   Id  System

/dev/vda1   *        2048    83884031    41940992   83  Linux

Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors

Units = sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

如果新插入的磁盘识别不了,可以尝试重新启动

fdisk  -l   识别新插入的磁盘

[[email protected] ~]# fdisk /dev/vda         这个后面跟磁盘的名字

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.

Be careful before using the write command.

Command (m for help): m             输入m查看帮助信息

Command action

a   toggle a bootable flag

b   edit bsd disklabel

c   toggle the dos compatibility flag

d   delete a partition

g   create a new empty GPT partition table

G   create an IRIX (SGI) partition table

l   list known partition types

m   print this menu

n   add a new partition

o   create a new empty DOS partition table

p   print the partition table

q   quit without saving changes

s   create a new empty Sun disklabel

t   change a partition‘s system id

u   change display/entry units

v   verify the partition table

w   write table to disk and exit

x   extra functionality (experts only)

对照翻译

触发器的一个启动标志

B编辑BSD磁盘标签

切换DOS兼容性标志

删除一个分区

G创建一个空的GPT分区表

G创建IRIX(SGI)分区表

列出已知分区类型

打印此菜单

添加一个新分区

o创建一个新的空DOS分区表

打印分区表

在不保存更改的情况下退出

创建一个新的空太阳标识

更改分区的系统id

更改显示/输入单元

v验证分区表

将表写入磁盘并退出

额外功能(专家只)

按  p   按  n

Command (m for help): p

Disk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectors

Units = sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk label type: dos

Disk identifier: 0x000d2717

Device Boot      Start         End      Blocks   Id  System

/dev/vda1   *        2048    83884031    41940992   83  Linux

Command (m for help): n

Partition type:

p   primary (1 primary, 0 extended, 3 free)

e   extended

可以选择p    主分区

主分区最多只能分4个

逻辑分区 可以分多个

如果划分4个主分区就不能再划分了 ,就要用    d   默认从第四个删除

所有的操作取消   按  q    按  w是保存

l是逻辑分区的划法

总结   分区   n 出现提示   主分区  还是扩展分区

选择p或者l   然后选择  几个G   然后  w

时间: 2024-11-06 07:44:58

du,df命令和磁盘管理的相关文章

liunx命令5 df、du、fdisk、磁盘管理相关命令

df查看命令 [[email protected] ~]# df              //查看分区 Filesystem     1K-blocks    Used Available Use% Mounted on /dev/sda3       18244476 5919104  11391948  35% / tmpfs             515244      72    515172   1% /dev/shm /dev/sda1         194241   2600

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

df:汇报文件系统的磁盘使用空间[[email protected] ~]# df文件系统 1K-块 已用 可用 已用% 挂载点/dev/sda3 29140072 1022920 28117152 4% /devtmpfs 496332 0 496332 0% /devtmpfs 506188 0 506188 0% /dev/shmtmpfs 506188 6904 499284 2% /runtmpfs 506188 0 506188 0% /sys/fs/cgroup/dev/sda1

用df命令显示磁盘使用量和占用率。

使用“df -k”命令,以k为单位显示磁盘使用量和占用率. [email protected]:/tmp# df -kFilesystem     1K-blocks    Used Available Use% Mounted onudev            16462548      12  16462536   1% /devtmpfs            3294808     572   3294236   1% /run/dev/dm-0      107713536 9513

Linux命令之磁盘管理

有关硬盘的识别,Linux会根据设备类型对存储设备进行识别,如果是IDE设备会被识别为hd,第一个IDE设备为hda,第一个主分区为hda1,第一个逻辑分区为hda5.第二个IDE设备为hdb,以此类推. 如果是SATA.SCSI.USB设备会被识别为sd,同样第一个设备为sda,第一个分区为sda1,第一个逻辑分区为sda5,第二个设备为sdb. 一 查看磁盘信息 1.1 查看磁盘分区和内存信息: [[email protected] ~]# fdisk -l                

Linux常用命令(4)-磁盘管理

案数据除了档案实际内容外, 通帯有非帯多癿属性,例如 Linux 操作系统的档案权限(rwx)和文件属性(拞有者.群组.时间参数等). 文件系统会将这两部数据分别存放在不同的区块,权限属性放置到 inode 中,至亍实际数据则放置到 data block 区块中. 另外,还有一个超级区块 (superblock) 会记彔整个 文件系统癿整体信息,包括 inode 不 block 癿总量.使用量.剩余量等. 每个inode与block 都有编号,三者数据的含义可以简略说明如下: superbloc

df命令查看磁盘用量

[[email protected] ~]# df 文件系统               1K-块        已用     可用 已用% 挂载点 /dev/mapper/VolGroup00-LogVol00 11109328   2154636   8381252  21% / /dev/sda1               101086     11999     83868  13% /boot tmpfs                  1037748         0   10

sed命令和磁盘管理练习

删除centos7系统/etc/grub2.cfg?件中所有以空?开头的???的空?字符. 删除/etc/fstab?件中所有以#开头,后??少跟?个空?字符的?的??的# 和空?字符. 在centos6系统/root/install.log每????增加#号. 在/etc/fstab?件中不以#开头的?的??增加#号 处理/etc/fstab路径,使?sed命令取出其?录名和基名. 利?sed 取出ifconfig命令中本机的IPv4地址 统计/etc/init.d/functions?件中每

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

df命令 显示磁盘的相关信息 查看系统磁盘设备,默认是KB为单位 df -h 以可读性较高的方式来显示信息(KB.MB.GB.TG) 带tmpfs的是临时文件,重启后会消失./dev/shm是内存,大小是物理内存的一半. df -i 查看分区下有多少个inode及inode使用的情况,格式化过程时创建inode. 当inode满了,磁盘剩余空间也无法写入! du命令 显示每个文件和目录的磁盘使用空间 (块的大小,例:文件1K,也会显示4K的大小.) 磁盘分区 日常工作中,我们接触较多的是给系统增

三周第四次课 4.1 df命令 4.2 du命令 4.3/4.4 磁盘分区

4.1 df命令 1.df命令 查看磁盘情况命令 查看inodes 4.2 du命令 1.du命令 du命令查看目录的大小 4.3/4.4 磁盘分区 磁盘分区 使用fdisk 命令进行查看 重启后能识别出硬盘 原文地址:http://blog.51cto.com/wbyyy/2055744