欢迎光临
我们一直在努力

Linux 磁盘76管理

Linux 磁盘管理

Linux 磁盘管理好坏直接关系到整个系统的性能问题。

Linux 磁盘管理常用三个命令为 df、du 和 fdisk。

  • df(英文全称:disk free):列出文件系统的整体磁盘使用量
  • du(英文全称:disk used):检查磁盘空间使用量
  • fdisk:用于磁盘分区

df

df命令参数功能:检查文件系统的磁盘空间占用情况。可以利用该命令来获取硬盘被占用了多少空间,目前还剩下多少空间等信息。

语法:

df [-ahikHTm] [目录或文件名]

选项与参数:

  • -h:以人类可读的方式显示输出结果(例如,使用 KB、MB、GB 等单位)。

  • -T:显示文件系统的类型。

  • -t <文件系统类型>:只显示指定类型的文件系统。

  • -i:显示 inode 使用情况。

  • -H:该参数是 -h 的变体,但是使用 1000 字节作为基本单位而不是 1024 字节。这意味着它会以 SI(国际单位制)单位(例如 MB、GB)而不是二进制单位(例如 MiB、GiB)来显示磁盘使用情况。

  • -k:这个选项会以 KB 作为单位显示磁盘空间使用情况。

  • -a:该参数将显示所有的文件系统,包括虚拟文件系统,例如 proc、sysfs 等。如果没有使用该选项,默认情况下,df 命令不会显示虚拟文件系统。

实例 1

将系统内所有的文件系统列出来!

[root@www ~]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hdc2 9920624 3823112 5585444 41% /
/dev/hdc3 4956316 141376 4559108 4% /home
/dev/hdc1 101086 11126 84741 12% /boot
tmpfs 371332 0 371332 0% /dev/shm

在 Linux 底下如果 df 没有加任何选项,那么默认会将系统内所有的 (不含特殊内存内的文件系统与 swap) 都以 1 Kbytes 的容量来列出来!

实例 2

将容量结果以易读的容量格式显示出来

[root@www ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hdc2 9.5G 3.7G 5.4G 41% /
/dev/hdc3 4.8G 139M 4.4G 4% /home
/dev/hdc1 99M 11M 83M 12% /boot
tmpfs 363M 0 363M 0% /dev/shm

实例 3

将系统内的所有特殊文件格式及名称都列出来

[root@www ~]# df -aT
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/hdc2 ext3 9920624 3823112 5585444 41% /
proc proc 0 0 0 – /proc
sysfs sysfs 0 0 0 – /sys
devpts devpts 0 0 0 – /dev/pts
/dev/hdc3 ext3 4956316 141376 4559108 4% /home
/dev/hdc1 ext3 101086 11126 84741 12% /boot
tmpfs tmpfs 371332 0 371332 0% /dev/shm
none binfmt_misc 0 0 0 – /proc/sys/fs/binfmt_misc
sunrpc rpc_pipefs 0 0 0 – /var/lib/nfs/rpc_pipefs

实例 4

将 /etc 底下的可用的磁盘容量以易读的容量格式显示

[root@www ~]# df -h /etc
Filesystem Size Used Avail Use% Mounted on
/dev/hdc2 9.5G 3.7G 5.4G 41% /


du

Linux du 命令也是查看使用空间的,但是与 df 命令不同的是 Linux du 命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的,这里介绍 Linux du 命令。

语法:

du [-ahskm] 文件或目录名称

选项与参数:

  • -a :列出所有的文件与目录容量,因为默认仅统计目录底下的文件量而已。
  • -h :以人们较易读的容量格式 (G/M) 显示;
  • -s :仅显示指定目录或文件的总大小,而不显示其子目录的大小。
  • -S :包括子目录下的总计,与 -s 有点差别。
  • -k :以 KBytes 列出容量显示;
  • -m :以 MBytes 列出容量显示;

实例 1

只列出当前目录下的所有文件夹容量(包括隐藏文件夹):

[root@www ~]# du
8 ./test4 <==每个目录都会列出来
8 ./test2
….中间省略….
12 ./.gconfd <==包括隐藏文件的目录
220 . <==这个目录(.)所占用的总量

直接输入 du 没有加任何选项时,则 du 会分析当前所在目录里的子目录所占用的硬盘空间。

实例 2

将文件的容量也列出来

[root@www ~]# du -a
12 ./install.log.syslog <==有文件的列表了
8 ./.bash_logout
8 ./test4
8 ./test2
….中间省略….
12 ./.gconfd
220 .

实例 3

检查根目录底下每个目录所占用的容量

[root@www ~]# du -sm /*
7 /bin
6 /boot
…..中间省略….
0 /proc
…..中间省略….
1 /tmp
3859 /usr <==系统初期最大就是他了啦!
77 /var

通配符 * 来代表每个目录。

与 df 不一样的是,du 这个命令其实会直接到文件系统内去搜寻所有的文件数据。


fdisk

fdisk 是 Linux 的磁盘分区表操作工具。

语法:

fdisk [-l] 装置名称

选项与参数:

  • -l :输出后面接的装置所有的分区内容。若仅有 fdisk -l 时, 则系统将会把整个系统内能够搜寻到的装置的分区均列出来。

实例 1

列出所有分区信息

[root@AY120919111755c246621 tmp]# fdisk -l

Disk /dev/xvda: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Device Boot Start End Blocks Id System
/dev/xvda1 * 1 2550 20480000 83 Linux
/dev/xvda2 2550 2611 490496 82 Linux swap / Solaris

Disk /dev/xvdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x56f40944

Device Boot Start End Blocks Id System
/dev/xvdb2 1 2610 20964793+ 83 Linux

实例 2

找出你系统中的根目录所在磁盘,并查阅该硬盘内的相关信息

[root@www ~]# df / <==注意:重点在找出磁盘文件名而已
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hdc2 9920624 3823168 5585388 41% /

[root@www ~]# fdisk /dev/hdc <==仔细看,不要加上数字喔!
The number of cylinders for this disk is set to 5005.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)

Command (m for help): <==等待你的输入!

输入 m 后,就会看到底下这些命令介绍

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 <==删除一个partition
l list known partition types
m print this menu
n add a new partition <==新增一个partition
o create a new empty DOS partition table
p print the partition table <==在屏幕上显示分割表
q quit without saving changes <==不储存离开fdisk程序
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)

离开 fdisk 时按下 q,那么所有的动作都不会生效!相反的, 按下w就是动作生效的意思。

Command (m for help): p <== 这里可以输出目前磁盘的状态

Disk /dev/hdc: 41.1 GB, 41174138880 bytes <==这个磁盘的文件名与容量
255 heads, 63 sectors/track, 5005 cylinders <==磁头、扇区与磁柱大小
Units = cylinders of 16065 * 512 = 8225280 bytes <==每个磁柱的大小

Device Boot Start End Blocks Id System
/dev/hdc1 * 1 13 104391 83 Linux
/dev/hdc2 14 1288 10241437+ 83 Linux
/dev/hdc3 1289 1925 5116702+ 83 Linux
/dev/hdc4 1926 5005 24740100 5 Extended
/dev/hdc5 1926 2052 1020096 82 Linux swap / Solaris
# 装置文件名 启动区否 开始磁柱 结束磁柱 1K大小容量 磁盘分区槽内的系统

Command (m for help): q

想要不储存离开吗?按下 q 就对了!不要随便按 w 啊!

使用 p 可以列出目前这颗磁盘的分割表信息,这个信息的上半部在显示整体磁盘的状态。


磁盘格式化

磁盘分割完毕后自然就是要进行文件系统的格式化,格式化的命令非常的简单,使用 mkfs(make filesystem) 命令。

语法:

mkfs [-t 文件系统格式] 装置文件名

选项与参数:

  • -t :可以接文件系统格式,例如 ext3, ext2, vfat 等(系统有支持才会生效)

实例 1

查看 mkfs 支持的文件格式

[root@www ~]# mkfs[tab][tab]
mkfs mkfs.cramfs mkfs.ext2 mkfs.ext3 mkfs.msdos mkfs.vfat

按下两个[tab],会发现 mkfs 支持的文件格式如上所示。

实例 2

将分区 /dev/hdc6(可指定你自己的分区) 格式化为 ext3 文件系统:

[root@www ~]# mkfs -t ext3 /dev/hdc6
mke2fs 1.39 (29-May-2006)
Filesystem label= <==这里指的是分割槽的名称(label)
OS type: Linux
Block size=4096 (log=2) <==block 的大小配置为 4K
Fragment size=4096 (log=2)
251392 inodes, 502023 blocks <==由此配置决定的inode/block数量
25101 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=515899392
16 block groups
32768 blocks per group, 32768 fragments per group
15712 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912

Writing inode tables: done
Creating journal (8192 blocks): done <==有日志记录
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 34 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# 这样就创建起来我们所需要的 Ext3 文件系统了!简单明了!


磁盘检验

fsck(file system check)用来检查和维护不一致的文件系统。

若系统掉电或磁盘发生问题,可利用fsck命令对文件系统进行检查。

语法:

fsck [-t 文件系统] [-ACay] 装置名称

选项与参数:

  • -t : 给定档案系统的型式,若在 /etc/fstab 中已有定义或 kernel 本身已支援的则不需加上此参数
  • -s : 依序一个一个地执行 fsck 的指令来检查
  • -A : 对/etc/fstab 中所有列出来的 分区(partition)做检查
  • -C : 显示完整的检查进度
  • https://avg.163.com/topic/detail/10635735
    https://avg.163.com/topic/detail/10635731
    https://avg.163.com/topic/detail/10635729
    https://avg.163.com/topic/detail/10635732
    https://avg.163.com/topic/detail/10635727
    https://avg.163.com/topic/detail/10635659
    https://avg.163.com/topic/detail/10635725
    https://avg.163.com/topic/detail/10635724
    https://avg.163.com/topic/detail/10635720
    https://avg.163.com/topic/detail/10635587
    https://avg.163.com/topic/detail/10635717
    https://avg.163.com/topic/detail/10635708
    https://avg.163.com/topic/detail/10635710
    https://avg.163.com/topic/detail/10635707
    https://avg.163.com/topic/detail/10635706
    https://avg.163.com/topic/detail/10635601
    https://avg.163.com/topic/detail/10635705
    https://avg.163.com/topic/detail/10635700
    https://avg.163.com/topic/detail/10635702
    https://avg.163.com/topic/detail/10635696
    https://avg.163.com/topic/detail/10635637
    https://avg.163.com/topic/detail/10635524
    https://avg.163.com/topic/detail/10635688
    https://avg.163.com/topic/detail/10635682
    https://avg.163.com/topic/detail/10635680
    https://avg.163.com/topic/detail/10635679
    https://avg.163.com/topic/detail/10635678
    https://avg.163.com/topic/detail/10635614
    https://avg.163.com/topic/detail/10635677
    https://avg.163.com/topic/detail/10635676
    https://avg.163.com/topic/detail/10635675
    https://avg.163.com/topic/detail/10635674
    https://avg.163.com/topic/detail/10635435
    https://avg.163.com/topic/detail/10635670
    https://avg.163.com/topic/detail/10635671
    https://avg.163.com/topic/detail/10635672
    https://avg.163.com/topic/detail/10635665
    https://avg.163.com/topic/detail/10635667
    https://avg.163.com/topic/detail/10635664
    https://avg.163.com/topic/detail/10635663
    https://avg.163.com/topic/detail/10635662
    https://avg.163.com/topic/detail/10635661
    https://avg.163.com/topic/detail/10635660
    https://avg.163.com/topic/detail/10635659
    https://avg.163.com/topic/detail/10635658
    https://avg.163.com/topic/detail/10635632
    https://avg.163.com/topic/detail/10635657
    https://avg.163.com/topic/detail/10635656
    https://avg.163.com/topic/detail/10635655
    https://avg.163.com/topic/detail/10635654
    https://avg.163.com/topic/detail/10635549
    https://avg.163.com/topic/detail/10635653
    https://avg.163.com/topic/detail/10635652
    https://avg.163.com/topic/detail/10635651
    https://avg.163.com/topic/detail/10635650
    https://avg.163.com/topic/detail/10635649
    https://avg.163.com/topic/detail/10635648
    https://avg.163.com/topic/detail/10635647
    https://avg.163.com/topic/detail/10635646
    https://avg.163.com/topic/detail/10635645
    https://avg.163.com/topic/detail/10635644
    https://avg.163.com/topic/detail/10635643
    https://avg.163.com/topic/detail/10635569
    https://avg.163.com/topic/detail/10635641
    https://avg.163.com/topic/detail/10635642
    https://avg.163.com/topic/detail/10635640
    https://avg.163.com/topic/detail/10635567
    https://avg.163.com/topic/detail/10635639
    https://avg.163.com/topic/detail/10635522
    https://avg.163.com/topic/detail/10635637
    https://avg.163.com/topic/detail/10635638
    https://avg.163.com/topic/detail/10635635
    https://avg.163.com/topic/detail/10635634
    https://avg.163.com/topic/detail/10635633
    https://avg.163.com/topic/detail/10635632
    https://avg.163.com/topic/detail/10635435
    https://avg.163.com/topic/detail/10635631
    https://avg.163.com/topic/detail/10635630
    https://avg.163.com/topic/detail/10635629
    https://avg.163.com/topic/detail/10635628
    https://avg.163.com/topic/detail/10635627
    https://avg.163.com/topic/detail/10635624
    https://avg.163.com/topic/detail/10635625
    https://avg.163.com/topic/detail/10635623
    https://avg.163.com/topic/detail/10635622
    https://avg.163.com/topic/detail/10635620
    https://avg.163.com/topic/detail/10635617
    https://avg.163.com/topic/detail/10635615
    https://avg.163.com/topic/detail/10635616
    https://avg.163.com/topic/detail/10635613
    https://avg.163.com/topic/detail/10635614
    https://avg.163.com/topic/detail/10635612
    https://avg.163.com/topic/detail/10635531
    https://avg.163.com/topic/detail/10635609
    https://avg.163.com/topic/detail/10635606
    https://avg.163.com/topic/detail/10635604
    https://avg.163.com/topic/detail/10635494
    https://avg.163.com/topic/detail/10635527
    https://avg.163.com/topic/detail/10635601
    https://avg.163.com/topic/detail/10635524
    https://avg.163.com/topic/detail/10635596
    https://avg.163.com/topic/detail/10635592
    https://avg.163.com/topic/detail/10635591
    https://avg.163.com/topic/detail/10635587
    https://avg.163.com/topic/detail/10635476
    https://avg.163.com/topic/detail/10635584
    https://avg.163.com/topic/detail/10635582
    https://avg.163.com/topic/detail/10635580
    https://avg.163.com/topic/detail/10635578
    https://avg.163.com/topic/detail/10635575
    https://avg.163.com/topic/detail/10635572
    https://avg.163.com/topic/detail/10635571
    https://avg.163.com/topic/detail/10635569
    https://avg.163.com/topic/detail/10635568
    https://avg.163.com/topic/detail/10635562
    https://avg.163.com/topic/detail/10635567
    https://avg.163.com/topic/detail/10635422
    https://avg.163.com/topic/detail/10635563
    https://avg.163.com/topic/detail/10635557
    https://avg.163.com/topic/detail/10635441
    https://avg.163.com/topic/detail/10635554
    https://avg.163.com/topic/detail/10635553
    https://avg.163.com/topic/detail/10635549
    https://avg.163.com/topic/detail/10635547
    https://avg.163.com/topic/detail/10635435
    https://avg.163.com/topic/detail/10635543
    https://avg.163.com/topic/detail/10635541
    https://avg.163.com/topic/detail/10635542
    https://avg.163.com/topic/detail/10635472
    https://avg.163.com/topic/detail/10635535
    https://avg.163.com/topic/detail/10635536
    https://avg.163.com/topic/detail/10635534
    https://avg.163.com/topic/detail/10635430
    https://avg.163.com/topic/detail/10635531
    https://avg.163.com/topic/detail/10635426
    https://avg.163.com/topic/detail/10635528
    https://avg.163.com/topic/detail/10635527
    https://avg.163.com/topic/detail/10635525
    https://avg.163.com/topic/detail/10635524
    https://avg.163.com/topic/detail/10635522
    https://avg.163.com/topic/detail/10635519
    https://avg.163.com/topic/detail/10635518
    https://avg.163.com/topic/detail/10635405
    https://avg.163.com/topic/detail/10635514
    https://avg.163.com/topic/detail/10635513
    https://avg.163.com/topic/detail/10635511
    https://avg.163.com/topic/detail/10635509
    https://avg.163.com/topic/detail/10635415
    https://avg.163.com/topic/detail/10635397
    https://avg.163.com/topic/detail/10635508
    https://avg.163.com/topic/detail/10635440
    https://avg.163.com/topic/detail/10635506
    https://avg.163.com/topic/detail/10635503
    https://avg.163.com/topic/detail/10635309
    https://avg.163.com/topic/detail/10635436
    https://avg.163.com/topic/detail/10635500
    https://avg.163.com/topic/detail/10635386
    https://avg.163.com/topic/detail/10635494
    https://avg.163.com/topic/detail/10635409
    https://avg.163.com/topic/detail/10635437
    https://avg.163.com/topic/detail/10635493
    https://avg.163.com/topic/detail/10635382
    https://avg.163.com/topic/detail/10635489
    https://avg.163.com/topic/detail/10635488
    https://avg.163.com/topic/detail/10635481
    https://avg.163.com/topic/detail/10635479
    https://avg.163.com/topic/detail/10635335
    https://avg.163.com/topic/detail/10635430
    https://avg.163.com/topic/detail/10635476
    https://avg.163.com/topic/detail/10635474
    https://avg.163.com/topic/detail/10635472
    https://avg.163.com/topic/detail/10635467
    https://avg.163.com/topic/detail/10635464
    https://avg.163.com/topic/detail/10635463
    https://avg.163.com/topic/detail/10635456
    https://avg.163.com/topic/detail/10635453
    https://avg.163.com/topic/detail/10635452
    https://avg.163.com/topic/detail/10635449
    https://avg.163.com/topic/detail/10635326
    https://avg.163.com/topic/detail/10635439
    https://avg.163.com/topic/detail/10635441
    https://avg.163.com/topic/detail/10635440
    https://avg.163.com/topic/detail/10635436
    https://avg.163.com/topic/detail/10635435
    https://avg.163.com/topic/detail/10635437
    https://avg.163.com/topic/detail/10635434
    https://avg.163.com/topic/detail/10635430
    https://avg.163.com/topic/detail/10635426
    https://avg.163.com/topic/detail/10635429
    https://avg.163.com/topic/detail/10635424
    https://avg.163.com/topic/detail/10635422
    https://avg.163.com/topic/detail/10635416
    https://avg.163.com/topic/detail/10635362
    https://avg.163.com/topic/detail/10635314
    https://avg.163.com/topic/detail/10635418
    https://avg.163.com/topic/detail/10635415
    https://avg.163.com/topic/detail/10635381
    https://avg.163.com/topic/detail/10635413
    https://avg.163.com/topic/detail/10635252
    https://avg.163.com/topic/detail/10635409
    https://avg.163.com/topic/detail/10635408
    https://avg.163.com/topic/detail/10635405
    https://avg.163.com/topic/detail/10635407
    https://avg.163.com/topic/detail/10635404
    https://avg.163.com/topic/detail/10635288
    https://avg.163.com/topic/detail/10635399
    https://avg.163.com/topic/detail/10635397
    https://avg.163.com/topic/detail/10635398
    https://avg.163.com/topic/detail/10635396
    https://avg.163.com/topic/detail/10635393
    https://avg.163.com/topic/detail/10635388
    https://avg.163.com/topic/detail/10635386
    https://avg.163.com/topic/detail/10635387
    https://avg.163.com/topic/detail/10635384
    https://avg.163.com/topic/detail/10635383
    https://avg.163.com/topic/detail/10635290
    https://avg.163.com/topic/detail/10635382
    https://avg.163.com/topic/detail/10635381
    https://avg.163.com/topic/detail/10635380
    https://avg.163.com/topic/detail/10635377
    https://avg.163.com/topic/detail/10635372
    https://avg.163.com/topic/detail/10635371
    https://avg.163.com/topic/detail/10635369
    https://avg.163.com/topic/detail/10635211
    https://avg.163.com/topic/detail/10635365
    https://avg.163.com/topic/detail/10635362
    https://avg.163.com/topic/detail/10635363
    https://avg.163.com/topic/detail/10635357
    https://avg.163.com/topic/detail/10635355
    https://avg.163.com/topic/detail/10635354
    https://avg.163.com/topic/detail/10635350
    https://avg.163.com/topic/detail/10635246
    https://avg.163.com/topic/detail/10635270
    https://avg.163.com/topic/detail/10635343
    https://avg.163.com/topic/detail/10635331
    https://avg.163.com/topic/detail/10635259
    https://avg.163.com/topic/detail/10635339
    https://avg.163.com/topic/detail/10635276
    https://avg.163.com/topic/detail/10635329
    https://avg.163.com/topic/detail/10635335
    https://avg.163.com/topic/detail/10635328
    https://avg.163.com/topic/detail/10635327
    https://avg.163.com/topic/detail/10635326
    https://avg.163.com/topic/detail/10635321
    https://avg.163.com/topic/detail/10635322
    https://avg.163.com/topic/detail/10635317
    https://avg.163.com/topic/detail/10635316
    https://avg.163.com/topic/detail/10635314
    https://avg.163.com/topic/detail/10635313
    https://avg.163.com/topic/detail/10635310
    https://avg.163.com/topic/detail/10635309
    https://avg.163.com/topic/detail/10635306
    https://avg.163.com/topic/detail/10635271
    https://avg.163.com/topic/detail/10635303
    https://avg.163.com/topic/detail/10635302
    https://avg.163.com/topic/detail/10635301
    https://avg.163.com/topic/detail/10635252
    https://avg.163.com/topic/detail/10635296
    https://avg.163.com/topic/detail/10635291
    https://avg.163.com/topic/detail/10634994
    https://avg.163.com/topic/detail/10635294
  • -d : 打印出 e2fsck 的 debug 结果
  • -p : 同时有 -A 条件时,同时有多个 fsck 的检查一起执行
  • -R : 同时有 -A 条件时,省略 / 不检查
  • -V : 详细显示模式
  • -a : 如果检查有错则自动修复
  • -r : 如果检查有错则由使用者回答是否修复
  • -y : 选项指定检测每个文件是自动输入yes,在不确定那些是不正常的时候,可以执行 # fsck -y 全部检查修复。

实例 1

查看系统有多少文件系统支持的 fsck 命令:

[root@www ~]# fsck[tab][tab]
fsck fsck.cramfs fsck.ext2 fsck.ext3 fsck.msdos fsck.vfat

实例 2

强制检测 /dev/hdc6 分区:

[root@www ~]# fsck -C -f -t ext3 /dev/hdc6
fsck 1.39 (29-May-2006)
e2fsck 1.39 (29-May-2006)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
vbird_logical: 11/251968 files (9.1% non-contiguous), 36926/1004046 blocks

赞(0)
未经允许不得转载:171主机测评 » Linux 磁盘76管理
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址